diff --git a/.eslintrc.json b/.eslintrc.json index 774bd00c..1f594bdd 100755 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -8,7 +8,16 @@ "files": ["{package,project}.json"], "parser": "jsonc-eslint-parser", "rules": { - "@nx/dependency-checks": "error" + "@nx/dependency-checks": [ + "error", + { + "buildTargets": ["build"], + "checkMissingDependencies": true, + "checkObsoleteDependencies": true, + "checkVersionMismatches": true, + "ignoredDependencies": ["tslib"] + } + ] } }, { diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e80bb823..1a6ad197 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,12 +5,12 @@ version: 2 updates: - - package-ecosystem: "npm" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: 'npm' # See documentation for possible values + directory: '/' # Location of package manifests schedule: - interval: "weekly" - - - package-ecosystem: "npm" - directory: "apps/strapi" + interval: 'weekly' + + - package-ecosystem: 'npm' + directory: 'apps/strapi' schedule: - interval: "weekly" + interval: 'weekly' diff --git a/.github/workflows/todo.yml b/.github/workflows/todo.yml index 0b70e986..fa63f814 100755 --- a/.github/workflows/todo.yml +++ b/.github/workflows/todo.yml @@ -1,15 +1,13 @@ -name: "Workflow" -on: ["push"] +name: 'Workflow' +on: ['push'] jobs: build: - runs-on: "ubuntu-latest" + runs-on: 'ubuntu-latest' steps: - - uses: "actions/checkout@v3" + - uses: 'actions/checkout@v3' with: fetch-depth: 0 - - - - name: "TODO to Issue" - uses: "alstr/todo-to-issue-action@v4.5" - id: "todo" + - name: 'TODO to Issue' + uses: 'alstr/todo-to-issue-action@v4.5' + id: 'todo' diff --git a/.prettierignore b/.prettierignore index 6849027a..71a93330 100755 --- a/.prettierignore +++ b/.prettierignore @@ -6,3 +6,7 @@ /docs /.bundle /.git +.next +dist + +README.md diff --git a/apps/convert-e2e/src/support/index.ts b/apps/convert-e2e/src/support/index.ts index 2c05bb3c..1145e61f 100644 --- a/apps/convert-e2e/src/support/index.ts +++ b/apps/convert-e2e/src/support/index.ts @@ -14,4 +14,4 @@ // *********************************************************** // Import commands.ts using ES2015 syntax: -import './commands' +import './commands.js' diff --git a/apps/convert/.vscode/settings.json b/apps/convert/.vscode/settings.json index b0ef59cf..99438ebd 100644 --- a/apps/convert/.vscode/settings.json +++ b/apps/convert/.vscode/settings.json @@ -1,4 +1,4 @@ { "typescript.tsdk": "../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript/lib", "typescript.enablePromptUseWorkspaceTsdk": true -} \ No newline at end of file +} diff --git a/apps/convert/project.json b/apps/convert/project.json index ad1c7320..1e20f193 100644 --- a/apps/convert/project.json +++ b/apps/convert/project.json @@ -6,9 +6,7 @@ "targets": { "build": { "executor": "@nx/next:build", - "outputs": [ - "{options.outputPath}" - ], + "outputs": ["{options.outputPath}"], "defaultConfiguration": "production", "options": { "outputPath": "dist/apps/convert" @@ -47,9 +45,7 @@ }, "test": { "executor": "@nx/jest:jest", - "outputs": [ - "{workspaceRoot}/coverage/{projectRoot}" - ], + "outputs": ["{workspaceRoot}/coverage/{projectRoot}"], "options": { "jestConfig": "apps/convert/jest.config.ts", "passWithNoTests": true @@ -63,13 +59,9 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": [ - "{options.outputFile}" - ], + "outputs": ["{options.outputFile}"], "options": { - "lintFilePatterns": [ - "apps/convert/**/*.{ts,tsx,js,jsx}" - ] + "lintFilePatterns": ["apps/convert/**/*.{ts,tsx,js,jsx}"] } } }, diff --git a/apps/convert/src/env/client.mjs b/apps/convert/src/env/client.mjs index 0f29b851..c09e070b 100644 --- a/apps/convert/src/env/client.mjs +++ b/apps/convert/src/env/client.mjs @@ -1,5 +1,5 @@ // @ts-check -import { clientSchema } from "./schema.mjs"; +import { clientSchema } from './schema.mjs' /** * You can't destruct `process.env` as a regular object, so we do @@ -7,12 +7,10 @@ import { clientSchema } from "./schema.mjs"; * and only used environment variables are included in the build. * @type {{ [key: string]: string | undefined; }} */ -let clientEnv = {}; -Object.keys(clientSchema.shape).forEach( - (key) => (clientEnv[key] = process.env[key]), -); +let clientEnv = {} +Object.keys(clientSchema.shape).forEach((key) => (clientEnv[key] = process.env[key])) -const _clientEnv = clientSchema.safeParse(clientEnv); +const _clientEnv = clientSchema.safeParse(clientEnv) export const formatErrors = ( /** @type {import('zod').ZodFormattedError,string>} */ @@ -20,27 +18,23 @@ export const formatErrors = ( ) => Object.entries(errors) .map(([name, value]) => { - if (value && "_errors" in value) - return `${name}: ${value._errors.join(", ")}\n`; + if (value && '_errors' in value) return `${name}: ${value._errors.join(', ')}\n` }) - .filter(Boolean); + .filter(Boolean) if (!_clientEnv.success) { - console.error( - "❌ Invalid environment variables:\n", - ...formatErrors(_clientEnv.error.format()), - ); - throw new Error("Invalid environment variables"); + console.error('❌ Invalid environment variables:\n', ...formatErrors(_clientEnv.error.format())) + throw new Error('Invalid environment variables') } for (let key of Object.keys(_clientEnv.data)) { - if (!key.startsWith("NEXT_PUBLIC_")) { + if (!key.startsWith('NEXT_PUBLIC_')) { console.warn( `❌ Invalid public environment variable name: ${key}. It must begin with 'NEXT_PUBLIC_'`, - ); + ) - throw new Error("Invalid public environment variable name"); + throw new Error('Invalid public environment variable name') } } -export const env = _clientEnv.data; +export const env = _clientEnv.data diff --git a/apps/convert/src/env/schema.mjs b/apps/convert/src/env/schema.mjs index 4ee52881..96fff886 100644 --- a/apps/convert/src/env/schema.mjs +++ b/apps/convert/src/env/schema.mjs @@ -1,16 +1,14 @@ // @ts-check -import { z } from "zod"; +import { z } from 'zod' /** * Specify your server-side environment variables schema here. * This way you can ensure the app isn't built with invalid env vars. */ export const serverSchema = z.object({ - NODE_ENV: z.enum(["development", "test", "production"]), + NODE_ENV: z.enum(['development', 'test', 'production']), NEXTAUTH_SECRET: - process.env.NODE_ENV === "production" - ? z.string().min(1) - : z.string().min(1).optional(), + process.env.NODE_ENV === 'production' ? z.string().min(1) : z.string().min(1).optional(), NEXTAUTH_URL: z.preprocess( // This makes Vercel deployments not fail if you don't set NEXTAUTH_URL // Since NextAuth.js automatically uses the VERCEL_URL if present. @@ -24,7 +22,7 @@ export const serverSchema = z.object({ AZURE_SECRET: z.string(), AZURE_TENANT_ID: z.string(), // ORCID_ACCESS_SECRET: z.string(), -}); +}) /** * Specify your client-side environment variables schema here. @@ -33,4 +31,4 @@ export const serverSchema = z.object({ */ export const clientSchema = z.object({ // NEXT_PUBLIC_CLIENTVAR: z.string(), -}); +}) diff --git a/apps/convert/src/env/server.mjs b/apps/convert/src/env/server.mjs index 6a8cc9da..0e36646b 100644 --- a/apps/convert/src/env/server.mjs +++ b/apps/convert/src/env/server.mjs @@ -3,8 +3,8 @@ * This file is included in `/next.config.mjs` which ensures the app isn't built with invalid env vars. * It has to be a `.mjs`-file to be imported there. */ -import { serverSchema } from "./schema.mjs"; -import { env as clientEnv, formatErrors } from "./client.mjs"; +import { serverSchema } from './schema.mjs' +import { env as clientEnv, formatErrors } from './client.mjs' /** * You can't destruct `process.env` as a regular object, so we do @@ -12,27 +12,22 @@ import { env as clientEnv, formatErrors } from "./client.mjs"; * and only used environment variables are included in the build. * @type {{ [key: string]: string | undefined; }} */ -let serverEnv = {}; -Object.keys(serverSchema.shape).forEach( - (key) => (serverEnv[key] = process.env[key]), -); +let serverEnv = {} +Object.keys(serverSchema.shape).forEach((key) => (serverEnv[key] = process.env[key])) -const _serverEnv = serverSchema.safeParse(serverEnv); +const _serverEnv = serverSchema.safeParse(serverEnv) if (!_serverEnv.success) { - console.error( - "❌ Invalid environment variables:\n", - ...formatErrors(_serverEnv.error.format()), - ); - throw new Error("Invalid environment variables"); + console.error('❌ Invalid environment variables:\n', ...formatErrors(_serverEnv.error.format())) + throw new Error('Invalid environment variables') } for (let key of Object.keys(_serverEnv.data)) { - if (key.startsWith("NEXT_PUBLIC_")) { - console.warn("❌ You are exposing a server-side env-variable:", key); + if (key.startsWith('NEXT_PUBLIC_')) { + console.warn('❌ You are exposing a server-side env-variable:', key) - throw new Error("You are exposing a server-side env-variable"); + throw new Error('You are exposing a server-side env-variable') } } -export const env = { ..._serverEnv.data, ...clientEnv }; +export const env = { ..._serverEnv.data, ...clientEnv } diff --git a/apps/convert/tsconfig.json b/apps/convert/tsconfig.json index 903970fc..f0d7b5ff 100644 --- a/apps/convert/tsconfig.json +++ b/apps/convert/tsconfig.json @@ -11,10 +11,7 @@ "resolveJsonModule": true, "isolatedModules": true, "incremental": true, - "types": [ - "jest", - "node" - ] + "types": ["jest", "node"] }, "include": [ "**/*.ts", @@ -25,10 +22,5 @@ "next.config.mjs", "../../apps/convert/.next/types/**/*.ts" ], - "exclude": [ - "node_modules", - "jest.config.ts", - "src/**/*.spec.ts", - "src/**/*.test.ts" - ] + "exclude": ["node_modules", "jest.config.ts", "src/**/*.spec.ts", "src/**/*.test.ts"] } diff --git a/apps/converter-frontend/components/ext-icon/ext-icon.tsx b/apps/converter-frontend/components/ext-icon/ext-icon.tsx index 4bdbeeb3..09d5d790 100755 --- a/apps/converter-frontend/components/ext-icon/ext-icon.tsx +++ b/apps/converter-frontend/components/ext-icon/ext-icon.tsx @@ -4,9 +4,7 @@ import { defaultStyles, FileIcon } from 'react-file-icon' /* eslint-disable-next-line */ export interface ExtIconProps {} -export const WordIcon = () => ( - -) +export const WordIcon = () => export const JATSIcon = () => ( ( - ) + ), ) export default SelectItem diff --git a/apps/converter-frontend/public/site.webmanifest b/apps/converter-frontend/public/site.webmanifest index 45dc8a20..0b08af12 100755 --- a/apps/converter-frontend/public/site.webmanifest +++ b/apps/converter-frontend/public/site.webmanifest @@ -1 +1,11 @@ -{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} \ No newline at end of file +{ + "name": "", + "short_name": "", + "icons": [ + { "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, + { "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/apps/converter-frontend/utils/cookies.ts b/apps/converter-frontend/utils/cookies.ts index 1fd4eea4..5f89ae7c 100755 --- a/apps/converter-frontend/utils/cookies.ts +++ b/apps/converter-frontend/utils/cookies.ts @@ -9,10 +9,9 @@ export const setCookie = ( res: NextApiResponse, name: string, value: unknown, - options: CookieSerializeOptions = {} + options: CookieSerializeOptions = {}, ) => { - const stringValue = - typeof value === 'object' ? `j:${JSON.stringify(value)}` : String(value) + const stringValue = typeof value === 'object' ? `j:${JSON.stringify(value)}` : String(value) if (options.maxAge) { options.expires = new Date(Date.now() + options.maxAge) diff --git a/apps/converter-frontend/utils/fetcher.ts b/apps/converter-frontend/utils/fetcher.ts index 7071df0a..f92d7158 100755 --- a/apps/converter-frontend/utils/fetcher.ts +++ b/apps/converter-frontend/utils/fetcher.ts @@ -1,4 +1,2 @@ export const fetcher = (resource: string, init: RequestInit) => - fetch(resource, { headers: { 'Access-Control-Allow-Origin': '*' } }).then( - (res) => res.json() - ) + fetch(resource, { headers: { 'Access-Control-Allow-Origin': '*' } }).then((res) => res.json()) diff --git a/apps/converter-frontend/utils/forgeCookie.ts b/apps/converter-frontend/utils/forgeCookie.ts index 0fa90a3f..b7f2b0fe 100755 --- a/apps/converter-frontend/utils/forgeCookie.ts +++ b/apps/converter-frontend/utils/forgeCookie.ts @@ -1,24 +1,18 @@ import { AxiosResponse } from 'axios' import { NextApiRequest } from 'next' -export const replaceCookieRes = ( - response: AxiosResponse, - endpoint: string | string[] -) => { +export const replaceCookieRes = (response: AxiosResponse, endpoint: string | string[]) => { const cookie = response.headers['set-cookie'] const myCookie = (Array.isArray(cookie) ? cookie[0] : cookie)?.replace( /domain=(.*)$/, `domain=${(Array.isArray(endpoint) ? endpoint[0] : endpoint)?.replace( /https:\/\/(.*?)\/.*/, - '$1' - )}` + '$1', + )}`, ) return myCookie ? [myCookie] : '' } export const getSID = (cookie: string | string[]) => { - return (Array.isArray(cookie) ? cookie[0] : cookie).replace( - /.*?OJSSID=(.*?);.*/, - '$1' - ) + return (Array.isArray(cookie) ? cookie[0] : cookie).replace(/.*?OJSSID=(.*?);.*/, '$1') } diff --git a/apps/react-pdf/pages/index.tsx b/apps/react-pdf/pages/index.tsx index e434a810..587db941 100644 --- a/apps/react-pdf/pages/index.tsx +++ b/apps/react-pdf/pages/index.tsx @@ -6,15 +6,7 @@ import { PDFViewer, // Document, } from '@react-pdf/renderer/lib/react-pdf.browser.cjs' -import { - StyleSheet, - Page, - View, - Text, - Image, - Font, - Document, -} from '@react-pdf/renderer' +import { StyleSheet, Page, View, Text, Image, Font, Document } from '@react-pdf/renderer' import { unified } from 'unified' import reoffParse from 'reoff-parse' import { docxToVFile } from 'docx-to-vfile' @@ -112,12 +104,12 @@ const isHeading = (child: Node) => { export const Index = (props: IndexProps) => { const { parsedDocx } = props - return
+ return ( +
{parsedDocx.children.map((child, index) => { - const h = isHeading(child) // return ( @@ -126,21 +118,34 @@ export const Index = (props: IndexProps) => { // style={styles[h.heading] ?? styles.text} // > // @ts-expect-error yeah it's fine - return child?.children?.map((run: any, idx: number) => { - if (!isR(run)) return null - - const attrs = getRStyle(run) - // const style = attrs['w:b'] ? styles. + return child?.children?.map((run: any, idx: number) => { + if (!isR(run)) return null - return ( - - {toString(run)} - - ) - }) - {/* {toString(child)} */} - // + const attrs = getRStyle(run) + // const style = attrs['w:b'] ? styles. + return ( + + {toString(run)} + + ) + }) + { + /* {toString(child)} */ + } + // })} {/* ~ Created with react-pdf ~ @@ -326,7 +331,7 @@ export const Index = (props: IndexProps) => {
- + ) } Font.register({ @@ -342,7 +347,7 @@ export default Index export const getStaticProps = async () => { const docxBuff = await readFile( - join(process.cwd(), 'apps', 'react-pdf', 'public', 'Critical.docx') + join(process.cwd(), 'apps', 'react-pdf', 'public', 'Critical.docx'), ) const docxArrayBuffer = new Uint8Array(docxBuff) diff --git a/apps/react-pdf/pages/styles.css b/apps/react-pdf/pages/styles.css index 7fe31fd4..e6cdf0f4 100644 --- a/apps/react-pdf/pages/styles.css +++ b/apps/react-pdf/pages/styles.css @@ -1,8 +1,8 @@ html { -webkit-text-size-adjust: 100%; - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, - Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, - Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji; + font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, + Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, + Noto Color Emoji; line-height: 1.5; tab-size: 4; scroll-behavior: smooth; @@ -36,8 +36,8 @@ a { text-decoration: inherit; } pre { - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, - Liberation Mono, Courier New, monospace; + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, + monospace; } svg { display: block; @@ -49,8 +49,8 @@ pre { background-color: rgba(55, 65, 81, 1); border-radius: 0.25rem; color: rgba(229, 231, 235, 1); - font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, - Liberation Mono, Courier New, monospace; + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, + monospace; overflow: scroll; padding: 0.5rem 0.75rem; } @@ -164,9 +164,8 @@ pre { display: flex; margin-top: 1rem; padding: 1rem; - transition-property: background-color, border-color, color, fill, stroke, - opacity, box-shadow, transform, filter, backdrop-filter, - -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, + transform, filter, backdrop-filter, -webkit-backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; width: 100%; @@ -174,9 +173,8 @@ pre { .list-item-link svg:first-child { margin-right: 1rem; height: 1.5rem; - transition-property: background-color, border-color, color, fill, stroke, - opacity, box-shadow, transform, filter, backdrop-filter, - -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, + transform, filter, backdrop-filter, -webkit-backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; width: 1.5rem; @@ -184,9 +182,8 @@ pre { .list-item-link > span { flex-grow: 1; font-weight: 400; - transition-property: background-color, border-color, color, fill, stroke, - opacity, box-shadow, transform, filter, backdrop-filter, - -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, + transform, filter, backdrop-filter, -webkit-backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; } @@ -197,9 +194,8 @@ pre { font-size: 0.75rem; font-weight: 300; line-height: 1rem; - transition-property: background-color, border-color, color, fill, stroke, - opacity, box-shadow, transform, filter, backdrop-filter, - -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, + transform, filter, backdrop-filter, -webkit-backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; } @@ -227,17 +223,15 @@ pre { .button-pill { padding: 1.5rem 2rem; transition-duration: 300ms; - transition-property: background-color, border-color, color, fill, stroke, - opacity, box-shadow, transform, filter, backdrop-filter, - -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, + transform, filter, backdrop-filter, -webkit-backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); align-items: center; display: flex; } .button-pill svg { - transition-property: background-color, border-color, color, fill, stroke, - opacity, box-shadow, transform, filter, backdrop-filter, - -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, + transform, filter, backdrop-filter, -webkit-backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; flex-shrink: 0; @@ -358,9 +352,8 @@ summary { font-weight: 400; padding: 0.5rem; cursor: pointer; - transition-property: background-color, border-color, color, fill, stroke, - opacity, box-shadow, transform, filter, backdrop-filter, - -webkit-backdrop-filter; + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, + transform, filter, backdrop-filter, -webkit-backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; } diff --git a/apps/react-pdf/project.json b/apps/react-pdf/project.json index 07829a6b..986e1224 100644 --- a/apps/react-pdf/project.json +++ b/apps/react-pdf/project.json @@ -6,9 +6,7 @@ "targets": { "build": { "executor": "@nx/next:build", - "outputs": [ - "{options.outputPath}" - ], + "outputs": ["{options.outputPath}"], "defaultConfiguration": "production", "options": { "outputPath": "dist/apps/react-pdf" @@ -44,9 +42,7 @@ }, "test": { "executor": "@nx/jest:jest", - "outputs": [ - "{workspaceRoot}/coverage/apps/react-pdf" - ], + "outputs": ["{workspaceRoot}/coverage/apps/react-pdf"], "options": { "jestConfig": "apps/react-pdf/jest.config.js", "passWithNoTests": true @@ -54,13 +50,9 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": [ - "{options.outputFile}" - ], + "outputs": ["{options.outputFile}"], "options": { - "lintFilePatterns": [ - "apps/react-pdf/**/*.{ts,tsx,js,jsx}" - ] + "lintFilePatterns": ["apps/react-pdf/**/*.{ts,tsx,js,jsx}"] } } }, diff --git a/apps/react-pdf/tsconfig.json b/apps/react-pdf/tsconfig.json index 69982aa5..bb1e955e 100644 --- a/apps/react-pdf/tsconfig.json +++ b/apps/react-pdf/tsconfig.json @@ -13,13 +13,6 @@ "incremental": true, "types": ["jest", "node"] }, - "include": [ - "**/*.ts", - "**/*.tsx", - "**/*.js", - "**/*.jsx", - "next-env.d.ts", - "next.config.mjs" - ], + "include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx", "next-env.d.ts", "next.config.mjs"], "exclude": ["node_modules", "jest.config.ts"] } diff --git a/libs/ast-stringify/package.json b/libs/ast-stringify/package.json index 2a0d3490..669f7bac 100755 --- a/libs/ast-stringify/package.json +++ b/libs/ast-stringify/package.json @@ -14,6 +14,7 @@ "ast" ], "dependencies": { - "unified": "^10.1.1" + "jast-types": "*", + "unified": "^10.1.2" } } diff --git a/libs/ast-stringify/project.json b/libs/ast-stringify/project.json index 8437f37c..1b258a47 100755 --- a/libs/ast-stringify/project.json +++ b/libs/ast-stringify/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ast-stringify/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ast-stringify/src/lib/ast-stringify.ts b/libs/ast-stringify/src/lib/ast-stringify.ts index 605e77da..b71d062b 100755 --- a/libs/ast-stringify/src/lib/ast-stringify.ts +++ b/libs/ast-stringify/src/lib/ast-stringify.ts @@ -1,6 +1,7 @@ import { CompilerFunction } from 'unified' -import { Root } from 'jast-types' +import type { Root } from 'jast-types' +const homo = 'gy' export default function astStringify() { const compiler: CompilerFunction = (tree) => { // Assume options. diff --git a/libs/book-converter/package.json b/libs/book-converter/package.json index dab2a32a..2f11c455 100644 --- a/libs/book-converter/package.json +++ b/libs/book-converter/package.json @@ -48,7 +48,6 @@ "docx-to-vfile": "*", "@unified-latex/unified-latex-builder": "^1.3.1", "ooxast-util-to-unified-latex": "*", - "reoff-clean": "*", "reoff-markup-to-style": "*", "reoff-parse-references": "*", "reoff-cite": "*", @@ -57,6 +56,6 @@ "ooxast-util-get-style": "*", "@unified-latex/unified-latex-types": "^1.3.1", "zod-to-json-schema": "^3.21.4", - "tslib": "^2.5.0" + "reoff-clean": "*" } } diff --git a/libs/book-converter/project.json b/libs/book-converter/project.json index e92a5635..b345e59a 100644 --- a/libs/book-converter/project.json +++ b/libs/book-converter/project.json @@ -17,7 +17,6 @@ "packageJson": "libs/book-converter/package.json", "main": "libs/book-converter/src/index.ts", "assets": ["libs/book-converter/*.md"], - "updateBuildableProjectDepsInPackageJson": true, "clean": true, "buildableProjectDepsInPackageJsonType": "dependencies" }, @@ -50,7 +49,9 @@ "executor": "@nx/linter:eslint", "outputs": ["{options.outputFile}"], "options": { - "lintFilePatterns": ["libs/book-converter/**/*.ts"] + "fix": true, + "hasTypeAwareRules": true, + "lintFilePatterns": ["libs/book-converter/**/*.ts", "libs/book-converter/package.json"] } }, "deploy": { diff --git a/libs/book-converter/src/public/schema.json b/libs/book-converter/src/public/schema.json index 1b908a9a..81783768 100644 --- a/libs/book-converter/src/public/schema.json +++ b/libs/book-converter/src/public/schema.json @@ -31,13 +31,7 @@ }, "citationType": { "type": "string", - "enum": [ - "mendeley", - "word", - "citavi", - "zotero", - "endnote" - ], + "enum": ["mendeley", "word", "citavi", "zotero", "endnote"], "default": "zotero", "description": "The type of citation you want to parse." }, @@ -121,10 +115,7 @@ "default": true } }, - "required": [ - "markup", - "style" - ], + "required": ["markup", "style"], "additionalProperties": false }, "description": "Markup style options", @@ -145,10 +136,7 @@ "description": "Output LaTeX code. Use $1 for the text of the paragraph. E.g. '\\textbf{$1}'" } }, - "required": [ - "style", - "output" - ], + "required": ["style", "output"], "additionalProperties": false }, "description": "Paragraph style handlers" @@ -184,10 +172,7 @@ "description": "Path to the index CSV file to use" } }, - "required": [ - "documentClass", - "options" - ], + "required": ["documentClass", "options"], "additionalProperties": false }, { @@ -199,21 +184,12 @@ }, "article": { "type": "string", - "enum": [ - "empirical", - "reflection", - "meta", - "rga", - "editorial" - ], + "enum": ["empirical", "reflection", "meta", "rga", "editorial"], "default": "empirical" }, "citeStyle": { "type": "string", - "enum": [ - "authordate", - "numeric" - ], + "enum": ["authordate", "numeric"], "default": "authordate" }, "issued": { @@ -221,19 +197,14 @@ "const": "issued" } }, - "required": [ - "documentClass" - ], + "required": ["documentClass"], "additionalProperties": false } ], "description": "Options dealiing with latex" } }, - "required": [ - "docx", - "latexOptions" - ], + "required": ["docx", "latexOptions"], "additionalProperties": false, "$schema": "http://json-schema.org/draft-07/schema#" -} \ No newline at end of file +} diff --git a/libs/book-converter/tsconfig.spec.json b/libs/book-converter/tsconfig.spec.json index 0457f5aa..951e5cba 100644 --- a/libs/book-converter/tsconfig.spec.json +++ b/libs/book-converter/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/citations/apa-parser/.eslintrc.json b/libs/citations/apa-parser/.eslintrc.json index 19a99c9d..3456be9b 100644 --- a/libs/citations/apa-parser/.eslintrc.json +++ b/libs/citations/apa-parser/.eslintrc.json @@ -1,32 +1,17 @@ { - "extends": [ - "../../../.eslintrc.json" - ], - "ignorePatterns": [ - "!**/*" - ], + "extends": ["../../../.eslintrc.json"], + "ignorePatterns": ["!**/*"], "overrides": [ { - "files": [ - "*.ts", - "*.tsx", - "*.js", - "*.jsx" - ], + "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": {} }, { - "files": [ - "*.ts", - "*.tsx" - ], + "files": ["*.ts", "*.tsx"], "rules": {} }, { - "files": [ - "*.js", - "*.jsx" - ], + "files": ["*.js", "*.jsx"], "rules": {} } ] diff --git a/libs/citations/apa-parser/package.json b/libs/citations/apa-parser/package.json index 04ab07b2..f75531a2 100644 --- a/libs/citations/apa-parser/package.json +++ b/libs/citations/apa-parser/package.json @@ -32,5 +32,11 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "vfile-reporter": "^7.0.5", + "unified": "^10.1.2", + "retext-english": "^4.1.0", + "unist-util-visit": "^4.1.2" + } } diff --git a/libs/citations/apa-parser/project.json b/libs/citations/apa-parser/project.json index 9b2cf22f..1cae39be 100644 --- a/libs/citations/apa-parser/project.json +++ b/libs/citations/apa-parser/project.json @@ -35,10 +35,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/citations/apa-parser/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-11-(Koehler, 2016).json b/libs/citations/apa-parser/src/spec/debug/APA-8-11-(Koehler, 2016).json index d777c176..89d9f55c 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-11-(Koehler, 2016).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-11-(Koehler, 2016).json @@ -46,4 +46,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-11-(Koehler-Muller, 2016).json b/libs/citations/apa-parser/src/spec/debug/APA-8-11-(Koehler-Muller, 2016).json index cd68c56b..91f0a7d3 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-11-(Koehler-Muller, 2016).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-11-(Koehler-Muller, 2016).json @@ -54,4 +54,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-11-(O'Neil-van Ravenzwaai, 2016).json b/libs/citations/apa-parser/src/spec/debug/APA-8-11-(O'Neil-van Ravenzwaai, 2016).json index ded2b49f..4444cdc8 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-11-(O'Neil-van Ravenzwaai, 2016).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-11-(O'Neil-van Ravenzwaai, 2016).json @@ -75,4 +75,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-11-(see Koehler, 2016).json b/libs/citations/apa-parser/src/spec/debug/APA-8-11-(see Koehler, 2016).json index fc3e58d2..05a5092a 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-11-(see Koehler, 2016).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-11-(see Koehler, 2016).json @@ -59,4 +59,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-11-(van Ravenzwaai, 2016).json b/libs/citations/apa-parser/src/spec/debug/APA-8-11-(van Ravenzwaai, 2016).json index 0fb848e4..62dc6fb4 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-11-(van Ravenzwaai, 2016).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-11-(van Ravenzwaai, 2016).json @@ -59,4 +59,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Adams et al., 2019; Shumway & Shulman, 2015; Westinghouse, 2017).json b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Adams et al., 2019; Shumway & Shulman, 2015; Westinghouse, 2017).json index e4cd5cd8..971547c7 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Adams et al., 2019; Shumway & Shulman, 2015; Westinghouse, 2017).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Adams et al., 2019; Shumway & Shulman, 2015; Westinghouse, 2017).json @@ -165,4 +165,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway et al., 2013, 2014, 2019).json b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway et al., 2013, 2014, 2019).json index e4045dac..fcd9d279 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway et al., 2013, 2014, 2019).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway et al., 2013, 2014, 2019).json @@ -110,4 +110,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013, 2014, 2019).json b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013, 2014, 2019).json index 2d826969..9f3a0108 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013, 2014, 2019).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013, 2014, 2019).json @@ -80,4 +80,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013, 2014; Other, 2014).json b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013, 2014; Other, 2014).json index 445dab2c..d258831d 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013, 2014; Other, 2014).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013, 2014; Other, 2014).json @@ -97,4 +97,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013; Other, 2014).json b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013; Other, 2014).json index 6b4c1f18..32000ab1 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013; Other, 2014).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, 2013; Other, 2014).json @@ -80,4 +80,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, Guy, & Man, 2013, 2014, 2019).json b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, Guy, & Man, 2013, 2014, 2019).json index f42c6c06..79f17850 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, Guy, & Man, 2013, 2014, 2019).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Carraway, Guy, & Man, 2013, 2014, 2019).json @@ -122,4 +122,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Gillich et al., 2019; van Moorselaar & Slagter, 2019).json b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Gillich et al., 2019; van Moorselaar & Slagter, 2019).json index 603802f8..3dae1b9a 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Gillich et al., 2019; van Moorselaar & Slagter, 2019).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Gillich et al., 2019; van Moorselaar & Slagter, 2019).json @@ -144,4 +144,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Sampson & Hughes, 2020; see also Augustine, 2017; Melara et al., 2018; P%C3%A9rez, 2014).json b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Sampson & Hughes, 2020; see also Augustine, 2017; Melara et al., 2018; P%C3%A9rez, 2014).json index 047a8180..d46c2403 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Sampson & Hughes, 2020; see also Augustine, 2017; Melara et al., 2018; P%C3%A9rez, 2014).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-12-(Sampson & Hughes, 2020; see also Augustine, 2017; Melara et al., 2018; P%C3%A9rez, 2014).json @@ -225,4 +225,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-12-all i wanna do is really fucking go (Gillich et al., 2019; van Moorselaar & Slagter, 2019).json b/libs/citations/apa-parser/src/spec/debug/APA-8-12-all i wanna do is really fucking go (Gillich et al., 2019; van Moorselaar & Slagter, 2019).json index 99a24089..a24eb075 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-12-all i wanna do is really fucking go (Gillich et al., 2019; van Moorselaar & Slagter, 2019).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-12-all i wanna do is really fucking go (Gillich et al., 2019; van Moorselaar & Slagter, 2019).json @@ -248,4 +248,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-12-in Vall%C3%A9e-Tourangeau and March (2020).json b/libs/citations/apa-parser/src/spec/debug/APA-8-12-in Vall%C3%A9e-Tourangeau and March (2020).json index 45deb336..5645391a 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-12-in Vall%C3%A9e-Tourangeau and March (2020).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-12-in Vall%C3%A9e-Tourangeau and March (2020).json @@ -89,4 +89,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Aristotle, 350 B.C.E.).json b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Aristotle, 350 B.C.E.).json index 0574374d..2eaa94cf 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Aristotle, 350 B.C.E.).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Aristotle, 350 B.C.E.).json @@ -79,4 +79,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Armstrong, 2015, pp. 3%E2%80%9317).json b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Armstrong, 2015, pp. 3%E2%80%9317).json index ef89e65f..4bb42b5e 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Armstrong, 2015, pp. 3%E2%80%9317).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Armstrong, 2015, pp. 3%E2%80%9317).json @@ -98,4 +98,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Beck Institute for Cognitive Behaviour Therapy, 2012, 1:30:40).json b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Beck Institute for Cognitive Behaviour Therapy, 2012, 1:30:40).json index 213608f8..12f3968b 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Beck Institute for Cognitive Behaviour Therapy, 2012, 1:30:40).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Beck Institute for Cognitive Behaviour Therapy, 2012, 1:30:40).json @@ -144,4 +144,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Centers for Disease Control and Prevention, 2019, p. 10).json b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Centers for Disease Control and Prevention, 2019, p. 10).json index a5a401c3..70c1764f 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Centers for Disease Control and Prevention, 2019, p. 10).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Centers for Disease Control and Prevention, 2019, p. 10).json @@ -145,4 +145,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Kova%C4%8Di%C4%8D & Horvat, 2019, Table 1).json b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Kova%C4%8Di%C4%8D & Horvat, 2019, Table 1).json index 9e08ad3b..5e4d312c 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Kova%C4%8Di%C4%8D & Horvat, 2019, Table 1).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Kova%C4%8Di%C4%8D & Horvat, 2019, Table 1).json @@ -97,4 +97,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Shadid, 2020, paras. 2%E2%80%933).json b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Shadid, 2020, paras. 2%E2%80%933).json index 81a6dc0e..a6212250 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Shadid, 2020, paras. 2%E2%80%933).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Shadid, 2020, paras. 2%E2%80%933).json @@ -98,4 +98,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Shimamura, 2017, Chapter 3).json b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Shimamura, 2017, Chapter 3).json index e0c67973..5e345755 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Shimamura, 2017, Chapter 3).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Shimamura, 2017, Chapter 3).json @@ -76,4 +76,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Thompson, 2020, Slide 7).json b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Thompson, 2020, Slide 7).json index 183a3f3b..c6a75811 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Thompson, 2020, Slide 7).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-13-(Thompson, 2020, Slide 7).json @@ -76,4 +76,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-17-(American Educational Research Association et al., 2014).json b/libs/citations/apa-parser/src/spec/debug/APA-8-17-(American Educational Research Association et al., 2014).json index 956e1f9e..b52a3ede 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-17-(American Educational Research Association et al., 2014).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-17-(American Educational Research Association et al., 2014).json @@ -115,4 +115,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-17-(J%C3%B6reskog & S%C3%B6rbon, 2007).json b/libs/citations/apa-parser/src/spec/debug/APA-8-17-(J%C3%B6reskog & S%C3%B6rbon, 2007).json index dac4ba3a..211dc03f 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-17-(J%C3%B6reskog & S%C3%B6rbon, 2007).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-17-(J%C3%B6reskog & S%C3%B6rbon, 2007).json @@ -67,4 +67,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-17-Eifert and Yildiz (2018).json b/libs/citations/apa-parser/src/spec/debug/APA-8-17-Eifert and Yildiz (2018).json index 8d948903..0eb82beb 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-17-Eifert and Yildiz (2018).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-17-Eifert and Yildiz (2018).json @@ -68,4 +68,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-18-(Albert et al., 1990, 1991).json b/libs/citations/apa-parser/src/spec/debug/APA-8-18-(Albert et al., 1990, 1991).json index 873e2447..10155edb 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-18-(Albert et al., 1990, 1991).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-18-(Albert et al., 1990, 1991).json @@ -93,4 +93,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Albert et al. (1990).json b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Albert et al. (1990).json index 03ee81eb..c05951b5 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Albert et al. (1990).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Albert et al. (1990).json @@ -72,4 +72,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Albert et al. (1990, 1991).json b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Albert et al. (1990, 1991).json index 1bac9343..47d20b5d 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Albert et al. (1990, 1991).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Albert et al. (1990, 1991).json @@ -89,4 +89,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Hasan, Liang, Kahn, and Jones-Miller (2015).json b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Hasan, Liang, Kahn, and Jones-Miller (2015).json index 74fd760e..3a9491fd 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Hasan, Liang, Kahn, and Jones-Miller (2015).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Hasan, Liang, Kahn, and Jones-Miller (2015).json @@ -114,4 +114,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Hasan, Liang, Kahn, and Weintraub (2015).json b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Hasan, Liang, Kahn, and Weintraub (2015).json index c235868d..2f3603dd 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Hasan, Liang, Kahn, and Weintraub (2015).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Hasan, Liang, Kahn, and Weintraub (2015).json @@ -106,4 +106,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Kapoor, Bloom, Montez, et al. (2017).json b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Kapoor, Bloom, Montez, et al. (2017).json index ac633abf..0bdb7416 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Kapoor, Bloom, Montez, et al. (2017).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Kapoor, Bloom, Montez, et al. (2017).json @@ -110,4 +110,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Kapoor, Bloom, Zucker, et al. (2017).json b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Kapoor, Bloom, Zucker, et al. (2017).json index ccd1991a..e34654d3 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-18-Kapoor, Bloom, Zucker, et al. (2017).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-18-Kapoor, Bloom, Zucker, et al. (2017).json @@ -110,4 +110,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-19-(Judge & Kammeyer-Mueller, 2012b).json b/libs/citations/apa-parser/src/spec/debug/APA-8-19-(Judge & Kammeyer-Mueller, 2012b).json index 36d1f579..51ce6893 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-19-(Judge & Kammeyer-Mueller, 2012b).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-19-(Judge & Kammeyer-Mueller, 2012b).json @@ -75,4 +75,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-19-(Sifuentes, n.d.-a, n.d.-b).json b/libs/citations/apa-parser/src/spec/debug/APA-8-19-(Sifuentes, n.d.-a, n.d.-b).json index 97fa9b37..6c5313eb 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-19-(Sifuentes, n.d.-a, n.d.-b).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-19-(Sifuentes, n.d.-a, n.d.-b).json @@ -103,4 +103,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-19-Judge and Kammeyer-Mueller (2012a).json b/libs/citations/apa-parser/src/spec/debug/APA-8-19-Judge and Kammeyer-Mueller (2012a).json index 82b09f2e..015172a3 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-19-Judge and Kammeyer-Mueller (2012a).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-19-Judge and Kammeyer-Mueller (2012a).json @@ -76,4 +76,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Brown & Campbell, 2004; A. Campbell et al., 1993; W. K. Campbell et al., 2005; Deutsch & Deutsch, 1963; Smyth et al., 1992).json b/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Brown & Campbell, 2004; A. Campbell et al., 1993; W. K. Campbell et al., 2005; Deutsch & Deutsch, 1963; Smyth et al., 1992).json index c2a4f67d..04c9a681 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Brown & Campbell, 2004; A. Campbell et al., 1993; W. K. Campbell et al., 2005; Deutsch & Deutsch, 1963; Smyth et al., 1992).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Brown & Campbell, 2004; A. Campbell et al., 1993; W. K. Campbell et al., 2005; Deutsch & Deutsch, 1963; Smyth et al., 1992).json @@ -365,4 +365,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Chen & Chen, 2019).json b/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Chen & Chen, 2019).json index c6ac51a6..8ccb8dba 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Chen & Chen, 2019).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Chen & Chen, 2019).json @@ -67,4 +67,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-20-(J. M. Taylor & Neimeyer, 2015; T. Taylor, 2014).json b/libs/citations/apa-parser/src/spec/debug/APA-8-20-(J. M. Taylor & Neimeyer, 2015; T. Taylor, 2014).json index 46931feb..958756db 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-20-(J. M. Taylor & Neimeyer, 2015; T. Taylor, 2014).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-20-(J. M. Taylor & Neimeyer, 2015; T. Taylor, 2014).json @@ -152,4 +152,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Plumber, 2015; Plumber, 2014).json b/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Plumber, 2015; Plumber, 2014).json index f561584f..d175309b 100644 --- a/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Plumber, 2015; Plumber, 2014).json +++ b/libs/citations/apa-parser/src/spec/debug/APA-8-20-(Plumber, 2015; Plumber, 2014).json @@ -80,4 +80,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-(Stephan et al., 2019).json b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-(Stephan et al., 2019).json index 70b543c2..a72fa40c 100644 --- a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-(Stephan et al., 2019).json +++ b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-(Stephan et al., 2019).json @@ -76,4 +76,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-) Another long sentence start with a paren (Thomas, 2022)..json b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-) Another long sentence start with a paren (Thomas, 2022)..json index 88eb078d..4d753573 100644 --- a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-) Another long sentence start with a paren (Thomas, 2022)..json +++ b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-) Another long sentence start with a paren (Thomas, 2022)..json @@ -149,4 +149,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Another long sentence that ends in a citations is the form that makes Thomas the happiest (Thomas, 2022)..json b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Another long sentence that ends in a citations is the form that makes Thomas the happiest (Thomas, 2022)..json index 16002996..949ac447 100644 --- a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Another long sentence that ends in a citations is the form that makes Thomas the happiest (Thomas, 2022)..json +++ b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Another long sentence that ends in a citations is the form that makes Thomas the happiest (Thomas, 2022)..json @@ -258,4 +258,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Another long sentence that ends in a citations is the form that makes Thomas the happiest. Here is one more sentence. .json b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Another long sentence that ends in a citations is the form that makes Thomas the happiest. Here is one more sentence. .json index 05d1eae5..c33198cb 100644 --- a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Another long sentence that ends in a citations is the form that makes Thomas the happiest. Here is one more sentence. .json +++ b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Another long sentence that ends in a citations is the form that makes Thomas the happiest. Here is one more sentence. .json @@ -298,4 +298,4 @@ "value": " " } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-We considered outliers to be any response outside 2.5 times the median absolute deviation for each participant, SOA, and trial condition (Leys et al.,%C2%A02013)..json b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-We considered outliers to be any response outside 2.5 times the median absolute deviation for each participant, SOA, and trial condition (Leys et al.,%C2%A02013)..json index d80d75f9..758596b3 100644 --- a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-We considered outliers to be any response outside 2.5 times the median absolute deviation for each participant, SOA, and trial condition (Leys et al.,%C2%A02013)..json +++ b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-We considered outliers to be any response outside 2.5 times the median absolute deviation for each participant, SOA, and trial condition (Leys et al.,%C2%A02013)..json @@ -369,4 +369,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Wow (Bautista Perpinya, 2019)..json b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Wow (Bautista Perpinya, 2019)..json index c5607682..90ffb1a9 100644 --- a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Wow (Bautista Perpinya, 2019)..json +++ b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Wow (Bautista Perpinya, 2019)..json @@ -76,4 +76,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Wow (Stephan et al., 2019; Gerard et al., 2020)..json b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Wow (Stephan et al., 2019; Gerard et al., 2020)..json index 2c2cc069..4034dcf1 100644 --- a/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Wow (Stephan et al., 2019; Gerard et al., 2020)..json +++ b/libs/citations/apa-parser/src/spec/debug/Custom-Shit-Wow (Stephan et al., 2019; Gerard et al., 2020)..json @@ -157,4 +157,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/citations/apa-parser/tsconfig.spec.json b/libs/citations/apa-parser/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/citations/apa-parser/tsconfig.spec.json +++ b/libs/citations/apa-parser/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/citations/crossref-json/CHANGELOG.md b/libs/citations/crossref-json/CHANGELOG.md index 2313c3a1..0c48fe6e 100644 --- a/libs/citations/crossref-json/CHANGELOG.md +++ b/libs/citations/crossref-json/CHANGELOG.md @@ -4,10 +4,9 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.1.4](https://github.com/TrialAndErrorOrg/parsers/compare/crossref-json-0.1.3...crossref-json-0.1.4) (2023-09-21) - ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.1.3](https://github.com/TrialAndErrorOrg/parsers/compare/crossref-json-0.1.2...crossref-json-0.1.3) (2023-03-14) @@ -21,16 +20,14 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## 0.1.0 (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* try to fix tests ([d9fca7d](https://github.com/TrialAndErrorOrg/parsers/commit/d9fca7df90762e6724cae4f93a26f30a861e6bc2)) -* types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- try to fix tests ([d9fca7d](https://github.com/TrialAndErrorOrg/parsers/commit/d9fca7df90762e6724cae4f93a26f30a861e6bc2)) +- types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) diff --git a/libs/citations/crossref-json/README.md b/libs/citations/crossref-json/README.md index be4fb0a3..9eaf9613 100755 --- a/libs/citations/crossref-json/README.md +++ b/libs/citations/crossref-json/README.md @@ -3,7 +3,7 @@ ## API -*** +--- ### `CrossrefJSON` @@ -13,417 +13,417 @@ > `string` -Defined in: [index.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L38) +Defined in: [index.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L38) ##### `ISBN` > `string`[] -Defined in: [index.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L70) +Defined in: [index.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L70) ##### `ISSN` > `string`[] -Defined in: [index.ts:78](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L78) +Defined in: [index.ts:78](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L78) ##### `URL` > `string` -Defined in: [index.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L75) +Defined in: [index.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L75) ##### `abstract` > `string` -Defined in: [index.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L37) +Defined in: [index.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L37) ##### `accepted` > `Posted` -Defined in: [index.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L34) +Defined in: [index.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L34) ##### `alternative-id` > `string`[] -Defined in: [index.ts:74](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L74) +Defined in: [index.ts:74](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L74) ##### `approved` > `Posted` -Defined in: [index.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L41) +Defined in: [index.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L41) ##### `archive` > `string`[] -Defined in: [index.ts:76](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L76) +Defined in: [index.ts:76](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L76) ##### `article-number` > `string` -Defined in: [index.ts:85](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L85) +Defined in: [index.ts:85](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L85) ##### `assertion` > `Assertion`[] -Defined in: [index.ts:83](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L83) +Defined in: [index.ts:83](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L83) ##### `author` > `Chair`[] -Defined in: [index.ts:50](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L50) +Defined in: [index.ts:50](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L50) ##### `chair` > `Chair`[] -Defined in: [index.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L32) +Defined in: [index.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L32) ##### `clinical-trial-number` > `Clinicaltrialnumber`[] -Defined in: [index.ts:49](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L49) +Defined in: [index.ts:49](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L49) ##### `component-number` > `string` -Defined in: [index.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L67) +Defined in: [index.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L67) ##### `container-title` > `string`[] -Defined in: [index.ts:55](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L55) +Defined in: [index.ts:55](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L55) ##### `content-created` > `Posted` -Defined in: [index.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L52) +Defined in: [index.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L52) ##### `content-domain` > `Contentdomain` -Defined in: [index.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L31) +Defined in: [index.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L31) ##### `content-updated` > `Posted` -Defined in: [index.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L35) +Defined in: [index.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L35) ##### `created` > `Indexed` -Defined in: [index.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L40) +Defined in: [index.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L40) ##### `degree` > `string` -Defined in: [index.ts:62](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L62) +Defined in: [index.ts:62](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L62) ##### `deposited` > `Indexed` -Defined in: [index.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L60) +Defined in: [index.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L60) ##### `edition-number` > `string` -Defined in: [index.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L23) +Defined in: [index.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L23) ##### `editor` > `Chair`[] -Defined in: [index.ts:66](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L66) +Defined in: [index.ts:66](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L66) ##### `free-to-read` > `Freetoread` -Defined in: [index.ts:65](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L65) +Defined in: [index.ts:65](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L65) ##### `funder` > `Funder`[] -Defined in: [index.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L30) +Defined in: [index.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L30) ##### `group-title` > `string`[] -Defined in: [index.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L24) +Defined in: [index.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L24) ##### `indexed` > `Indexed` -Defined in: [index.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L18) +Defined in: [index.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L18) ##### `institution` > `Institution` -Defined in: [index.ts:17](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L17) +Defined in: [index.ts:17](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L17) ##### `is-referenced-by-count` > `number` -Defined in: [index.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L45) +Defined in: [index.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L45) ##### `isbn-type` > `Isbntype`[] -Defined in: [index.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L28) +Defined in: [index.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L28) ##### `issn-type` > `Isbntype`[] -Defined in: [index.ts:79](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L79) +Defined in: [index.ts:79](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L79) ##### `issue` > `string` -Defined in: [index.ts:27](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L27) +Defined in: [index.ts:27](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L27) ##### `issued` > `Posted` -Defined in: [index.ts:69](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L69) +Defined in: [index.ts:69](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L69) ##### `journal-issue` > `Journalissue` -Defined in: [index.ts:73](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L73) +Defined in: [index.ts:73](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L73) ##### `language` > `string` -Defined in: [index.ts:58](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L58) +Defined in: [index.ts:58](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L58) ##### `license` > `License`[] -Defined in: [index.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L29) +Defined in: [index.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L29) ##### `link` > `Link`[] -Defined in: [index.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L59) +Defined in: [index.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L59) ##### `member` > `string` -Defined in: [index.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L51) +Defined in: [index.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L51) ##### `original-title` > `string`[] -Defined in: [index.ts:57](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L57) +Defined in: [index.ts:57](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L57) ##### `page` > `string` -Defined in: [index.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L42) +Defined in: [index.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L42) ##### `part-number` > `string` -Defined in: [index.ts:72](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L72) +Defined in: [index.ts:72](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L72) ##### `posted` > `Posted` -Defined in: [index.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L19) +Defined in: [index.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L19) ##### `prefix` > `string` -Defined in: [index.ts:47](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L47) +Defined in: [index.ts:47](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L47) ##### `published` > `Posted` -Defined in: [index.ts:82](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L82) +Defined in: [index.ts:82](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L82) ##### `published-online` > `Posted` -Defined in: [index.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L53) +Defined in: [index.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L53) ##### `published-other` > `Posted` -Defined in: [index.ts:81](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L81) +Defined in: [index.ts:81](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L81) ##### `published-print` > `Posted` -Defined in: [index.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L36) +Defined in: [index.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L36) ##### `publisher` > `string` -Defined in: [index.ts:26](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L26) +Defined in: [index.ts:26](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L26) ##### `publisher-location` > `string` -Defined in: [index.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L20) +Defined in: [index.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L20) ##### `reference` > `Reference` -Defined in: [index.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L54) +Defined in: [index.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L54) ##### `reference-count` > `number` -Defined in: [index.ts:25](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L25) +Defined in: [index.ts:25](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L25) ##### `references-count` > `number` -Defined in: [index.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L71) +Defined in: [index.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L71) ##### `relation` > `Relation` -Defined in: [index.ts:77](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L77) +Defined in: [index.ts:77](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L77) ##### `review` > `Review` -Defined in: [index.ts:56](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L56) +Defined in: [index.ts:56](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L56) ##### `score` > `number` -Defined in: [index.ts:61](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L61) +Defined in: [index.ts:61](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L61) ##### `short-container-title` > `string` -Defined in: [index.ts:33](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L33) +Defined in: [index.ts:33](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L33) ##### `short-title` > `string`[] -Defined in: [index.ts:68](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L68) +Defined in: [index.ts:68](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L68) ##### `source` > `string` -Defined in: [index.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L44) +Defined in: [index.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L44) ##### `standards-body` > `Standardsbody`[] -Defined in: [index.ts:22](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L22) +Defined in: [index.ts:22](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L22) ##### `subject` > `string`[] -Defined in: [index.ts:80](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L80) +Defined in: [index.ts:80](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L80) ##### `subtitle` > `string`[] -Defined in: [index.ts:63](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L63) +Defined in: [index.ts:63](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L63) ##### `subtype` > `string` -Defined in: [index.ts:84](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L84) +Defined in: [index.ts:84](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L84) ##### `title` > `string`[] -Defined in: [index.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L46) +Defined in: [index.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L46) ##### `translator` > `Chair`[] -Defined in: [index.ts:64](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L64) +Defined in: [index.ts:64](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L64) ##### `type` > `string` -Defined in: [index.ts:39](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L39) +Defined in: [index.ts:39](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L39) ##### `update-policy` > `string` -Defined in: [index.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L43) +Defined in: [index.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L43) ##### `update-to` > `Updateto`[] -Defined in: [index.ts:21](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L21) +Defined in: [index.ts:21](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L21) ##### `volume` > `string` -Defined in: [index.ts:48](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L48) +Defined in: [index.ts:48](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L48) -*** +--- ### `CrossrefResponse` @@ -433,27 +433,27 @@ Defined in: [index.ts:48](https://github.com/TrialAndErrorOrg/parsers/blob/main > [`Message`](modules.md#message) -Defined in: [index.ts:5](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L5) +Defined in: [index.ts:5](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L5) ##### `message-type` > `string` -Defined in: [index.ts:3](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L3) +Defined in: [index.ts:3](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L3) ##### `message-version` > `string` -Defined in: [index.ts:4](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L4) +Defined in: [index.ts:4](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L4) ##### `status` > `string` -Defined in: [index.ts:2](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L2) +Defined in: [index.ts:2](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L2) -*** +--- ### `Message` @@ -463,31 +463,31 @@ Defined in: [index.ts:2](https://github.com/TrialAndErrorOrg/parsers/blob/main/ > [`CrossrefJSON`](modules.md#crossrefjson)[] -Defined in: [index.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L13) +Defined in: [index.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L13) ##### `items-per-page` > `number` -Defined in: [index.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L9) +Defined in: [index.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L9) ##### `next-cursor` > `string` -Defined in: [index.ts:12](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L12) +Defined in: [index.ts:12](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L12) ##### `query` > `Query` -Defined in: [index.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L10) +Defined in: [index.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L10) ##### `total-results` > `number` -Defined in: [index.ts:11](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L11) +Defined in: [index.ts:11](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-json/src/index.ts#L11) ## Install diff --git a/libs/citations/crossref-json/project.json b/libs/citations/crossref-json/project.json index 51a95304..e5a9c8aa 100755 --- a/libs/citations/crossref-json/project.json +++ b/libs/citations/crossref-json/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/citations/crossref-json/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "make-publishable": { "executor": "better-nx-tsc:publishable" diff --git a/libs/citations/crossref-to-csl/CHANGELOG.md b/libs/citations/crossref-to-csl/CHANGELOG.md index dfcccf80..6e37e20b 100644 --- a/libs/citations/crossref-to-csl/CHANGELOG.md +++ b/libs/citations/crossref-to-csl/CHANGELOG.md @@ -6,61 +6,62 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `crossref-json` updated to version `0.1.4` +- `crossref-json` updated to version `0.1.4` ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.1.3](https://github.com/TrialAndErrorOrg/parsers/compare/crossref-to-csl-0.1.2...crossref-to-csl-0.1.3) (2023-03-14) ### Dependency Updates -* `crossref-json` updated to version `0.1.3` +- `crossref-json` updated to version `0.1.3` + ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/crossref-to-csl-0.1.1...crossref-to-csl-0.1.2) (2023-03-09) ### Dependency Updates -* `crossref-json` updated to version `0.1.2` +- `crossref-json` updated to version `0.1.2` + ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/crossref-to-csl-0.1.0...crossref-to-csl-0.1.1) (2023-03-09) ### Dependency Updates -* `crossref-json` updated to version `0.1.1` +- `crossref-json` updated to version `0.1.1` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `crossref-json` updated to version `0.1.0` +- `crossref-json` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) ## 0.1.0 (2023-03-09) ### Dependency Updates -* `crossref-json` updated to version `0.1.0` +- `crossref-json` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) diff --git a/libs/citations/crossref-to-csl/README.md b/libs/citations/crossref-to-csl/README.md index f7218392..4d99a2bf 100755 --- a/libs/citations/crossref-to-csl/README.md +++ b/libs/citations/crossref-to-csl/README.md @@ -3,7 +3,7 @@ ## API -*** +--- ### `crossrefToCsl()` @@ -15,15 +15,15 @@ crossrefToCsl(item: CrossrefJSON): CSL; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :------------- | | `item` | `CrossrefJSON` | #### Returns `CSL` -Defined in: [lib/crossref-to-csl.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-to-csl/src/lib/crossref-to-csl.ts#L52) +Defined in: [lib/crossref-to-csl.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/crossref-to-csl/src/lib/crossref-to-csl.ts#L52) ## Install diff --git a/libs/citations/crossref-to-csl/package.json b/libs/citations/crossref-to-csl/package.json index d466f2d4..f1b77d4f 100755 --- a/libs/citations/crossref-to-csl/package.json +++ b/libs/citations/crossref-to-csl/package.json @@ -32,5 +32,10 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "crossref-json": "*", + "csl-json": "0.1.0", + "utility-types": "^3.10.0" + } } diff --git a/libs/citations/crossref-to-csl/project.json b/libs/citations/crossref-to-csl/project.json index 1a13b869..c5eddce6 100755 --- a/libs/citations/crossref-to-csl/project.json +++ b/libs/citations/crossref-to-csl/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/citations/crossref-to-csl/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/citations/csl-consolidate/CHANGELOG.md b/libs/citations/csl-consolidate/CHANGELOG.md index 2b792816..ce2cc28b 100644 --- a/libs/citations/csl-consolidate/CHANGELOG.md +++ b/libs/citations/csl-consolidate/CHANGELOG.md @@ -6,13 +6,13 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `utils-misc` updated to version `0.1.0` -* `crossref-to-csl` updated to version `0.1.4` -* `crossref-json` updated to version `0.1.4` +- `utils-misc` updated to version `0.1.0` +- `crossref-to-csl` updated to version `0.1.4` +- `crossref-json` updated to version `0.1.4` ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/csl-consolidate-0.1.1...csl-consolidate-0.1.2) (2023-05-30) @@ -20,47 +20,46 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `utils-misc` updated to version `0.1.0` -* `crossref-to-csl` updated to version `0.1.3` -* `crossref-json` updated to version `0.1.3` +- `utils-misc` updated to version `0.1.0` +- `crossref-to-csl` updated to version `0.1.3` +- `crossref-json` updated to version `0.1.3` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `utils-misc` updated to version `0.1.0` -* `crossref-to-csl` updated to version `0.1.2` -* `crossref-json` updated to version `0.1.2` +- `utils-misc` updated to version `0.1.0` +- `crossref-to-csl` updated to version `0.1.2` +- `crossref-json` updated to version `0.1.2` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) ## 0.1.0 (2023-03-09) ### Dependency Updates -* `utils-misc` updated to version `0.1.0` -* `crossref-to-csl` updated to version `0.1.0` -* `crossref-json` updated to version `0.1.0` +- `utils-misc` updated to version `0.1.0` +- `crossref-to-csl` updated to version `0.1.0` +- `crossref-json` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) diff --git a/libs/citations/csl-consolidate/README.md b/libs/citations/csl-consolidate/README.md index f16c00f8..f0d5c911 100755 --- a/libs/citations/csl-consolidate/README.md +++ b/libs/citations/csl-consolidate/README.md @@ -3,7 +3,7 @@ ## API -*** +--- ### `consolidate()` @@ -17,19 +17,19 @@ consolidate(data: Data[], options: object): Promise; #### Parameters -| Name | Type | -| :------ | :------ | -| `data` | `Data`[] | -| `options` | `object` | +| Name | Type | +| :--------------- | :------- | +| `data` | `Data`[] | +| `options` | `object` | | `options.mailto` | `string` | #### Returns `Promise`<`undefined` | `Data`[]> -Defined in: [lib/csl-consolidate.ts:12](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/csl-consolidate/src/lib/csl-consolidate.ts#L12) +Defined in: [lib/csl-consolidate.ts:12](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/csl-consolidate/src/lib/csl-consolidate.ts#L12) -*** +--- ### `dateSim()` @@ -41,8 +41,8 @@ dateSim(ref: Data, csl: Data): number; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :---- | :----- | | `ref` | `Data` | | `csl` | `Data` | @@ -50,7 +50,7 @@ dateSim(ref: Data, csl: Data): number; `number` -Defined in: [lib/csl-consolidate.ts:144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/csl-consolidate/src/lib/csl-consolidate.ts#L144) +Defined in: [lib/csl-consolidate.ts:144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/csl-consolidate/src/lib/csl-consolidate.ts#L144) ## Install diff --git a/libs/citations/csl-consolidate/project.json b/libs/citations/csl-consolidate/project.json index fe28590d..52fecd14 100755 --- a/libs/citations/csl-consolidate/project.json +++ b/libs/citations/csl-consolidate/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nrwl/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/citations/csl-consolidate/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nrwl/jest:jest", diff --git a/libs/citations/csl-to-biblatex/.eslintrc.json b/libs/citations/csl-to-biblatex/.eslintrc.json index 19a99c9d..3456be9b 100644 --- a/libs/citations/csl-to-biblatex/.eslintrc.json +++ b/libs/citations/csl-to-biblatex/.eslintrc.json @@ -1,32 +1,17 @@ { - "extends": [ - "../../../.eslintrc.json" - ], - "ignorePatterns": [ - "!**/*" - ], + "extends": ["../../../.eslintrc.json"], + "ignorePatterns": ["!**/*"], "overrides": [ { - "files": [ - "*.ts", - "*.tsx", - "*.js", - "*.jsx" - ], + "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": {} }, { - "files": [ - "*.ts", - "*.tsx" - ], + "files": ["*.ts", "*.tsx"], "rules": {} }, { - "files": [ - "*.js", - "*.jsx" - ], + "files": ["*.js", "*.jsx"], "rules": {} } ] diff --git a/libs/citations/csl-to-biblatex/CHANGELOG.md b/libs/citations/csl-to-biblatex/CHANGELOG.md index 5abb29ce..ebf7a03e 100644 --- a/libs/citations/csl-to-biblatex/CHANGELOG.md +++ b/libs/citations/csl-to-biblatex/CHANGELOG.md @@ -4,67 +4,58 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.2.1](https://github.com/TrialAndErrorOrg/parsers/compare/csl-to-biblatex-0.2.0...csl-to-biblatex-0.2.1) (2023-09-21) - ### Bug Fixes -* **csl-to-biblatex.ts:** escape special characters in title and add curly braces to words with all caps ([cc13e4a](https://github.com/TrialAndErrorOrg/parsers/commit/cc13e4a1daa3c289e848f665b81fcac25e339ff5)) -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) +- **csl-to-biblatex.ts:** escape special characters in title and add curly braces to words with all caps ([cc13e4a](https://github.com/TrialAndErrorOrg/parsers/commit/cc13e4a1daa3c289e848f665b81fcac25e339ff5)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) ## [0.2.0](https://github.com/TrialAndErrorOrg/parsers/compare/csl-to-biblatex-0.1.1...csl-to-biblatex-0.2.0) (2023-03-29) - ### Features -* **csl-to-biblatex:** add support for editors ([015b9dd](https://github.com/TrialAndErrorOrg/parsers/commit/015b9ddb852267ec7bd0f2b39cc6963d271bbf0f)) - +- **csl-to-biblatex:** add support for editors ([015b9dd](https://github.com/TrialAndErrorOrg/parsers/commit/015b9ddb852267ec7bd0f2b39cc6963d271bbf0f)) ### Bug Fixes -* **csl-to-biblatex:** also look for incorrect particle item for author last names ([62d89b8](https://github.com/TrialAndErrorOrg/parsers/commit/62d89b8c6fa97b3911fc20b2597df6ae01e5e5c9)) +- **csl-to-biblatex:** also look for incorrect particle item for author last names ([62d89b8](https://github.com/TrialAndErrorOrg/parsers/commit/62d89b8c6fa97b3911fc20b2597df6ae01e5e5c9)) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/csl-to-biblatex-0.1.0...csl-to-biblatex-0.1.1) (2023-03-09) ## 0.1.0 (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) ## 0.1.0 (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) ## 0.1.0 (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/citations/csl-to-biblatex/README.md b/libs/citations/csl-to-biblatex/README.md index 68b67900..a98b5389 100644 --- a/libs/citations/csl-to-biblatex/README.md +++ b/libs/citations/csl-to-biblatex/README.md @@ -9,20 +9,20 @@ Somewhat jank CSL-JSON to biblatex converter ## Contents -* [csl-to-biblatex](#csl-to-biblatex) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [csl-to-biblatex](#csl-to-biblatex) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -44,7 +44,7 @@ pnpm add csl-to-biblatex ## API -*** +--- ### `cslToBiblatex()` @@ -56,15 +56,15 @@ cslToBiblatex(csl: Data[]): string; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :---- | :------- | | `csl` | `Data`[] | #### Returns `string` -Defined in: [lib/csl-to-biblatex.ts:103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/csl-to-biblatex/src/lib/csl-to-biblatex.ts#L103) +Defined in: [lib/csl-to-biblatex.ts:103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/csl-to-biblatex/src/lib/csl-to-biblatex.ts#L103) ## Syntax tree @@ -83,59 +83,31 @@ Defined in: [lib/csl-to-biblatex.ts:103](https://github.com/TrialAndErrorOrg/pa [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-parse - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast - [csl-to-biblatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/csl-to-biblatex diff --git a/libs/citations/csl-to-biblatex/package.json b/libs/citations/csl-to-biblatex/package.json index 5ffff449..e065968e 100644 --- a/libs/citations/csl-to-biblatex/package.json +++ b/libs/citations/csl-to-biblatex/package.json @@ -33,5 +33,8 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "csl-json": "0.1.0" + } } diff --git a/libs/citations/csl-to-biblatex/project.json b/libs/citations/csl-to-biblatex/project.json index 885a4818..ea79da47 100644 --- a/libs/citations/csl-to-biblatex/project.json +++ b/libs/citations/csl-to-biblatex/project.json @@ -35,10 +35,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/citations/csl-to-biblatex/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/citations/csl-to-biblatex/tsconfig.spec.json b/libs/citations/csl-to-biblatex/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/citations/csl-to-biblatex/tsconfig.spec.json +++ b/libs/citations/csl-to-biblatex/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/citations/ojs-types/README.md b/libs/citations/ojs-types/README.md index ba38d183..82cf05d4 100644 --- a/libs/citations/ojs-types/README.md +++ b/libs/citations/ojs-types/README.md @@ -7,20 +7,20 @@ Some typescript types for OJS api responses ## Contents -* [ojs-types](#ojs-types) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ojs-types](#ojs-types) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -42,7 +42,7 @@ pnpm add ojs-api ## API -*** +--- ### `Announcement` @@ -58,7 +58,7 @@ Format: uri The URL to this announcement in the REST API. -Defined in: [lib/types.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L6) +Defined in: [lib/types.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L6) ##### `assocId?` @@ -68,7 +68,7 @@ Defined in: [lib/types.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/m The journal, press or preprint server ID. -Defined in: [lib/types.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L8) +Defined in: [lib/types.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L8) ##### `assocType?` @@ -78,7 +78,7 @@ Defined in: [lib/types.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/m The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). -Defined in: [lib/types.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L10) +Defined in: [lib/types.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L10) ##### `dateExpire?` @@ -88,7 +88,7 @@ Defined in: [lib/types.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/ (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. -Defined in: [lib/types.ts:12](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L12) +Defined in: [lib/types.ts:12](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L12) ##### `datePosted?` @@ -98,31 +98,31 @@ Defined in: [lib/types.ts:12](https://github.com/TrialAndErrorOrg/parsers/blob/ The date this announcement was posted. -Defined in: [lib/types.ts:14](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L14) +Defined in: [lib/types.ts:14](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L14) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:15](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L15) +Defined in: [lib/types.ts:15](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L15) ##### `descriptionShort?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:16](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L16) +Defined in: [lib/types.ts:16](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L16) ##### `id?` > `number` -Defined in: [lib/types.ts:17](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L17) +Defined in: [lib/types.ts:17](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L17) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L18) +Defined in: [lib/types.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L18) ##### `typeId?` @@ -132,9 +132,9 @@ Defined in: [lib/types.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/ (Optional) One of the announcement type ids. -Defined in: [lib/types.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L20) +Defined in: [lib/types.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L20) -*** +--- ### `AnnouncementEditable` @@ -148,7 +148,7 @@ Defined in: [lib/types.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/ The journal, press or preprint server ID. -Defined in: [lib/types.ts:781](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L781) +Defined in: [lib/types.ts:781](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L781) ##### `assocType?` @@ -158,7 +158,7 @@ Defined in: [lib/types.ts:781](https://github.com/TrialAndErrorOrg/parsers/blob The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). -Defined in: [lib/types.ts:783](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L783) +Defined in: [lib/types.ts:783](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L783) ##### `dateExpire?` @@ -168,7 +168,7 @@ Defined in: [lib/types.ts:783](https://github.com/TrialAndErrorOrg/parsers/blob (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. -Defined in: [lib/types.ts:785](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L785) +Defined in: [lib/types.ts:785](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L785) ##### `datePosted?` @@ -178,31 +178,31 @@ Defined in: [lib/types.ts:785](https://github.com/TrialAndErrorOrg/parsers/blob The date this announcement was posted. -Defined in: [lib/types.ts:787](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L787) +Defined in: [lib/types.ts:787](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L787) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L788) +Defined in: [lib/types.ts:788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L788) ##### `descriptionShort?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:789](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L789) +Defined in: [lib/types.ts:789](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L789) ##### `id?` > `number` -Defined in: [lib/types.ts:790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L790) +Defined in: [lib/types.ts:790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L790) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:791](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L791) +Defined in: [lib/types.ts:791](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L791) ##### `typeId?` @@ -212,9 +212,9 @@ Defined in: [lib/types.ts:791](https://github.com/TrialAndErrorOrg/parsers/blob (Optional) One of the announcement type ids. -Defined in: [lib/types.ts:793](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L793) +Defined in: [lib/types.ts:793](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L793) -*** +--- ### `AnnouncementSummary` @@ -230,7 +230,7 @@ Format: uri The URL to this announcement in the REST API. -Defined in: [lib/types.ts:800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L800) +Defined in: [lib/types.ts:800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L800) ##### `assocId?` @@ -240,7 +240,7 @@ Defined in: [lib/types.ts:800](https://github.com/TrialAndErrorOrg/parsers/blob The journal, press or preprint server ID. -Defined in: [lib/types.ts:802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L802) +Defined in: [lib/types.ts:802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L802) ##### `assocType?` @@ -250,7 +250,7 @@ Defined in: [lib/types.ts:802](https://github.com/TrialAndErrorOrg/parsers/blob The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). -Defined in: [lib/types.ts:804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L804) +Defined in: [lib/types.ts:804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L804) ##### `dateExpire?` @@ -260,7 +260,7 @@ Defined in: [lib/types.ts:804](https://github.com/TrialAndErrorOrg/parsers/blob (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. -Defined in: [lib/types.ts:806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L806) +Defined in: [lib/types.ts:806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L806) ##### `datePosted?` @@ -270,31 +270,31 @@ Defined in: [lib/types.ts:806](https://github.com/TrialAndErrorOrg/parsers/blob The date this announcement was posted. -Defined in: [lib/types.ts:808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L808) +Defined in: [lib/types.ts:808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L808) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:809](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L809) +Defined in: [lib/types.ts:809](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L809) ##### `descriptionShort?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L810) +Defined in: [lib/types.ts:810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L810) ##### `id?` > `number` -Defined in: [lib/types.ts:811](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L811) +Defined in: [lib/types.ts:811](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L811) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L812) +Defined in: [lib/types.ts:812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L812) ##### `typeId?` @@ -304,9 +304,9 @@ Defined in: [lib/types.ts:812](https://github.com/TrialAndErrorOrg/parsers/blob (Optional) One of the announcement type ids. -Defined in: [lib/types.ts:814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L814) +Defined in: [lib/types.ts:814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L814) -*** +--- ### `Author` @@ -316,43 +316,43 @@ Defined in: [lib/types.ts:814](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L23) +Defined in: [lib/types.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L23) ##### `biography?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L24) +Defined in: [lib/types.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L24) ##### `country?` > `string` -Defined in: [lib/types.ts:25](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L25) +Defined in: [lib/types.ts:25](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L25) ##### `email?` > `string` -Defined in: [lib/types.ts:26](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L26) +Defined in: [lib/types.ts:26](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L26) ##### `familyName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:27](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L27) +Defined in: [lib/types.ts:27](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L27) ##### `givenName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L28) +Defined in: [lib/types.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L28) ##### `id?` > `number` -Defined in: [lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L29) +Defined in: [lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L29) ##### `includeInBrowse?` @@ -366,7 +366,7 @@ Whether or not to include this contributor in author lists when the publication true -Defined in: [lib/types.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L34) +Defined in: [lib/types.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L34) ##### `orcid?` @@ -376,19 +376,19 @@ Defined in: [lib/types.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/ The ORCID of this contributor. See: https\://orcid.org/ -Defined in: [lib/types.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L36) +Defined in: [lib/types.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L36) ##### `preferredPublicName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L37) +Defined in: [lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L37) ##### `publicationId?` > `number` -Defined in: [lib/types.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L38) +Defined in: [lib/types.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L38) ##### `seq?` @@ -398,7 +398,7 @@ Defined in: [lib/types.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/ The order in which this contributor should appear in a list of contriibutors. -Defined in: [lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L40) +Defined in: [lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L40) ##### `submissionLocale?` @@ -408,7 +408,7 @@ Defined in: [lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/ The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. -Defined in: [lib/types.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L42) +Defined in: [lib/types.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L42) ##### `url?` @@ -418,7 +418,7 @@ Defined in: [lib/types.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/ An optional URL to this contributor's webpage. -Defined in: [lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L44) +Defined in: [lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L44) ##### `userGroupId?` @@ -428,9 +428,9 @@ Defined in: [lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/ in which user group should this contributor be identified. Usually one of the author roles, such as Author or Translator. -Defined in: [lib/types.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L46) +Defined in: [lib/types.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L46) -*** +--- ### `AuthorEditable` @@ -440,43 +440,43 @@ Defined in: [lib/types.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/ > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:817](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L817) +Defined in: [lib/types.ts:817](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L817) ##### `biography?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L818) +Defined in: [lib/types.ts:818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L818) ##### `country?` > `string` -Defined in: [lib/types.ts:819](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L819) +Defined in: [lib/types.ts:819](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L819) ##### `email?` > `string` -Defined in: [lib/types.ts:820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L820) +Defined in: [lib/types.ts:820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L820) ##### `familyName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:821](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L821) +Defined in: [lib/types.ts:821](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L821) ##### `givenName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L822) +Defined in: [lib/types.ts:822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L822) ##### `id?` > `number` -Defined in: [lib/types.ts:823](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L823) +Defined in: [lib/types.ts:823](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L823) ##### `includeInBrowse?` @@ -490,7 +490,7 @@ Whether or not to include this contributor in author lists when the publication true -Defined in: [lib/types.ts:828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L828) +Defined in: [lib/types.ts:828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L828) ##### `orcid?` @@ -500,19 +500,19 @@ Defined in: [lib/types.ts:828](https://github.com/TrialAndErrorOrg/parsers/blob The ORCID of this contributor. See: https\://orcid.org/ -Defined in: [lib/types.ts:830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L830) +Defined in: [lib/types.ts:830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L830) ##### `preferredPublicName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:831](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L831) +Defined in: [lib/types.ts:831](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L831) ##### `publicationId?` > `number` -Defined in: [lib/types.ts:832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L832) +Defined in: [lib/types.ts:832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L832) ##### `seq?` @@ -522,7 +522,7 @@ Defined in: [lib/types.ts:832](https://github.com/TrialAndErrorOrg/parsers/blob The order in which this contributor should appear in a list of contriibutors. -Defined in: [lib/types.ts:834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L834) +Defined in: [lib/types.ts:834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L834) ##### `url?` @@ -532,7 +532,7 @@ Defined in: [lib/types.ts:834](https://github.com/TrialAndErrorOrg/parsers/blob An optional URL to this contributor's webpage. -Defined in: [lib/types.ts:836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L836) +Defined in: [lib/types.ts:836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L836) ##### `userGroupId?` @@ -542,9 +542,9 @@ Defined in: [lib/types.ts:836](https://github.com/TrialAndErrorOrg/parsers/blob in which user group should this contributor be identified. Usually one of the author roles, such as Author or Translator. -Defined in: [lib/types.ts:838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L838) +Defined in: [lib/types.ts:838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L838) -*** +--- ### `AuthorSummary` @@ -554,31 +554,31 @@ Defined in: [lib/types.ts:838](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:841](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L841) +Defined in: [lib/types.ts:841](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L841) ##### `email?` > `string` -Defined in: [lib/types.ts:842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L842) +Defined in: [lib/types.ts:842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L842) ##### `familyName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:843](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L843) +Defined in: [lib/types.ts:843](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L843) ##### `givenName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L844) +Defined in: [lib/types.ts:844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L844) ##### `id?` > `number` -Defined in: [lib/types.ts:845](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L845) +Defined in: [lib/types.ts:845](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L845) ##### `includeInBrowse?` @@ -592,7 +592,7 @@ Whether or not to include this contributor in author lists when the publication true -Defined in: [lib/types.ts:850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L850) +Defined in: [lib/types.ts:850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L850) ##### `orcid?` @@ -602,19 +602,19 @@ Defined in: [lib/types.ts:850](https://github.com/TrialAndErrorOrg/parsers/blob The ORCID of this contributor. See: https\://orcid.org/ -Defined in: [lib/types.ts:852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L852) +Defined in: [lib/types.ts:852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L852) ##### `preferredPublicName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:853](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L853) +Defined in: [lib/types.ts:853](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L853) ##### `publicationId?` > `number` -Defined in: [lib/types.ts:854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L854) +Defined in: [lib/types.ts:854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L854) ##### `seq?` @@ -624,7 +624,7 @@ Defined in: [lib/types.ts:854](https://github.com/TrialAndErrorOrg/parsers/blob The order in which this contributor should appear in a list of contriibutors. -Defined in: [lib/types.ts:856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L856) +Defined in: [lib/types.ts:856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L856) ##### `submissionLocale?` @@ -634,7 +634,7 @@ Defined in: [lib/types.ts:856](https://github.com/TrialAndErrorOrg/parsers/blob The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. -Defined in: [lib/types.ts:858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L858) +Defined in: [lib/types.ts:858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L858) ##### `userGroupId?` @@ -644,9 +644,9 @@ Defined in: [lib/types.ts:858](https://github.com/TrialAndErrorOrg/parsers/blob in which user group should this contributor be identified. Usually one of the author roles, such as Author or Translator. -Defined in: [lib/types.ts:860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L860) +Defined in: [lib/types.ts:860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L860) -*** +--- ### `Context` @@ -658,31 +658,31 @@ Defined in: [lib/types.ts:860](https://github.com/TrialAndErrorOrg/parsers/blob Format: uri -Defined in: [lib/types.ts:50](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L50) +Defined in: [lib/types.ts:50](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L50) ##### `abbreviation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L51) +Defined in: [lib/types.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L51) ##### `about?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L52) +Defined in: [lib/types.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L52) ##### `acronym?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L53) +Defined in: [lib/types.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L53) ##### `additionalHomeContent?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L54) +Defined in: [lib/types.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L54) ##### `agencies?` @@ -692,25 +692,25 @@ Defined in: [lib/types.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/ Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:56](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L56) +Defined in: [lib/types.ts:56](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L56) ##### `announcementsIntroduction?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:57](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L57) +Defined in: [lib/types.ts:57](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L57) ##### `authorGuidelines?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:58](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L58) +Defined in: [lib/types.ts:58](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L58) ##### `authorInformation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L59) +Defined in: [lib/types.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L59) ##### `citations?` @@ -720,61 +720,61 @@ Defined in: [lib/types.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/ Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:61](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L61) +Defined in: [lib/types.ts:61](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L61) ##### `clockssLicense?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:62](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L62) +Defined in: [lib/types.ts:62](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L62) ##### `competingInterests?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:63](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L63) +Defined in: [lib/types.ts:63](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L63) ##### `contactAffiliation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:64](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L64) +Defined in: [lib/types.ts:64](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L64) ##### `contactEmail?` > `string` -Defined in: [lib/types.ts:65](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L65) +Defined in: [lib/types.ts:65](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L65) ##### `contactName?` > `string` -Defined in: [lib/types.ts:66](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L66) +Defined in: [lib/types.ts:66](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L66) ##### `contactPhone?` > `string` -Defined in: [lib/types.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L67) +Defined in: [lib/types.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L67) ##### `copyrightHolderOther?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:68](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L68) +Defined in: [lib/types.ts:68](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L68) ##### `copyrightHolderType?` > `string` -Defined in: [lib/types.ts:69](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L69) +Defined in: [lib/types.ts:69](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L69) ##### `copyrightNotice?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L70) +Defined in: [lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L70) ##### `copyrightYearBasis?` @@ -784,7 +784,7 @@ Defined in: [lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/ issue -Defined in: [lib/types.ts:72](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L72) +Defined in: [lib/types.ts:72](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L72) ##### `coverage?` @@ -794,49 +794,49 @@ Defined in: [lib/types.ts:72](https://github.com/TrialAndErrorOrg/parsers/blob/ Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:74](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L74) +Defined in: [lib/types.ts:74](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L74) ##### `currency?` > `string` -Defined in: [lib/types.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L75) +Defined in: [lib/types.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L75) ##### `customHeaders?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:76](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L76) +Defined in: [lib/types.ts:76](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L76) ##### `dateFormatLong?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:77](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L77) +Defined in: [lib/types.ts:77](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L77) ##### `dateFormatShort?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:78](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L78) +Defined in: [lib/types.ts:78](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L78) ##### `datetimeFormatLong?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:79](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L79) +Defined in: [lib/types.ts:79](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L79) ##### `datetimeFormatShort?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:80](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L80) +Defined in: [lib/types.ts:80](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L80) ##### `defaultMetricType?` > `string` -Defined in: [lib/types.ts:81](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L81) +Defined in: [lib/types.ts:81](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L81) ##### `defaultReviewMode?` @@ -846,25 +846,25 @@ Defined in: [lib/types.ts:81](https://github.com/TrialAndErrorOrg/parsers/blob/ 2 -Defined in: [lib/types.ts:83](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L83) +Defined in: [lib/types.ts:83](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L83) ##### `delayedOpenAccessDuration?` > `number` -Defined in: [lib/types.ts:84](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L84) +Defined in: [lib/types.ts:84](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L84) ##### `delayedOpenAccessPolicy?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:85](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L85) +Defined in: [lib/types.ts:85](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L85) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:86](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L86) +Defined in: [lib/types.ts:86](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L86) ##### `disableBulkEmailUserGroups?` @@ -874,7 +874,7 @@ Defined in: [lib/types.ts:86](https://github.com/TrialAndErrorOrg/parsers/blob/ User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. -Defined in: [lib/types.ts:88](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L88) +Defined in: [lib/types.ts:88](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L88) ##### `disableSubmissions?` @@ -884,13 +884,13 @@ Defined in: [lib/types.ts:88](https://github.com/TrialAndErrorOrg/parsers/blob/ false -Defined in: [lib/types.ts:90](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L90) +Defined in: [lib/types.ts:90](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L90) ##### `disableUserReg?` > `boolean` -Defined in: [lib/types.ts:91](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L91) +Defined in: [lib/types.ts:91](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L91) ##### `disciplines?` @@ -900,37 +900,37 @@ Defined in: [lib/types.ts:91](https://github.com/TrialAndErrorOrg/parsers/blob/ Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:93](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L93) +Defined in: [lib/types.ts:93](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L93) ##### `editorialTeam?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:94](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L94) +Defined in: [lib/types.ts:94](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L94) ##### `emailSignature?` > `string` -Defined in: [lib/types.ts:95](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L95) +Defined in: [lib/types.ts:95](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L95) ##### `enableAnnouncements?` > `boolean` -Defined in: [lib/types.ts:96](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L96) +Defined in: [lib/types.ts:96](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L96) ##### `enableClockss?` > `boolean` -Defined in: [lib/types.ts:97](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L97) +Defined in: [lib/types.ts:97](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L97) ##### `enableLockss?` > `boolean` -Defined in: [lib/types.ts:98](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L98) +Defined in: [lib/types.ts:98](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L98) ##### `enableOai?` @@ -940,55 +940,55 @@ Defined in: [lib/types.ts:98](https://github.com/TrialAndErrorOrg/parsers/blob/ 1 -Defined in: [lib/types.ts:100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L100) +Defined in: [lib/types.ts:100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L100) ##### `enableOpenAccessNotification?` > `boolean` -Defined in: [lib/types.ts:101](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L101) +Defined in: [lib/types.ts:101](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L101) ##### `enablePublisherId?` > `string`[] -Defined in: [lib/types.ts:102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L102) +Defined in: [lib/types.ts:102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L102) ##### `enableSubscriptionOnlinePaymentNotificationPurchaseIndividual?` > `boolean` -Defined in: [lib/types.ts:103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L103) +Defined in: [lib/types.ts:103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L103) ##### `enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional?` > `boolean` -Defined in: [lib/types.ts:104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L104) +Defined in: [lib/types.ts:104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L104) ##### `enableSubscriptionOnlinePaymentNotificationRenewIndividual?` > `boolean` -Defined in: [lib/types.ts:105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L105) +Defined in: [lib/types.ts:105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L105) ##### `enableSubscriptionOnlinePaymentNotificationRenewInstitutional?` > `boolean` -Defined in: [lib/types.ts:106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L106) +Defined in: [lib/types.ts:106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L106) ##### `enabled?` > `boolean` -Defined in: [lib/types.ts:107](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L107) +Defined in: [lib/types.ts:107](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L107) ##### `envelopeSender?` > `string` -Defined in: [lib/types.ts:108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L108) +Defined in: [lib/types.ts:108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L108) ##### `favicon?` @@ -1019,26 +1019,26 @@ Defined in: [lib/types.ts:108](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.height`? | `number` | -| `en_US.name`? | `string` | -| `en_US.uploadName`? | `string` | -| `en_US.width`? | `number` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.height`? | `number` | -| `fr_CA.name`? | `string` | -| `fr_CA.uploadName`? | `string` | -| `fr_CA.width`? | `number` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L109) +| Member | Type | +| :-------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.height`? | `number` | +| `en_US.name`? | `string` | +| `en_US.uploadName`? | `string` | +| `en_US.width`? | `number` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.height`? | `number` | +| `fr_CA.name`? | `string` | +| `fr_CA.uploadName`? | `string` | +| `fr_CA.width`? | `number` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L109) ##### `homepageImage?` @@ -1069,32 +1069,32 @@ Defined in: [lib/types.ts:109](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.height`? | `number` | -| `en_US.name`? | `string` | -| `en_US.uploadName`? | `string` | -| `en_US.width`? | `number` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.height`? | `number` | -| `fr_CA.name`? | `string` | -| `fr_CA.uploadName`? | `string` | -| `fr_CA.width`? | `number` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:129](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L129) +| Member | Type | +| :-------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.height`? | `number` | +| `en_US.name`? | `string` | +| `en_US.uploadName`? | `string` | +| `en_US.width`? | `number` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.height`? | `number` | +| `fr_CA.name`? | `string` | +| `fr_CA.uploadName`? | `string` | +| `fr_CA.width`? | `number` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:129](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L129) ##### `id?` > `number` -Defined in: [lib/types.ts:149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L149) +Defined in: [lib/types.ts:149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L149) ##### `itemsPerPage?` @@ -1104,7 +1104,7 @@ Defined in: [lib/types.ts:149](https://github.com/TrialAndErrorOrg/parsers/blob 25 -Defined in: [lib/types.ts:151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L151) +Defined in: [lib/types.ts:151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L151) ##### `journalThumbnail?` @@ -1135,26 +1135,26 @@ Defined in: [lib/types.ts:151](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.height`? | `number` | -| `en_US.name`? | `string` | -| `en_US.uploadName`? | `string` | -| `en_US.width`? | `number` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.height`? | `number` | -| `fr_CA.name`? | `string` | -| `fr_CA.uploadName`? | `string` | -| `fr_CA.width`? | `number` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L152) +| Member | Type | +| :-------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.height`? | `number` | +| `en_US.name`? | `string` | +| `en_US.uploadName`? | `string` | +| `en_US.width`? | `number` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.height`? | `number` | +| `fr_CA.name`? | `string` | +| `fr_CA.uploadName`? | `string` | +| `fr_CA.width`? | `number` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L152) ##### `keywords?` @@ -1168,7 +1168,7 @@ Enable keywords metadata. `0` is disabled. `enable` will make it available in th request -Defined in: [lib/types.ts:176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L176) +Defined in: [lib/types.ts:176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L176) ##### `languages?` @@ -1178,37 +1178,37 @@ Defined in: [lib/types.ts:176](https://github.com/TrialAndErrorOrg/parsers/blob Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L178) +Defined in: [lib/types.ts:178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L178) ##### `librarianInformation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:179](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L179) +Defined in: [lib/types.ts:179](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L179) ##### `licenseTerms?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L180) +Defined in: [lib/types.ts:180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L180) ##### `licenseUrl?` > `string` -Defined in: [lib/types.ts:181](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L181) +Defined in: [lib/types.ts:181](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L181) ##### `lockssLicense?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L182) +Defined in: [lib/types.ts:182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L182) ##### `mailingAddress?` > `string` -Defined in: [lib/types.ts:183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L183) +Defined in: [lib/types.ts:183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L183) ##### `membershipFee?` @@ -1218,55 +1218,55 @@ Defined in: [lib/types.ts:183](https://github.com/TrialAndErrorOrg/parsers/blob 0 -Defined in: [lib/types.ts:185](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L185) +Defined in: [lib/types.ts:185](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L185) ##### `membershipFeeDescription?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:186](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L186) +Defined in: [lib/types.ts:186](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L186) ##### `membershipFeeName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L187) +Defined in: [lib/types.ts:187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L187) ##### `name?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L188) +Defined in: [lib/types.ts:188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L188) ##### `numAnnouncementsHomepage?` > `number` -Defined in: [lib/types.ts:189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L189) +Defined in: [lib/types.ts:189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L189) ##### `numDaysBeforeInviteReminder?` > `number` -Defined in: [lib/types.ts:190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L190) +Defined in: [lib/types.ts:190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L190) ##### `numDaysBeforeSubmitReminder?` > `number` -Defined in: [lib/types.ts:191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L191) +Defined in: [lib/types.ts:191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L191) ##### `numMonthsAfterSubscriptionExpiryReminder?` > `number` -Defined in: [lib/types.ts:192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L192) +Defined in: [lib/types.ts:192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L192) ##### `numMonthsBeforeSubscriptionExpiryReminder?` > `number` -Defined in: [lib/types.ts:193](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L193) +Defined in: [lib/types.ts:193](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L193) ##### `numPageLinks?` @@ -1276,19 +1276,19 @@ Defined in: [lib/types.ts:193](https://github.com/TrialAndErrorOrg/parsers/blob 10 -Defined in: [lib/types.ts:195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L195) +Defined in: [lib/types.ts:195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L195) ##### `numWeeksAfterSubscriptionExpiryReminder?` > `number` -Defined in: [lib/types.ts:196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L196) +Defined in: [lib/types.ts:196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L196) ##### `numWeeksBeforeSubscriptionExpiryReminder?` > `number` -Defined in: [lib/types.ts:197](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L197) +Defined in: [lib/types.ts:197](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L197) ##### `numWeeksPerResponse?` @@ -1298,7 +1298,7 @@ Defined in: [lib/types.ts:197](https://github.com/TrialAndErrorOrg/parsers/blob 4 -Defined in: [lib/types.ts:199](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L199) +Defined in: [lib/types.ts:199](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L199) ##### `numWeeksPerReview?` @@ -1308,25 +1308,25 @@ Defined in: [lib/types.ts:199](https://github.com/TrialAndErrorOrg/parsers/blob 4 -Defined in: [lib/types.ts:201](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L201) +Defined in: [lib/types.ts:201](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L201) ##### `onlineIssn?` > `string` -Defined in: [lib/types.ts:202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L202) +Defined in: [lib/types.ts:202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L202) ##### `openAccessPolicy?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:203](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L203) +Defined in: [lib/types.ts:203](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L203) ##### `pageFooter?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L204) +Defined in: [lib/types.ts:204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L204) ##### `pageHeaderLogoImage?` @@ -1357,56 +1357,56 @@ Defined in: [lib/types.ts:204](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.height`? | `number` | -| `en_US.name`? | `string` | -| `en_US.uploadName`? | `string` | -| `en_US.width`? | `number` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.height`? | `number` | -| `fr_CA.name`? | `string` | -| `fr_CA.uploadName`? | `string` | -| `fr_CA.width`? | `number` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:205](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L205) +| Member | Type | +| :-------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.height`? | `number` | +| `en_US.name`? | `string` | +| `en_US.uploadName`? | `string` | +| `en_US.width`? | `number` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.height`? | `number` | +| `fr_CA.name`? | `string` | +| `fr_CA.uploadName`? | `string` | +| `fr_CA.width`? | `number` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:205](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L205) ##### `paymentPluginName?` > `string` -Defined in: [lib/types.ts:225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L225) +Defined in: [lib/types.ts:225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L225) ##### `paymentsEnabled?` > `boolean` -Defined in: [lib/types.ts:226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L226) +Defined in: [lib/types.ts:226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L226) ##### `primaryLocale?` > `string` -Defined in: [lib/types.ts:227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L227) +Defined in: [lib/types.ts:227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L227) ##### `printIssn?` > `string` -Defined in: [lib/types.ts:228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L228) +Defined in: [lib/types.ts:228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L228) ##### `privacyStatement?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L229) +Defined in: [lib/types.ts:229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L229) ##### `publicationFee?` @@ -1416,31 +1416,31 @@ Defined in: [lib/types.ts:229](https://github.com/TrialAndErrorOrg/parsers/blob 0 -Defined in: [lib/types.ts:231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L231) +Defined in: [lib/types.ts:231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L231) ##### `publicationFeeDescription?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L232) +Defined in: [lib/types.ts:232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L232) ##### `publicationFeeName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L233) +Defined in: [lib/types.ts:233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L233) ##### `publisherInstitution?` > `string` -Defined in: [lib/types.ts:234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L234) +Defined in: [lib/types.ts:234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L234) ##### `publishingMode?` > `number` -Defined in: [lib/types.ts:235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L235) +Defined in: [lib/types.ts:235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L235) ##### `purchaseArticleFee?` @@ -1450,85 +1450,85 @@ Defined in: [lib/types.ts:235](https://github.com/TrialAndErrorOrg/parsers/blob 0 -Defined in: [lib/types.ts:237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L237) +Defined in: [lib/types.ts:237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L237) ##### `purchaseArticleFeeDescription?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L238) +Defined in: [lib/types.ts:238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L238) ##### `purchaseArticleFeeEnabled?` > `boolean` -Defined in: [lib/types.ts:239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L239) +Defined in: [lib/types.ts:239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L239) ##### `purchaseArticleFeeName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L240) +Defined in: [lib/types.ts:240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L240) ##### `purchaseIssueFee?` > `number` -Defined in: [lib/types.ts:241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L241) +Defined in: [lib/types.ts:241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L241) ##### `purchaseIssueFeeEnabled?` > `boolean` -Defined in: [lib/types.ts:242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L242) +Defined in: [lib/types.ts:242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L242) ##### `rateReviewerOnQuality?` > `boolean` -Defined in: [lib/types.ts:243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L243) +Defined in: [lib/types.ts:243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L243) ##### `readerInformation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L244) +Defined in: [lib/types.ts:244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L244) ##### `restrictArticleAccess?` > `boolean` -Defined in: [lib/types.ts:245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L245) +Defined in: [lib/types.ts:245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L245) ##### `restrictOnlyPdf?` > `boolean` -Defined in: [lib/types.ts:246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L246) +Defined in: [lib/types.ts:246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L246) ##### `restrictReviewerFileAccess?` > `boolean` -Defined in: [lib/types.ts:247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L247) +Defined in: [lib/types.ts:247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L247) ##### `restrictSiteAccess?` > `boolean` -Defined in: [lib/types.ts:248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L248) +Defined in: [lib/types.ts:248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L248) ##### `reviewGuidelines?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L249) +Defined in: [lib/types.ts:249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L249) ##### `reviewerAccessKeysEnabled?` > `boolean` -Defined in: [lib/types.ts:250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L250) +Defined in: [lib/types.ts:250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L250) ##### `rights?` @@ -1538,31 +1538,31 @@ Defined in: [lib/types.ts:250](https://github.com/TrialAndErrorOrg/parsers/blob Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L252) +Defined in: [lib/types.ts:252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L252) ##### `searchDescription?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L253) +Defined in: [lib/types.ts:253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L253) ##### `seq?` > `number` -Defined in: [lib/types.ts:254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L254) +Defined in: [lib/types.ts:254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L254) ##### `showEnsuringLink?` > `boolean` -Defined in: [lib/types.ts:255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L255) +Defined in: [lib/types.ts:255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L255) ##### `sidebar?` > `string`[] -Defined in: [lib/types.ts:256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L256) +Defined in: [lib/types.ts:256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L256) ##### `source?` @@ -1572,7 +1572,7 @@ Defined in: [lib/types.ts:256](https://github.com/TrialAndErrorOrg/parsers/blob Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L258) +Defined in: [lib/types.ts:258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L258) ##### `styleSheet?` @@ -1588,13 +1588,13 @@ Defined in: [lib/types.ts:258](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------- | :------- | | `dateUploaded`? | `string` | -| `name`? | `string` | -| `uploadName`? | `string` | +| `name`? | `string` | +| `uploadName`? | `string` | -Defined in: [lib/types.ts:259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L259) +Defined in: [lib/types.ts:259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L259) ##### `subjects?` @@ -1604,7 +1604,7 @@ Defined in: [lib/types.ts:259](https://github.com/TrialAndErrorOrg/parsers/blob Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L265) +Defined in: [lib/types.ts:265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L265) ##### `submissionChecklist?` @@ -1648,97 +1648,97 @@ Defined in: [lib/types.ts:265](https://github.com/TrialAndErrorOrg/parsers/blob } ] -Defined in: [lib/types.ts:300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L300) +Defined in: [lib/types.ts:300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L300) ##### `submissionFee?` > `number` -Defined in: [lib/types.ts:304](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L304) +Defined in: [lib/types.ts:304](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L304) ##### `submissionFeeDescription?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L305) +Defined in: [lib/types.ts:305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L305) ##### `submissionFeeName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L306) +Defined in: [lib/types.ts:306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L306) ##### `subscriptionAdditionalInformation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L307) +Defined in: [lib/types.ts:307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L307) ##### `subscriptionEmail?` > `string` -Defined in: [lib/types.ts:308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L308) +Defined in: [lib/types.ts:308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L308) ##### `subscriptionExpiryPartial?` > `boolean` -Defined in: [lib/types.ts:309](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L309) +Defined in: [lib/types.ts:309](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L309) ##### `subscriptionMailingAddress?` > `string` -Defined in: [lib/types.ts:310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L310) +Defined in: [lib/types.ts:310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L310) ##### `subscriptionName?` > `string` -Defined in: [lib/types.ts:311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L311) +Defined in: [lib/types.ts:311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L311) ##### `subscriptionPhone?` > `string` -Defined in: [lib/types.ts:312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L312) +Defined in: [lib/types.ts:312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L312) ##### `supportEmail?` > `string` -Defined in: [lib/types.ts:313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L313) +Defined in: [lib/types.ts:313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L313) ##### `supportName?` > `string` -Defined in: [lib/types.ts:314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L314) +Defined in: [lib/types.ts:314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L314) ##### `supportPhone?` > `string` -Defined in: [lib/types.ts:315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L315) +Defined in: [lib/types.ts:315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L315) ##### `supportedFormLocales?` > `string`[] -Defined in: [lib/types.ts:316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L316) +Defined in: [lib/types.ts:316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L316) ##### `supportedLocales?` > `string`[] -Defined in: [lib/types.ts:317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L317) +Defined in: [lib/types.ts:317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L317) ##### `supportedSubmissionLocales?` > `string`[] -Defined in: [lib/types.ts:318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L318) +Defined in: [lib/types.ts:318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L318) ##### `themePluginPath?` @@ -1748,13 +1748,13 @@ Defined in: [lib/types.ts:318](https://github.com/TrialAndErrorOrg/parsers/blob default -Defined in: [lib/types.ts:320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L320) +Defined in: [lib/types.ts:320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L320) ##### `timeFormat?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L321) +Defined in: [lib/types.ts:321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L321) ##### `type?` @@ -1764,21 +1764,21 @@ Defined in: [lib/types.ts:321](https://github.com/TrialAndErrorOrg/parsers/blob Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:323](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L323) +Defined in: [lib/types.ts:323](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L323) ##### `url?` > `string` -Defined in: [lib/types.ts:324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L324) +Defined in: [lib/types.ts:324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L324) ##### `urlPath?` > `string` -Defined in: [lib/types.ts:325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L325) +Defined in: [lib/types.ts:325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L325) -*** +--- ### `ContextEditable` @@ -1788,25 +1788,25 @@ Defined in: [lib/types.ts:325](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:863](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L863) +Defined in: [lib/types.ts:863](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L863) ##### `about?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L864) +Defined in: [lib/types.ts:864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L864) ##### `acronym?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L865) +Defined in: [lib/types.ts:865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L865) ##### `additionalHomeContent?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L866) +Defined in: [lib/types.ts:866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L866) ##### `agencies?` @@ -1816,25 +1816,25 @@ Defined in: [lib/types.ts:866](https://github.com/TrialAndErrorOrg/parsers/blob Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L868) +Defined in: [lib/types.ts:868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L868) ##### `announcementsIntroduction?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:869](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L869) +Defined in: [lib/types.ts:869](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L869) ##### `authorGuidelines?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L870) +Defined in: [lib/types.ts:870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L870) ##### `authorInformation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:871](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L871) +Defined in: [lib/types.ts:871](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L871) ##### `citations?` @@ -1844,61 +1844,61 @@ Defined in: [lib/types.ts:871](https://github.com/TrialAndErrorOrg/parsers/blob Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L873) +Defined in: [lib/types.ts:873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L873) ##### `clockssLicense?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L874) +Defined in: [lib/types.ts:874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L874) ##### `competingInterests?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:875](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L875) +Defined in: [lib/types.ts:875](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L875) ##### `contactAffiliation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L876) +Defined in: [lib/types.ts:876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L876) ##### `contactEmail?` > `string` -Defined in: [lib/types.ts:877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L877) +Defined in: [lib/types.ts:877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L877) ##### `contactName?` > `string` -Defined in: [lib/types.ts:878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L878) +Defined in: [lib/types.ts:878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L878) ##### `contactPhone?` > `string` -Defined in: [lib/types.ts:879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L879) +Defined in: [lib/types.ts:879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L879) ##### `copyrightHolderOther?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L880) +Defined in: [lib/types.ts:880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L880) ##### `copyrightHolderType?` > `string` -Defined in: [lib/types.ts:881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L881) +Defined in: [lib/types.ts:881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L881) ##### `copyrightNotice?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L882) +Defined in: [lib/types.ts:882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L882) ##### `copyrightYearBasis?` @@ -1908,7 +1908,7 @@ Defined in: [lib/types.ts:882](https://github.com/TrialAndErrorOrg/parsers/blob issue -Defined in: [lib/types.ts:884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L884) +Defined in: [lib/types.ts:884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L884) ##### `coverage?` @@ -1918,49 +1918,49 @@ Defined in: [lib/types.ts:884](https://github.com/TrialAndErrorOrg/parsers/blob Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L886) +Defined in: [lib/types.ts:886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L886) ##### `currency?` > `string` -Defined in: [lib/types.ts:887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L887) +Defined in: [lib/types.ts:887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L887) ##### `customHeaders?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L888) +Defined in: [lib/types.ts:888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L888) ##### `dateFormatLong?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L889) +Defined in: [lib/types.ts:889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L889) ##### `dateFormatShort?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L890) +Defined in: [lib/types.ts:890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L890) ##### `datetimeFormatLong?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L891) +Defined in: [lib/types.ts:891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L891) ##### `datetimeFormatShort?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L892) +Defined in: [lib/types.ts:892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L892) ##### `defaultMetricType?` > `string` -Defined in: [lib/types.ts:893](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L893) +Defined in: [lib/types.ts:893](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L893) ##### `defaultReviewMode?` @@ -1970,25 +1970,25 @@ Defined in: [lib/types.ts:893](https://github.com/TrialAndErrorOrg/parsers/blob 2 -Defined in: [lib/types.ts:895](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L895) +Defined in: [lib/types.ts:895](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L895) ##### `delayedOpenAccessDuration?` > `number` -Defined in: [lib/types.ts:896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L896) +Defined in: [lib/types.ts:896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L896) ##### `delayedOpenAccessPolicy?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L897) +Defined in: [lib/types.ts:897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L897) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L898) +Defined in: [lib/types.ts:898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L898) ##### `disableBulkEmailUserGroups?` @@ -1998,7 +1998,7 @@ Defined in: [lib/types.ts:898](https://github.com/TrialAndErrorOrg/parsers/blob User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. -Defined in: [lib/types.ts:900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L900) +Defined in: [lib/types.ts:900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L900) ##### `disableSubmissions?` @@ -2008,13 +2008,13 @@ Defined in: [lib/types.ts:900](https://github.com/TrialAndErrorOrg/parsers/blob false -Defined in: [lib/types.ts:902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L902) +Defined in: [lib/types.ts:902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L902) ##### `disableUserReg?` > `boolean` -Defined in: [lib/types.ts:903](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L903) +Defined in: [lib/types.ts:903](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L903) ##### `disciplines?` @@ -2024,37 +2024,37 @@ Defined in: [lib/types.ts:903](https://github.com/TrialAndErrorOrg/parsers/blob Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:905](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L905) +Defined in: [lib/types.ts:905](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L905) ##### `editorialTeam?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L906) +Defined in: [lib/types.ts:906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L906) ##### `emailSignature?` > `string` -Defined in: [lib/types.ts:907](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L907) +Defined in: [lib/types.ts:907](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L907) ##### `enableAnnouncements?` > `boolean` -Defined in: [lib/types.ts:908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L908) +Defined in: [lib/types.ts:908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L908) ##### `enableClockss?` > `boolean` -Defined in: [lib/types.ts:909](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L909) +Defined in: [lib/types.ts:909](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L909) ##### `enableLockss?` > `boolean` -Defined in: [lib/types.ts:910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L910) +Defined in: [lib/types.ts:910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L910) ##### `enableOai?` @@ -2064,55 +2064,55 @@ Defined in: [lib/types.ts:910](https://github.com/TrialAndErrorOrg/parsers/blob 1 -Defined in: [lib/types.ts:912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L912) +Defined in: [lib/types.ts:912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L912) ##### `enableOpenAccessNotification?` > `boolean` -Defined in: [lib/types.ts:913](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L913) +Defined in: [lib/types.ts:913](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L913) ##### `enablePublisherId?` > `string`[] -Defined in: [lib/types.ts:914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L914) +Defined in: [lib/types.ts:914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L914) ##### `enableSubscriptionOnlinePaymentNotificationPurchaseIndividual?` > `boolean` -Defined in: [lib/types.ts:915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L915) +Defined in: [lib/types.ts:915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L915) ##### `enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional?` > `boolean` -Defined in: [lib/types.ts:916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L916) +Defined in: [lib/types.ts:916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L916) ##### `enableSubscriptionOnlinePaymentNotificationRenewIndividual?` > `boolean` -Defined in: [lib/types.ts:917](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L917) +Defined in: [lib/types.ts:917](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L917) ##### `enableSubscriptionOnlinePaymentNotificationRenewInstitutional?` > `boolean` -Defined in: [lib/types.ts:918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L918) +Defined in: [lib/types.ts:918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L918) ##### `enabled?` > `boolean` -Defined in: [lib/types.ts:919](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L919) +Defined in: [lib/types.ts:919](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L919) ##### `envelopeSender?` > `string` -Defined in: [lib/types.ts:920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L920) +Defined in: [lib/types.ts:920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L920) ##### `favicon?` @@ -2145,28 +2145,28 @@ Defined in: [lib/types.ts:920](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.height`? | `number` | -| `en_US.name`? | `string` | -| `en_US.temporaryFileId`? | `number` | -| `en_US.uploadName`? | `string` | -| `en_US.width`? | `number` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.height`? | `number` | -| `fr_CA.name`? | `string` | -| `fr_CA.temporaryFileId`? | `number` | -| `fr_CA.uploadName`? | `string` | -| `fr_CA.width`? | `number` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L921) +| Member | Type | +| :----------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.height`? | `number` | +| `en_US.name`? | `string` | +| `en_US.temporaryFileId`? | `number` | +| `en_US.uploadName`? | `string` | +| `en_US.width`? | `number` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.height`? | `number` | +| `fr_CA.name`? | `string` | +| `fr_CA.temporaryFileId`? | `number` | +| `fr_CA.uploadName`? | `string` | +| `fr_CA.width`? | `number` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L921) ##### `homepageImage?` @@ -2199,28 +2199,28 @@ Defined in: [lib/types.ts:921](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.height`? | `number` | -| `en_US.name`? | `string` | -| `en_US.temporaryFileId`? | `number` | -| `en_US.uploadName`? | `string` | -| `en_US.width`? | `number` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.height`? | `number` | -| `fr_CA.name`? | `string` | -| `fr_CA.temporaryFileId`? | `number` | -| `fr_CA.uploadName`? | `string` | -| `fr_CA.width`? | `number` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:943](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L943) +| Member | Type | +| :----------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.height`? | `number` | +| `en_US.name`? | `string` | +| `en_US.temporaryFileId`? | `number` | +| `en_US.uploadName`? | `string` | +| `en_US.width`? | `number` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.height`? | `number` | +| `fr_CA.name`? | `string` | +| `fr_CA.temporaryFileId`? | `number` | +| `fr_CA.uploadName`? | `string` | +| `fr_CA.width`? | `number` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:943](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L943) ##### `itemsPerPage?` @@ -2230,7 +2230,7 @@ Defined in: [lib/types.ts:943](https://github.com/TrialAndErrorOrg/parsers/blob 25 -Defined in: [lib/types.ts:966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L966) +Defined in: [lib/types.ts:966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L966) ##### `journalThumbnail?` @@ -2263,28 +2263,28 @@ Defined in: [lib/types.ts:966](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.height`? | `number` | -| `en_US.name`? | `string` | -| `en_US.temporaryFileId`? | `number` | -| `en_US.uploadName`? | `string` | -| `en_US.width`? | `number` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.height`? | `number` | -| `fr_CA.name`? | `string` | -| `fr_CA.temporaryFileId`? | `number` | -| `fr_CA.uploadName`? | `string` | -| `fr_CA.width`? | `number` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L967) +| Member | Type | +| :----------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.height`? | `number` | +| `en_US.name`? | `string` | +| `en_US.temporaryFileId`? | `number` | +| `en_US.uploadName`? | `string` | +| `en_US.width`? | `number` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.height`? | `number` | +| `fr_CA.name`? | `string` | +| `fr_CA.temporaryFileId`? | `number` | +| `fr_CA.uploadName`? | `string` | +| `fr_CA.width`? | `number` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L967) ##### `keywords?` @@ -2298,7 +2298,7 @@ Enable keywords metadata. `0` is disabled. `enable` will make it available in th request -Defined in: [lib/types.ts:993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L993) +Defined in: [lib/types.ts:993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L993) ##### `languages?` @@ -2308,37 +2308,37 @@ Defined in: [lib/types.ts:993](https://github.com/TrialAndErrorOrg/parsers/blob Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L995) +Defined in: [lib/types.ts:995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L995) ##### `librarianInformation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L996) +Defined in: [lib/types.ts:996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L996) ##### `licenseTerms?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L997) +Defined in: [lib/types.ts:997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L997) ##### `licenseUrl?` > `string` -Defined in: [lib/types.ts:998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L998) +Defined in: [lib/types.ts:998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L998) ##### `lockssLicense?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L999) +Defined in: [lib/types.ts:999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L999) ##### `mailingAddress?` > `string` -Defined in: [lib/types.ts:1000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1000) +Defined in: [lib/types.ts:1000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1000) ##### `membershipFee?` @@ -2348,55 +2348,55 @@ Defined in: [lib/types.ts:1000](https://github.com/TrialAndErrorOrg/parsers/blo 0 -Defined in: [lib/types.ts:1002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1002) +Defined in: [lib/types.ts:1002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1002) ##### `membershipFeeDescription?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1003) +Defined in: [lib/types.ts:1003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1003) ##### `membershipFeeName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1004) +Defined in: [lib/types.ts:1004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1004) ##### `name?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1005) +Defined in: [lib/types.ts:1005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1005) ##### `numAnnouncementsHomepage?` > `number` -Defined in: [lib/types.ts:1006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1006) +Defined in: [lib/types.ts:1006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1006) ##### `numDaysBeforeInviteReminder?` > `number` -Defined in: [lib/types.ts:1007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1007) +Defined in: [lib/types.ts:1007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1007) ##### `numDaysBeforeSubmitReminder?` > `number` -Defined in: [lib/types.ts:1008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1008) +Defined in: [lib/types.ts:1008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1008) ##### `numMonthsAfterSubscriptionExpiryReminder?` > `number` -Defined in: [lib/types.ts:1009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1009) +Defined in: [lib/types.ts:1009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1009) ##### `numMonthsBeforeSubscriptionExpiryReminder?` > `number` -Defined in: [lib/types.ts:1010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1010) +Defined in: [lib/types.ts:1010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1010) ##### `numPageLinks?` @@ -2406,19 +2406,19 @@ Defined in: [lib/types.ts:1010](https://github.com/TrialAndErrorOrg/parsers/blo 10 -Defined in: [lib/types.ts:1012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1012) +Defined in: [lib/types.ts:1012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1012) ##### `numWeeksAfterSubscriptionExpiryReminder?` > `number` -Defined in: [lib/types.ts:1013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1013) +Defined in: [lib/types.ts:1013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1013) ##### `numWeeksBeforeSubscriptionExpiryReminder?` > `number` -Defined in: [lib/types.ts:1014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1014) +Defined in: [lib/types.ts:1014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1014) ##### `numWeeksPerResponse?` @@ -2428,7 +2428,7 @@ Defined in: [lib/types.ts:1014](https://github.com/TrialAndErrorOrg/parsers/blo 4 -Defined in: [lib/types.ts:1016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1016) +Defined in: [lib/types.ts:1016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1016) ##### `numWeeksPerReview?` @@ -2438,25 +2438,25 @@ Defined in: [lib/types.ts:1016](https://github.com/TrialAndErrorOrg/parsers/blo 4 -Defined in: [lib/types.ts:1018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1018) +Defined in: [lib/types.ts:1018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1018) ##### `onlineIssn?` > `string` -Defined in: [lib/types.ts:1019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1019) +Defined in: [lib/types.ts:1019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1019) ##### `openAccessPolicy?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1020) +Defined in: [lib/types.ts:1020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1020) ##### `pageFooter?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1021) +Defined in: [lib/types.ts:1021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1021) ##### `pageHeaderLogoImage?` @@ -2489,58 +2489,58 @@ Defined in: [lib/types.ts:1021](https://github.com/TrialAndErrorOrg/parsers/blo ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.height`? | `number` | -| `en_US.name`? | `string` | -| `en_US.temporaryFileId`? | `number` | -| `en_US.uploadName`? | `string` | -| `en_US.width`? | `number` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.height`? | `number` | -| `fr_CA.name`? | `string` | -| `fr_CA.temporaryFileId`? | `number` | -| `fr_CA.uploadName`? | `string` | -| `fr_CA.width`? | `number` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:1022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1022) +| Member | Type | +| :----------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.height`? | `number` | +| `en_US.name`? | `string` | +| `en_US.temporaryFileId`? | `number` | +| `en_US.uploadName`? | `string` | +| `en_US.width`? | `number` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.height`? | `number` | +| `fr_CA.name`? | `string` | +| `fr_CA.temporaryFileId`? | `number` | +| `fr_CA.uploadName`? | `string` | +| `fr_CA.width`? | `number` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:1022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1022) ##### `paymentPluginName?` > `string` -Defined in: [lib/types.ts:1044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1044) +Defined in: [lib/types.ts:1044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1044) ##### `paymentsEnabled?` > `boolean` -Defined in: [lib/types.ts:1045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1045) +Defined in: [lib/types.ts:1045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1045) ##### `primaryLocale?` > `string` -Defined in: [lib/types.ts:1046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1046) +Defined in: [lib/types.ts:1046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1046) ##### `printIssn?` > `string` -Defined in: [lib/types.ts:1047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1047) +Defined in: [lib/types.ts:1047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1047) ##### `privacyStatement?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1048) +Defined in: [lib/types.ts:1048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1048) ##### `publicationFee?` @@ -2550,31 +2550,31 @@ Defined in: [lib/types.ts:1048](https://github.com/TrialAndErrorOrg/parsers/blo 0 -Defined in: [lib/types.ts:1050](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1050) +Defined in: [lib/types.ts:1050](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1050) ##### `publicationFeeDescription?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1051](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1051) +Defined in: [lib/types.ts:1051](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1051) ##### `publicationFeeName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1052](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1052) +Defined in: [lib/types.ts:1052](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1052) ##### `publisherInstitution?` > `string` -Defined in: [lib/types.ts:1053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1053) +Defined in: [lib/types.ts:1053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1053) ##### `publishingMode?` > `number` -Defined in: [lib/types.ts:1054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1054) +Defined in: [lib/types.ts:1054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1054) ##### `purchaseArticleFee?` @@ -2584,85 +2584,85 @@ Defined in: [lib/types.ts:1054](https://github.com/TrialAndErrorOrg/parsers/blo 0 -Defined in: [lib/types.ts:1056](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1056) +Defined in: [lib/types.ts:1056](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1056) ##### `purchaseArticleFeeDescription?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1057) +Defined in: [lib/types.ts:1057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1057) ##### `purchaseArticleFeeEnabled?` > `boolean` -Defined in: [lib/types.ts:1058](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1058) +Defined in: [lib/types.ts:1058](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1058) ##### `purchaseArticleFeeName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1059) +Defined in: [lib/types.ts:1059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1059) ##### `purchaseIssueFee?` > `number` -Defined in: [lib/types.ts:1060](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1060) +Defined in: [lib/types.ts:1060](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1060) ##### `purchaseIssueFeeEnabled?` > `boolean` -Defined in: [lib/types.ts:1061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1061) +Defined in: [lib/types.ts:1061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1061) ##### `rateReviewerOnQuality?` > `boolean` -Defined in: [lib/types.ts:1062](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1062) +Defined in: [lib/types.ts:1062](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1062) ##### `readerInformation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1063) +Defined in: [lib/types.ts:1063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1063) ##### `restrictArticleAccess?` > `boolean` -Defined in: [lib/types.ts:1064](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1064) +Defined in: [lib/types.ts:1064](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1064) ##### `restrictOnlyPdf?` > `boolean` -Defined in: [lib/types.ts:1065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1065) +Defined in: [lib/types.ts:1065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1065) ##### `restrictReviewerFileAccess?` > `boolean` -Defined in: [lib/types.ts:1066](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1066) +Defined in: [lib/types.ts:1066](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1066) ##### `restrictSiteAccess?` > `boolean` -Defined in: [lib/types.ts:1067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1067) +Defined in: [lib/types.ts:1067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1067) ##### `reviewGuidelines?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1068](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1068) +Defined in: [lib/types.ts:1068](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1068) ##### `reviewerAccessKeysEnabled?` > `boolean` -Defined in: [lib/types.ts:1069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1069) +Defined in: [lib/types.ts:1069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1069) ##### `rights?` @@ -2672,31 +2672,31 @@ Defined in: [lib/types.ts:1069](https://github.com/TrialAndErrorOrg/parsers/blo Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:1071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1071) +Defined in: [lib/types.ts:1071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1071) ##### `searchDescription?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1072](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1072) +Defined in: [lib/types.ts:1072](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1072) ##### `seq?` > `number` -Defined in: [lib/types.ts:1073](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1073) +Defined in: [lib/types.ts:1073](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1073) ##### `showEnsuringLink?` > `boolean` -Defined in: [lib/types.ts:1074](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1074) +Defined in: [lib/types.ts:1074](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1074) ##### `sidebar?` > `string`[] -Defined in: [lib/types.ts:1075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1075) +Defined in: [lib/types.ts:1075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1075) ##### `source?` @@ -2706,7 +2706,7 @@ Defined in: [lib/types.ts:1075](https://github.com/TrialAndErrorOrg/parsers/blo Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:1077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1077) +Defined in: [lib/types.ts:1077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1077) ##### `styleSheet?` @@ -2723,14 +2723,14 @@ Defined in: [lib/types.ts:1077](https://github.com/TrialAndErrorOrg/parsers/blo ###### Type declaration -| Member | Type | -| :------ | :------ | -| `dateUploaded`? | `string` | -| `name`? | `string` | +| Member | Type | +| :----------------- | :------- | +| `dateUploaded`? | `string` | +| `name`? | `string` | | `temporaryFileId`? | `number` | -| `uploadName`? | `string` | +| `uploadName`? | `string` | -Defined in: [lib/types.ts:1078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1078) +Defined in: [lib/types.ts:1078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1078) ##### `subjects?` @@ -2740,7 +2740,7 @@ Defined in: [lib/types.ts:1078](https://github.com/TrialAndErrorOrg/parsers/blo Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:1085](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1085) +Defined in: [lib/types.ts:1085](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1085) ##### `submissionChecklist?` @@ -2784,97 +2784,97 @@ Defined in: [lib/types.ts:1085](https://github.com/TrialAndErrorOrg/parsers/blo } ] -Defined in: [lib/types.ts:1120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1120) +Defined in: [lib/types.ts:1120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1120) ##### `submissionFee?` > `number` -Defined in: [lib/types.ts:1124](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1124) +Defined in: [lib/types.ts:1124](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1124) ##### `submissionFeeDescription?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1125) +Defined in: [lib/types.ts:1125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1125) ##### `submissionFeeName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1126) +Defined in: [lib/types.ts:1126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1126) ##### `subscriptionAdditionalInformation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1127) +Defined in: [lib/types.ts:1127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1127) ##### `subscriptionEmail?` > `string` -Defined in: [lib/types.ts:1128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1128) +Defined in: [lib/types.ts:1128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1128) ##### `subscriptionExpiryPartial?` > `boolean` -Defined in: [lib/types.ts:1129](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1129) +Defined in: [lib/types.ts:1129](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1129) ##### `subscriptionMailingAddress?` > `string` -Defined in: [lib/types.ts:1130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1130) +Defined in: [lib/types.ts:1130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1130) ##### `subscriptionName?` > `string` -Defined in: [lib/types.ts:1131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1131) +Defined in: [lib/types.ts:1131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1131) ##### `subscriptionPhone?` > `string` -Defined in: [lib/types.ts:1132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1132) +Defined in: [lib/types.ts:1132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1132) ##### `supportEmail?` > `string` -Defined in: [lib/types.ts:1133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1133) +Defined in: [lib/types.ts:1133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1133) ##### `supportName?` > `string` -Defined in: [lib/types.ts:1134](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1134) +Defined in: [lib/types.ts:1134](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1134) ##### `supportPhone?` > `string` -Defined in: [lib/types.ts:1135](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1135) +Defined in: [lib/types.ts:1135](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1135) ##### `supportedFormLocales?` > `string`[] -Defined in: [lib/types.ts:1136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1136) +Defined in: [lib/types.ts:1136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1136) ##### `supportedLocales?` > `string`[] -Defined in: [lib/types.ts:1137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1137) +Defined in: [lib/types.ts:1137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1137) ##### `supportedSubmissionLocales?` > `string`[] -Defined in: [lib/types.ts:1138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1138) +Defined in: [lib/types.ts:1138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1138) ##### `themePluginPath?` @@ -2884,13 +2884,13 @@ Defined in: [lib/types.ts:1138](https://github.com/TrialAndErrorOrg/parsers/blo default -Defined in: [lib/types.ts:1140](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1140) +Defined in: [lib/types.ts:1140](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1140) ##### `timeFormat?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1141) +Defined in: [lib/types.ts:1141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1141) ##### `type?` @@ -2900,15 +2900,15 @@ Defined in: [lib/types.ts:1141](https://github.com/TrialAndErrorOrg/parsers/blo Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. -Defined in: [lib/types.ts:1143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1143) +Defined in: [lib/types.ts:1143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1143) ##### `urlPath?` > `string` -Defined in: [lib/types.ts:1144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1144) +Defined in: [lib/types.ts:1144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1144) -*** +--- ### `ContextSummary` @@ -2920,37 +2920,37 @@ Defined in: [lib/types.ts:1144](https://github.com/TrialAndErrorOrg/parsers/blo Format: uri -Defined in: [lib/types.ts:1148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1148) +Defined in: [lib/types.ts:1148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1148) ##### `abbreviation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1149) +Defined in: [lib/types.ts:1149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1149) ##### `acronym?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1150) +Defined in: [lib/types.ts:1150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1150) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1151) +Defined in: [lib/types.ts:1151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1151) ##### `enabled?` > `boolean` -Defined in: [lib/types.ts:1152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1152) +Defined in: [lib/types.ts:1152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1152) ##### `id?` > `number` -Defined in: [lib/types.ts:1153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1153) +Defined in: [lib/types.ts:1153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1153) ##### `journalThumbnail?` @@ -2969,40 +2969,40 @@ Defined in: [lib/types.ts:1153](https://github.com/TrialAndErrorOrg/parsers/blo ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | { } | -| `fr_CA`? | { } | +| Member | Type | +| :------------ | :-------- | +| `en_US`? | { } | +| `fr_CA`? | { } | | `properties`? | `unknown` | -| `type`? | `unknown` | +| `type`? | `unknown` | -Defined in: [lib/types.ts:1154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1154) +Defined in: [lib/types.ts:1154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1154) ##### `name?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1160) +Defined in: [lib/types.ts:1160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1160) ##### `seq?` > `number` -Defined in: [lib/types.ts:1161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1161) +Defined in: [lib/types.ts:1161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1161) ##### `url?` > `string` -Defined in: [lib/types.ts:1162](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1162) +Defined in: [lib/types.ts:1162](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1162) ##### `urlPath?` > `string` -Defined in: [lib/types.ts:1163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1163) +Defined in: [lib/types.ts:1163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1163) -*** +--- ### `EmailTemplate` @@ -3014,13 +3014,13 @@ Defined in: [lib/types.ts:1163](https://github.com/TrialAndErrorOrg/parsers/blo Format: uri -Defined in: [lib/types.ts:334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L334) +Defined in: [lib/types.ts:334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L334) ##### `body?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L335) +Defined in: [lib/types.ts:335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L335) ##### `canDisable?` @@ -3030,7 +3030,7 @@ Defined in: [lib/types.ts:335](https://github.com/TrialAndErrorOrg/parsers/blob Can this email template be disabled in the context settings area? Default is `true`. -Defined in: [lib/types.ts:337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L337) +Defined in: [lib/types.ts:337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L337) ##### `canEdit?` @@ -3040,7 +3040,7 @@ Defined in: [lib/types.ts:337](https://github.com/TrialAndErrorOrg/parsers/blob Can this email template be edited in the context settings area? Default is `true`. -Defined in: [lib/types.ts:339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L339) +Defined in: [lib/types.ts:339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L339) ##### `contextId?` @@ -3050,13 +3050,13 @@ Defined in: [lib/types.ts:339](https://github.com/TrialAndErrorOrg/parsers/blob The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. -Defined in: [lib/types.ts:341](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L341) +Defined in: [lib/types.ts:341](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L341) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L342) +Defined in: [lib/types.ts:342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L342) ##### `enabled?` @@ -3066,7 +3066,7 @@ Defined in: [lib/types.ts:342](https://github.com/TrialAndErrorOrg/parsers/blob Is this email template enabled? Default is `true`. -Defined in: [lib/types.ts:344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L344) +Defined in: [lib/types.ts:344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L344) ##### `fromRoleId?` @@ -3076,7 +3076,7 @@ Defined in: [lib/types.ts:344](https://github.com/TrialAndErrorOrg/parsers/blob The `ROLE_ID_*` of the user who will send this email. -Defined in: [lib/types.ts:346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L346) +Defined in: [lib/types.ts:346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L346) ##### `id?` @@ -3086,7 +3086,7 @@ Defined in: [lib/types.ts:346](https://github.com/TrialAndErrorOrg/parsers/blob The email template ID. -Defined in: [lib/types.ts:348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L348) +Defined in: [lib/types.ts:348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L348) ##### `key?` @@ -3096,7 +3096,7 @@ Defined in: [lib/types.ts:348](https://github.com/TrialAndErrorOrg/parsers/blob A unique key for this email template. -Defined in: [lib/types.ts:350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L350) +Defined in: [lib/types.ts:350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L350) ##### `stageId?` @@ -3106,13 +3106,13 @@ Defined in: [lib/types.ts:350](https://github.com/TrialAndErrorOrg/parsers/blob The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. -Defined in: [lib/types.ts:352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L352) +Defined in: [lib/types.ts:352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L352) ##### `subject?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:353](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L353) +Defined in: [lib/types.ts:353](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L353) ##### `toRoleId?` @@ -3122,9 +3122,9 @@ Defined in: [lib/types.ts:353](https://github.com/TrialAndErrorOrg/parsers/blob The `ROLE_ID_*` of the user who will receive this email. -Defined in: [lib/types.ts:355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L355) +Defined in: [lib/types.ts:355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L355) -*** +--- ### `EmailTemplateEditable` @@ -3134,7 +3134,7 @@ Defined in: [lib/types.ts:355](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1166) +Defined in: [lib/types.ts:1166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1166) ##### `contextId?` @@ -3144,7 +3144,7 @@ Defined in: [lib/types.ts:1166](https://github.com/TrialAndErrorOrg/parsers/blo The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. -Defined in: [lib/types.ts:1168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1168) +Defined in: [lib/types.ts:1168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1168) ##### `enabled?` @@ -3154,7 +3154,7 @@ Defined in: [lib/types.ts:1168](https://github.com/TrialAndErrorOrg/parsers/blo Is this email template enabled? Default is `true`. -Defined in: [lib/types.ts:1170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1170) +Defined in: [lib/types.ts:1170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1170) ##### `key?` @@ -3164,15 +3164,15 @@ Defined in: [lib/types.ts:1170](https://github.com/TrialAndErrorOrg/parsers/blo A unique key for this email template. -Defined in: [lib/types.ts:1172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1172) +Defined in: [lib/types.ts:1172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1172) ##### `subject?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1173](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1173) +Defined in: [lib/types.ts:1173](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1173) -*** +--- ### `EmailTemplateSummary` @@ -3184,13 +3184,13 @@ Defined in: [lib/types.ts:1173](https://github.com/TrialAndErrorOrg/parsers/blo Format: uri -Defined in: [lib/types.ts:1177](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1177) +Defined in: [lib/types.ts:1177](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1177) ##### `body?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1178) +Defined in: [lib/types.ts:1178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1178) ##### `canDisable?` @@ -3200,7 +3200,7 @@ Defined in: [lib/types.ts:1178](https://github.com/TrialAndErrorOrg/parsers/blo Can this email template be disabled in the context settings area? Default is `true`. -Defined in: [lib/types.ts:1180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1180) +Defined in: [lib/types.ts:1180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1180) ##### `canEdit?` @@ -3210,7 +3210,7 @@ Defined in: [lib/types.ts:1180](https://github.com/TrialAndErrorOrg/parsers/blo Can this email template be edited in the context settings area? Default is `true`. -Defined in: [lib/types.ts:1182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1182) +Defined in: [lib/types.ts:1182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1182) ##### `contextId?` @@ -3220,13 +3220,13 @@ Defined in: [lib/types.ts:1182](https://github.com/TrialAndErrorOrg/parsers/blo The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. -Defined in: [lib/types.ts:1184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1184) +Defined in: [lib/types.ts:1184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1184) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1185](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1185) +Defined in: [lib/types.ts:1185](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1185) ##### `enabled?` @@ -3236,7 +3236,7 @@ Defined in: [lib/types.ts:1185](https://github.com/TrialAndErrorOrg/parsers/blo Is this email template enabled? Default is `true`. -Defined in: [lib/types.ts:1187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1187) +Defined in: [lib/types.ts:1187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1187) ##### `fromRoleId?` @@ -3246,7 +3246,7 @@ Defined in: [lib/types.ts:1187](https://github.com/TrialAndErrorOrg/parsers/blo The `ROLE_ID_*` of the user who will send this email. -Defined in: [lib/types.ts:1189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1189) +Defined in: [lib/types.ts:1189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1189) ##### `id?` @@ -3256,7 +3256,7 @@ Defined in: [lib/types.ts:1189](https://github.com/TrialAndErrorOrg/parsers/blo The email template ID. -Defined in: [lib/types.ts:1191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1191) +Defined in: [lib/types.ts:1191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1191) ##### `key?` @@ -3266,7 +3266,7 @@ Defined in: [lib/types.ts:1191](https://github.com/TrialAndErrorOrg/parsers/blo A unique key for this email template. -Defined in: [lib/types.ts:1193](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1193) +Defined in: [lib/types.ts:1193](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1193) ##### `stageId?` @@ -3276,13 +3276,13 @@ Defined in: [lib/types.ts:1193](https://github.com/TrialAndErrorOrg/parsers/blo The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. -Defined in: [lib/types.ts:1195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1195) +Defined in: [lib/types.ts:1195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1195) ##### `subject?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1196) +Defined in: [lib/types.ts:1196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1196) ##### `toRoleId?` @@ -3292,9 +3292,9 @@ Defined in: [lib/types.ts:1196](https://github.com/TrialAndErrorOrg/parsers/blo The `ROLE_ID_*` of the user who will receive this email. -Defined in: [lib/types.ts:1198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1198) +Defined in: [lib/types.ts:1198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1198) -*** +--- ### `ErrorResponse` @@ -3308,15 +3308,15 @@ A response object that will be returned when the request could not be fulfilled. > `string` -Defined in: [lib/types.ts:329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L329) +Defined in: [lib/types.ts:329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L329) ##### `errorMessage?` > `string` -Defined in: [lib/types.ts:330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L330) +Defined in: [lib/types.ts:330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L330) -*** +--- ### `Galley` @@ -3326,19 +3326,19 @@ Defined in: [lib/types.ts:330](https://github.com/TrialAndErrorOrg/parsers/blob > [`SubmissionFile`](modules.md#submissionfile) -Defined in: [lib/types.ts:358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L358) +Defined in: [lib/types.ts:358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L358) ##### `id?` > `number` -Defined in: [lib/types.ts:359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L359) +Defined in: [lib/types.ts:359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L359) ##### `isApproved?` > `boolean` -Defined in: [lib/types.ts:360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L360) +Defined in: [lib/types.ts:360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L360) ##### `label?` @@ -3348,7 +3348,7 @@ Defined in: [lib/types.ts:360](https://github.com/TrialAndErrorOrg/parsers/blob A human-readable label for this galley. For the primary article, it is usually indicates the format like PDF, ePub or full text. For supplementary files it often indicates the content, such as source data or interview transcripts. -Defined in: [lib/types.ts:362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L362) +Defined in: [lib/types.ts:362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L362) ##### `locale?` @@ -3358,7 +3358,7 @@ Defined in: [lib/types.ts:362](https://github.com/TrialAndErrorOrg/parsers/blob The primary locale of this galley. -Defined in: [lib/types.ts:364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L364) +Defined in: [lib/types.ts:364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L364) ##### `pub-id::publisher-id?` @@ -3368,13 +3368,13 @@ Defined in: [lib/types.ts:364](https://github.com/TrialAndErrorOrg/parsers/blob A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. -Defined in: [lib/types.ts:366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L366) +Defined in: [lib/types.ts:366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L366) ##### `publicationId?` > `number` -Defined in: [lib/types.ts:367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L367) +Defined in: [lib/types.ts:367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L367) ##### `seq?` @@ -3384,13 +3384,13 @@ Defined in: [lib/types.ts:367](https://github.com/TrialAndErrorOrg/parsers/blob In what order this galley should appear in lists of galleys for this publication. -Defined in: [lib/types.ts:369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L369) +Defined in: [lib/types.ts:369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L369) ##### `submissionFileId?` > `number` -Defined in: [lib/types.ts:370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L370) +Defined in: [lib/types.ts:370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L370) ##### `urlPath?` @@ -3400,7 +3400,7 @@ Defined in: [lib/types.ts:370](https://github.com/TrialAndErrorOrg/parsers/blob An optional path to use in the URL instead of the ID. -Defined in: [lib/types.ts:372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L372) +Defined in: [lib/types.ts:372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L372) ##### `urlPublished?` @@ -3410,7 +3410,7 @@ Defined in: [lib/types.ts:372](https://github.com/TrialAndErrorOrg/parsers/blob The URL where this galley can be viewed or downloaded. -Defined in: [lib/types.ts:374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L374) +Defined in: [lib/types.ts:374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L374) ##### `urlRemote?` @@ -3420,9 +3420,9 @@ Defined in: [lib/types.ts:374](https://github.com/TrialAndErrorOrg/parsers/blob An optional URL where the galley can be viewed or downloaded. -Defined in: [lib/types.ts:376](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L376) +Defined in: [lib/types.ts:376](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L376) -*** +--- ### `GalleyEditable` @@ -3432,7 +3432,7 @@ Defined in: [lib/types.ts:376](https://github.com/TrialAndErrorOrg/parsers/blob > `boolean` -Defined in: [lib/types.ts:1201](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1201) +Defined in: [lib/types.ts:1201](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1201) ##### `label?` @@ -3442,7 +3442,7 @@ Defined in: [lib/types.ts:1201](https://github.com/TrialAndErrorOrg/parsers/blo A human-readable label for this galley. For the primary article, it is usually indicates the format like PDF, ePub or full text. For supplementary files it often indicates the content, such as source data or interview transcripts. -Defined in: [lib/types.ts:1203](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1203) +Defined in: [lib/types.ts:1203](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1203) ##### `locale?` @@ -3452,7 +3452,7 @@ Defined in: [lib/types.ts:1203](https://github.com/TrialAndErrorOrg/parsers/blo The primary locale of this galley. -Defined in: [lib/types.ts:1205](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1205) +Defined in: [lib/types.ts:1205](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1205) ##### `pub-id::publisher-id?` @@ -3462,13 +3462,13 @@ Defined in: [lib/types.ts:1205](https://github.com/TrialAndErrorOrg/parsers/blo A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. -Defined in: [lib/types.ts:1207](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1207) +Defined in: [lib/types.ts:1207](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1207) ##### `publicationId?` > `number` -Defined in: [lib/types.ts:1208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1208) +Defined in: [lib/types.ts:1208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1208) ##### `seq?` @@ -3478,13 +3478,13 @@ Defined in: [lib/types.ts:1208](https://github.com/TrialAndErrorOrg/parsers/blo In what order this galley should appear in lists of galleys for this publication. -Defined in: [lib/types.ts:1210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1210) +Defined in: [lib/types.ts:1210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1210) ##### `submissionFileId?` > `number` -Defined in: [lib/types.ts:1211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1211) +Defined in: [lib/types.ts:1211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1211) ##### `urlPath?` @@ -3494,7 +3494,7 @@ Defined in: [lib/types.ts:1211](https://github.com/TrialAndErrorOrg/parsers/blo An optional path to use in the URL instead of the ID. -Defined in: [lib/types.ts:1213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1213) +Defined in: [lib/types.ts:1213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1213) ##### `urlRemote?` @@ -3504,9 +3504,9 @@ Defined in: [lib/types.ts:1213](https://github.com/TrialAndErrorOrg/parsers/blo An optional URL where the galley can be viewed or downloaded. -Defined in: [lib/types.ts:1215](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1215) +Defined in: [lib/types.ts:1215](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1215) -*** +--- ### `GalleySummary` @@ -3516,19 +3516,19 @@ Defined in: [lib/types.ts:1215](https://github.com/TrialAndErrorOrg/parsers/blo > [`SubmissionFile`](modules.md#submissionfile) -Defined in: [lib/types.ts:1218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1218) +Defined in: [lib/types.ts:1218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1218) ##### `id?` > `number` -Defined in: [lib/types.ts:1219](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1219) +Defined in: [lib/types.ts:1219](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1219) ##### `isApproved?` > `boolean` -Defined in: [lib/types.ts:1220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1220) +Defined in: [lib/types.ts:1220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1220) ##### `label?` @@ -3538,7 +3538,7 @@ Defined in: [lib/types.ts:1220](https://github.com/TrialAndErrorOrg/parsers/blo A human-readable label for this galley. For the primary article, it is usually indicates the format like PDF, ePub or full text. For supplementary files it often indicates the content, such as source data or interview transcripts. -Defined in: [lib/types.ts:1222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1222) +Defined in: [lib/types.ts:1222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1222) ##### `locale?` @@ -3548,7 +3548,7 @@ Defined in: [lib/types.ts:1222](https://github.com/TrialAndErrorOrg/parsers/blo The primary locale of this galley. -Defined in: [lib/types.ts:1224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1224) +Defined in: [lib/types.ts:1224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1224) ##### `pub-id::publisher-id?` @@ -3558,13 +3558,13 @@ Defined in: [lib/types.ts:1224](https://github.com/TrialAndErrorOrg/parsers/blo A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. -Defined in: [lib/types.ts:1226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1226) +Defined in: [lib/types.ts:1226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1226) ##### `publicationId?` > `number` -Defined in: [lib/types.ts:1227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1227) +Defined in: [lib/types.ts:1227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1227) ##### `seq?` @@ -3574,13 +3574,13 @@ Defined in: [lib/types.ts:1227](https://github.com/TrialAndErrorOrg/parsers/blo In what order this galley should appear in lists of galleys for this publication. -Defined in: [lib/types.ts:1229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1229) +Defined in: [lib/types.ts:1229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1229) ##### `submissionFileId?` > `number` -Defined in: [lib/types.ts:1230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1230) +Defined in: [lib/types.ts:1230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1230) ##### `urlPublished?` @@ -3590,7 +3590,7 @@ Defined in: [lib/types.ts:1230](https://github.com/TrialAndErrorOrg/parsers/blo The URL where this galley can be viewed or downloaded. -Defined in: [lib/types.ts:1232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1232) +Defined in: [lib/types.ts:1232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1232) ##### `urlRemote?` @@ -3600,9 +3600,9 @@ Defined in: [lib/types.ts:1232](https://github.com/TrialAndErrorOrg/parsers/blo An optional URL where the galley can be viewed or downloaded. -Defined in: [lib/types.ts:1234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1234) +Defined in: [lib/types.ts:1234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1234) -*** +--- ### `InvalidParametersResponse` @@ -3627,7 +3627,7 @@ A response object that will be returned when there are validation errors for the [`key`: `string`]: `unknown` -*** +--- ### `Issue` @@ -3637,103 +3637,103 @@ A response object that will be returned when there are validation errors for the > `string` -Defined in: [lib/types.ts:393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L393) +Defined in: [lib/types.ts:393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L393) ##### `articles?` > [`SubmissionSummary`](modules.md#submissionsummary)[] -Defined in: [lib/types.ts:394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L394) +Defined in: [lib/types.ts:394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L394) ##### `coverImageAltText?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L395) +Defined in: [lib/types.ts:395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L395) ##### `coverImageUrl?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L396) +Defined in: [lib/types.ts:396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L396) ##### `dateNotified?` > `string` -Defined in: [lib/types.ts:397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L397) +Defined in: [lib/types.ts:397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L397) ##### `datePublished?` > `string` -Defined in: [lib/types.ts:398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L398) +Defined in: [lib/types.ts:398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L398) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L399) +Defined in: [lib/types.ts:399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L399) ##### `doi?` > `string` -Defined in: [lib/types.ts:400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L400) +Defined in: [lib/types.ts:400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L400) ##### `galleys?` > [`Galley`](modules.md#galley)[] -Defined in: [lib/types.ts:401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L401) +Defined in: [lib/types.ts:401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L401) ##### `id?` > `number` -Defined in: [lib/types.ts:402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L402) +Defined in: [lib/types.ts:402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L402) ##### `identification?` > `string` -Defined in: [lib/types.ts:403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L403) +Defined in: [lib/types.ts:403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L403) ##### `isCurrent?` > `boolean` -Defined in: [lib/types.ts:404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L404) +Defined in: [lib/types.ts:404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L404) ##### `lastModified?` > `string` -Defined in: [lib/types.ts:405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L405) +Defined in: [lib/types.ts:405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L405) ##### `number?` > `string` -Defined in: [lib/types.ts:406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L406) +Defined in: [lib/types.ts:406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L406) ##### `publishedUrl?` > `string` -Defined in: [lib/types.ts:407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L407) +Defined in: [lib/types.ts:407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L407) ##### `sections?` > [`SectionSummary`](modules.md#sectionsummary)[] -Defined in: [lib/types.ts:408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L408) +Defined in: [lib/types.ts:408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L408) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L409) +Defined in: [lib/types.ts:409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L409) ##### `urlPath?` @@ -3743,21 +3743,21 @@ Defined in: [lib/types.ts:409](https://github.com/TrialAndErrorOrg/parsers/blob An optional path to use in the URL instead of the ID. -Defined in: [lib/types.ts:411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L411) +Defined in: [lib/types.ts:411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L411) ##### `volume?` > `number` -Defined in: [lib/types.ts:412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L412) +Defined in: [lib/types.ts:412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L412) ##### `year?` > `number` -Defined in: [lib/types.ts:413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L413) +Defined in: [lib/types.ts:413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L413) -*** +--- ### `IssueEditable` @@ -3767,67 +3767,67 @@ Defined in: [lib/types.ts:413](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1237) +Defined in: [lib/types.ts:1237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1237) ##### `coverImageUrl?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1238) +Defined in: [lib/types.ts:1238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1238) ##### `dateNotified?` > `string` -Defined in: [lib/types.ts:1239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1239) +Defined in: [lib/types.ts:1239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1239) ##### `datePublished?` > `string` -Defined in: [lib/types.ts:1240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1240) +Defined in: [lib/types.ts:1240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1240) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1241) +Defined in: [lib/types.ts:1241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1241) ##### `doi?` > `string` -Defined in: [lib/types.ts:1242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1242) +Defined in: [lib/types.ts:1242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1242) ##### `id?` > `number` -Defined in: [lib/types.ts:1243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1243) +Defined in: [lib/types.ts:1243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1243) ##### `lastModified?` > `string` -Defined in: [lib/types.ts:1244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1244) +Defined in: [lib/types.ts:1244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1244) ##### `number?` > `string` -Defined in: [lib/types.ts:1245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1245) +Defined in: [lib/types.ts:1245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1245) ##### `publishedUrl?` > `string` -Defined in: [lib/types.ts:1246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1246) +Defined in: [lib/types.ts:1246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1246) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1247) +Defined in: [lib/types.ts:1247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1247) ##### `urlPath?` @@ -3837,21 +3837,21 @@ Defined in: [lib/types.ts:1247](https://github.com/TrialAndErrorOrg/parsers/blo An optional path to use in the URL instead of the ID. -Defined in: [lib/types.ts:1249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1249) +Defined in: [lib/types.ts:1249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1249) ##### `volume?` > `number` -Defined in: [lib/types.ts:1250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1250) +Defined in: [lib/types.ts:1250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1250) ##### `year?` > `number` -Defined in: [lib/types.ts:1251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1251) +Defined in: [lib/types.ts:1251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1251) -*** +--- ### `IssueSummary` @@ -3861,81 +3861,81 @@ Defined in: [lib/types.ts:1251](https://github.com/TrialAndErrorOrg/parsers/blo > `string` -Defined in: [lib/types.ts:1254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1254) +Defined in: [lib/types.ts:1254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1254) ##### `coverImageAltText?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1255) +Defined in: [lib/types.ts:1255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1255) ##### `coverImageUrl?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1256) +Defined in: [lib/types.ts:1256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1256) ##### `datePublished?` > `string` -Defined in: [lib/types.ts:1257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1257) +Defined in: [lib/types.ts:1257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1257) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1258) +Defined in: [lib/types.ts:1258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1258) ##### `galleys?` > [`Galley`](modules.md#galley)[] -Defined in: [lib/types.ts:1259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1259) +Defined in: [lib/types.ts:1259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1259) ##### `id?` > `number` -Defined in: [lib/types.ts:1260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1260) +Defined in: [lib/types.ts:1260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1260) ##### `identification?` > `string` -Defined in: [lib/types.ts:1261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1261) +Defined in: [lib/types.ts:1261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1261) ##### `number?` > `string` -Defined in: [lib/types.ts:1262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1262) +Defined in: [lib/types.ts:1262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1262) ##### `publishedUrl?` > `string` -Defined in: [lib/types.ts:1263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1263) +Defined in: [lib/types.ts:1263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1263) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1264](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1264) +Defined in: [lib/types.ts:1264](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1264) ##### `volume?` > `number` -Defined in: [lib/types.ts:1265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1265) +Defined in: [lib/types.ts:1265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1265) ##### `year?` > `number` -Defined in: [lib/types.ts:1266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1266) +Defined in: [lib/types.ts:1266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1266) -*** +--- ### `LocaleObject` @@ -3956,7 +3956,7 @@ Key/value pairs containing data stored by locale key. [`key`: `string`]: `unknown` -*** +--- ### `Publication` @@ -3968,13 +3968,13 @@ Key/value pairs containing data stored by locale key. Format: uri -Defined in: [lib/types.ts:427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L427) +Defined in: [lib/types.ts:427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L427) ##### `abstract?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L428) +Defined in: [lib/types.ts:428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L428) ##### `accessStatus?` @@ -3984,7 +3984,7 @@ Defined in: [lib/types.ts:428](https://github.com/TrialAndErrorOrg/parsers/blob 0 -Defined in: [lib/types.ts:430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L430) +Defined in: [lib/types.ts:430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L430) ##### `authors?` @@ -3994,7 +3994,7 @@ Defined in: [lib/types.ts:430](https://github.com/TrialAndErrorOrg/parsers/blob A list of the authors for this publication. -Defined in: [lib/types.ts:432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L432) +Defined in: [lib/types.ts:432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L432) ##### `authorsString?` @@ -4004,7 +4004,7 @@ Defined in: [lib/types.ts:432](https://github.com/TrialAndErrorOrg/parsers/blob All of the authors rendered with the appropriate separators according to the locale. -Defined in: [lib/types.ts:434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L434) +Defined in: [lib/types.ts:434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L434) ##### `authorsStringShort?` @@ -4014,13 +4014,13 @@ Defined in: [lib/types.ts:434](https://github.com/TrialAndErrorOrg/parsers/blob A shortened version of the authors rendered with the appropriate separators according to the locale. -Defined in: [lib/types.ts:436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L436) +Defined in: [lib/types.ts:436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L436) ##### `categoryIds?` > `number`[] -Defined in: [lib/types.ts:437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L437) +Defined in: [lib/types.ts:437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L437) ##### `citations?` @@ -4030,7 +4030,7 @@ Defined in: [lib/types.ts:437](https://github.com/TrialAndErrorOrg/parsers/blob Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. -Defined in: [lib/types.ts:439](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L439) +Defined in: [lib/types.ts:439](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L439) ##### `citationsRaw?` @@ -4040,13 +4040,13 @@ Defined in: [lib/types.ts:439](https://github.com/TrialAndErrorOrg/parsers/blob Optional metadata that contains references for works cited in this submission as raw text. -Defined in: [lib/types.ts:441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L441) +Defined in: [lib/types.ts:441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L441) ##### `copyrightHolder?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L442) +Defined in: [lib/types.ts:442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L442) ##### `copyrightYear?` @@ -4056,7 +4056,7 @@ Defined in: [lib/types.ts:442](https://github.com/TrialAndErrorOrg/parsers/blob The copyright year for this publication. -Defined in: [lib/types.ts:444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L444) +Defined in: [lib/types.ts:444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L444) ##### `coverImage?` @@ -4081,32 +4081,32 @@ Defined in: [lib/types.ts:444](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.uploadName`? | `string` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.uploadName`? | `string` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L445) +| Member | Type | +| :-------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.uploadName`? | `string` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.uploadName`? | `string` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L445) ##### `coverage?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:459](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L459) +Defined in: [lib/types.ts:459](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L459) ##### `datePublished?` > `string` -Defined in: [lib/types.ts:460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L460) +Defined in: [lib/types.ts:460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L460) ##### `disciplines?` @@ -4116,19 +4116,19 @@ Defined in: [lib/types.ts:460](https://github.com/TrialAndErrorOrg/parsers/blob Optional metadata that describes the submission's types of study or branches of knowledge. -Defined in: [lib/types.ts:462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L462) +Defined in: [lib/types.ts:462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L462) ##### `fullTitle?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L463) +Defined in: [lib/types.ts:463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L463) ##### `galleys?` > [`Galley`](modules.md#galley)[] -Defined in: [lib/types.ts:464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L464) +Defined in: [lib/types.ts:464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L464) ##### `hideAuthor?` @@ -4142,19 +4142,19 @@ Whether the contributor details should be displayed for this publication. Common false -Defined in: [lib/types.ts:469](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L469) +Defined in: [lib/types.ts:469](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L469) ##### `id?` > `number` -Defined in: [lib/types.ts:470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L470) +Defined in: [lib/types.ts:470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L470) ##### `issueId?` > `number` -Defined in: [lib/types.ts:471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L471) +Defined in: [lib/types.ts:471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L471) ##### `keywords?` @@ -4164,7 +4164,7 @@ Defined in: [lib/types.ts:471](https://github.com/TrialAndErrorOrg/parsers/blob Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. -Defined in: [lib/types.ts:473](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L473) +Defined in: [lib/types.ts:473](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L473) ##### `languages?` @@ -4174,13 +4174,13 @@ Defined in: [lib/types.ts:473](https://github.com/TrialAndErrorOrg/parsers/blob Optional metadata that identifies the submission's primary language. -Defined in: [lib/types.ts:475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L475) +Defined in: [lib/types.ts:475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L475) ##### `lastModified?` > `string` -Defined in: [lib/types.ts:476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L476) +Defined in: [lib/types.ts:476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L476) ##### `licenseUrl?` @@ -4190,7 +4190,7 @@ Defined in: [lib/types.ts:476](https://github.com/TrialAndErrorOrg/parsers/blob A URL to a webpage describing the license terms for this publication. -Defined in: [lib/types.ts:478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L478) +Defined in: [lib/types.ts:478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L478) ##### `locale?` @@ -4200,7 +4200,7 @@ Defined in: [lib/types.ts:478](https://github.com/TrialAndErrorOrg/parsers/blob The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. -Defined in: [lib/types.ts:480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L480) +Defined in: [lib/types.ts:480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L480) ##### `pages?` @@ -4210,13 +4210,13 @@ Defined in: [lib/types.ts:480](https://github.com/TrialAndErrorOrg/parsers/blob The pages of the issue in which this article appears if it is published in a physical format. -Defined in: [lib/types.ts:482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L482) +Defined in: [lib/types.ts:482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L482) ##### `prefix?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:483](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L483) +Defined in: [lib/types.ts:483](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L483) ##### `primaryContactId?` @@ -4226,7 +4226,7 @@ Defined in: [lib/types.ts:483](https://github.com/TrialAndErrorOrg/parsers/blob Which `contributor` is the primary contact for this publication. -Defined in: [lib/types.ts:485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L485) +Defined in: [lib/types.ts:485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L485) ##### `pub-id::publisher-id?` @@ -4236,19 +4236,19 @@ Defined in: [lib/types.ts:485](https://github.com/TrialAndErrorOrg/parsers/blob A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. -Defined in: [lib/types.ts:487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L487) +Defined in: [lib/types.ts:487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L487) ##### `rights?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L488) +Defined in: [lib/types.ts:488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L488) ##### `sectionId?` > `number` -Defined in: [lib/types.ts:489](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L489) +Defined in: [lib/types.ts:489](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L489) ##### `seq?` @@ -4258,13 +4258,13 @@ Defined in: [lib/types.ts:489](https://github.com/TrialAndErrorOrg/parsers/blob 0 -Defined in: [lib/types.ts:491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L491) +Defined in: [lib/types.ts:491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L491) ##### `source?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L492) +Defined in: [lib/types.ts:492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L492) ##### `status?` @@ -4278,7 +4278,7 @@ Whether the publication is Queued (not yet scheduled for publication), Declined, 1 -Defined in: [lib/types.ts:497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L497) +Defined in: [lib/types.ts:497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L497) ##### `subjects?` @@ -4288,19 +4288,19 @@ Defined in: [lib/types.ts:497](https://github.com/TrialAndErrorOrg/parsers/blob Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. -Defined in: [lib/types.ts:499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L499) +Defined in: [lib/types.ts:499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L499) ##### `submissionId?` > `number` -Defined in: [lib/types.ts:500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L500) +Defined in: [lib/types.ts:500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L500) ##### `subtitle?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L501) +Defined in: [lib/types.ts:501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L501) ##### `supportingAgencies?` @@ -4310,19 +4310,19 @@ Defined in: [lib/types.ts:501](https://github.com/TrialAndErrorOrg/parsers/blob Optional metadata that indicates the source of research funding or other institutional support. -Defined in: [lib/types.ts:503](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L503) +Defined in: [lib/types.ts:503](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L503) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L504) +Defined in: [lib/types.ts:504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L504) ##### `type?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L505) +Defined in: [lib/types.ts:505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L505) ##### `urlPath?` @@ -4332,7 +4332,7 @@ Defined in: [lib/types.ts:505](https://github.com/TrialAndErrorOrg/parsers/blob An optional path to use in the URL instead of the ID. -Defined in: [lib/types.ts:507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L507) +Defined in: [lib/types.ts:507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L507) ##### `urlPublished?` @@ -4342,7 +4342,7 @@ Defined in: [lib/types.ts:507](https://github.com/TrialAndErrorOrg/parsers/blob The public URL for this publication or where it will be available if it has not yet been published. -Defined in: [lib/types.ts:509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L509) +Defined in: [lib/types.ts:509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L509) ##### `version?` @@ -4352,9 +4352,9 @@ Defined in: [lib/types.ts:509](https://github.com/TrialAndErrorOrg/parsers/blob The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. -Defined in: [lib/types.ts:511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L511) +Defined in: [lib/types.ts:511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L511) -*** +--- ### `PublicationEditable` @@ -4364,7 +4364,7 @@ Defined in: [lib/types.ts:511](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1269) +Defined in: [lib/types.ts:1269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1269) ##### `accessStatus?` @@ -4374,13 +4374,13 @@ Defined in: [lib/types.ts:1269](https://github.com/TrialAndErrorOrg/parsers/blo 0 -Defined in: [lib/types.ts:1271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1271) +Defined in: [lib/types.ts:1271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1271) ##### `categoryIds?` > `number`[] -Defined in: [lib/types.ts:1272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1272) +Defined in: [lib/types.ts:1272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1272) ##### `citationsRaw?` @@ -4390,13 +4390,13 @@ Defined in: [lib/types.ts:1272](https://github.com/TrialAndErrorOrg/parsers/blo Optional metadata that contains references for works cited in this submission as raw text. -Defined in: [lib/types.ts:1274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1274) +Defined in: [lib/types.ts:1274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1274) ##### `copyrightHolder?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1275) +Defined in: [lib/types.ts:1275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1275) ##### `copyrightYear?` @@ -4406,7 +4406,7 @@ Defined in: [lib/types.ts:1275](https://github.com/TrialAndErrorOrg/parsers/blo The copyright year for this publication. -Defined in: [lib/types.ts:1277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1277) +Defined in: [lib/types.ts:1277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1277) ##### `coverImage?` @@ -4433,34 +4433,34 @@ Defined in: [lib/types.ts:1277](https://github.com/TrialAndErrorOrg/parsers/blo ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.temporaryFileId`? | `number` | -| `en_US.uploadName`? | `string` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.temporaryFileId`? | `number` | -| `fr_CA.uploadName`? | `string` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:1278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1278) +| Member | Type | +| :----------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.temporaryFileId`? | `number` | +| `en_US.uploadName`? | `string` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.temporaryFileId`? | `number` | +| `fr_CA.uploadName`? | `string` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:1278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1278) ##### `coverage?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1294) +Defined in: [lib/types.ts:1294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1294) ##### `datePublished?` > `string` -Defined in: [lib/types.ts:1295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1295) +Defined in: [lib/types.ts:1295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1295) ##### `disciplines?` @@ -4470,7 +4470,7 @@ Defined in: [lib/types.ts:1295](https://github.com/TrialAndErrorOrg/parsers/blo Optional metadata that describes the submission's types of study or branches of knowledge. -Defined in: [lib/types.ts:1297](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1297) +Defined in: [lib/types.ts:1297](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1297) ##### `hideAuthor?` @@ -4484,13 +4484,13 @@ Whether the contributor details should be displayed for this publication. Common false -Defined in: [lib/types.ts:1302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1302) +Defined in: [lib/types.ts:1302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1302) ##### `issueId?` > `number` -Defined in: [lib/types.ts:1303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1303) +Defined in: [lib/types.ts:1303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1303) ##### `keywords?` @@ -4500,7 +4500,7 @@ Defined in: [lib/types.ts:1303](https://github.com/TrialAndErrorOrg/parsers/blo Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. -Defined in: [lib/types.ts:1305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1305) +Defined in: [lib/types.ts:1305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1305) ##### `languages?` @@ -4510,13 +4510,13 @@ Defined in: [lib/types.ts:1305](https://github.com/TrialAndErrorOrg/parsers/blo Optional metadata that identifies the submission's primary language. -Defined in: [lib/types.ts:1307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1307) +Defined in: [lib/types.ts:1307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1307) ##### `lastModified?` > `string` -Defined in: [lib/types.ts:1308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1308) +Defined in: [lib/types.ts:1308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1308) ##### `licenseUrl?` @@ -4526,7 +4526,7 @@ Defined in: [lib/types.ts:1308](https://github.com/TrialAndErrorOrg/parsers/blo A URL to a webpage describing the license terms for this publication. -Defined in: [lib/types.ts:1310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1310) +Defined in: [lib/types.ts:1310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1310) ##### `pages?` @@ -4536,13 +4536,13 @@ Defined in: [lib/types.ts:1310](https://github.com/TrialAndErrorOrg/parsers/blo The pages of the issue in which this article appears if it is published in a physical format. -Defined in: [lib/types.ts:1312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1312) +Defined in: [lib/types.ts:1312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1312) ##### `prefix?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1313) +Defined in: [lib/types.ts:1313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1313) ##### `primaryContactId?` @@ -4552,7 +4552,7 @@ Defined in: [lib/types.ts:1313](https://github.com/TrialAndErrorOrg/parsers/blo Which `contributor` is the primary contact for this publication. -Defined in: [lib/types.ts:1315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1315) +Defined in: [lib/types.ts:1315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1315) ##### `pub-id::publisher-id?` @@ -4562,19 +4562,19 @@ Defined in: [lib/types.ts:1315](https://github.com/TrialAndErrorOrg/parsers/blo A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. -Defined in: [lib/types.ts:1317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1317) +Defined in: [lib/types.ts:1317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1317) ##### `rights?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1318) +Defined in: [lib/types.ts:1318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1318) ##### `sectionId?` > `number` -Defined in: [lib/types.ts:1319](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1319) +Defined in: [lib/types.ts:1319](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1319) ##### `seq?` @@ -4584,13 +4584,13 @@ Defined in: [lib/types.ts:1319](https://github.com/TrialAndErrorOrg/parsers/blo 0 -Defined in: [lib/types.ts:1321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1321) +Defined in: [lib/types.ts:1321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1321) ##### `source?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1322) +Defined in: [lib/types.ts:1322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1322) ##### `status?` @@ -4604,7 +4604,7 @@ Whether the publication is Queued (not yet scheduled for publication), Declined, 1 -Defined in: [lib/types.ts:1327](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1327) +Defined in: [lib/types.ts:1327](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1327) ##### `subjects?` @@ -4614,19 +4614,19 @@ Defined in: [lib/types.ts:1327](https://github.com/TrialAndErrorOrg/parsers/blo Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. -Defined in: [lib/types.ts:1329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1329) +Defined in: [lib/types.ts:1329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1329) ##### `submissionId?` > `number` -Defined in: [lib/types.ts:1330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1330) +Defined in: [lib/types.ts:1330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1330) ##### `subtitle?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1331) +Defined in: [lib/types.ts:1331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1331) ##### `supportingAgencies?` @@ -4636,19 +4636,19 @@ Defined in: [lib/types.ts:1331](https://github.com/TrialAndErrorOrg/parsers/blo Optional metadata that indicates the source of research funding or other institutional support. -Defined in: [lib/types.ts:1333](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1333) +Defined in: [lib/types.ts:1333](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1333) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1334) +Defined in: [lib/types.ts:1334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1334) ##### `type?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1335) +Defined in: [lib/types.ts:1335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1335) ##### `urlPath?` @@ -4658,7 +4658,7 @@ Defined in: [lib/types.ts:1335](https://github.com/TrialAndErrorOrg/parsers/blo An optional path to use in the URL instead of the ID. -Defined in: [lib/types.ts:1337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1337) +Defined in: [lib/types.ts:1337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1337) ##### `version?` @@ -4668,9 +4668,9 @@ Defined in: [lib/types.ts:1337](https://github.com/TrialAndErrorOrg/parsers/blo The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. -Defined in: [lib/types.ts:1339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1339) +Defined in: [lib/types.ts:1339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1339) -*** +--- ### `PublicationStats` @@ -4684,31 +4684,31 @@ The total abstract and galley views for a published submission. > `number` -Defined in: [lib/types.ts:515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L515) +Defined in: [lib/types.ts:515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L515) ##### `galleyViews?` > `number` -Defined in: [lib/types.ts:516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L516) +Defined in: [lib/types.ts:516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L516) ##### `htmlViews?` > `number` -Defined in: [lib/types.ts:518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L518) +Defined in: [lib/types.ts:518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L518) ##### `otherViews?` > `number` -Defined in: [lib/types.ts:519](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L519) +Defined in: [lib/types.ts:519](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L519) ##### `pdfViews?` > `number` -Defined in: [lib/types.ts:517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L517) +Defined in: [lib/types.ts:517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L517) ##### `publication?` @@ -4727,18 +4727,18 @@ Defined in: [lib/types.ts:517](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | -| `_href`? | `string` | -| `fullTitle`? | [`LocaleObject`](modules.md#localeobject) | -| `id`? | `number` | -| `shortAuthorString`? | `string` | -| `urlPublished`? | `string` | -| `urlWorkflow`? | `string` | +| Member | Type | +| :------------------- | :---------------------------------------- | +| `_href`? | `string` | +| `fullTitle`? | [`LocaleObject`](modules.md#localeobject) | +| `id`? | `number` | +| `shortAuthorString`? | `string` | +| `urlPublished`? | `string` | +| `urlWorkflow`? | `string` | -Defined in: [lib/types.ts:520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L520) +Defined in: [lib/types.ts:520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L520) -*** +--- ### `PublicationSummary` @@ -4750,7 +4750,7 @@ Defined in: [lib/types.ts:520](https://github.com/TrialAndErrorOrg/parsers/blob Format: uri -Defined in: [lib/types.ts:1343](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1343) +Defined in: [lib/types.ts:1343](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1343) ##### `authorsString?` @@ -4760,7 +4760,7 @@ Defined in: [lib/types.ts:1343](https://github.com/TrialAndErrorOrg/parsers/blo All of the authors rendered with the appropriate separators according to the locale. -Defined in: [lib/types.ts:1345](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1345) +Defined in: [lib/types.ts:1345](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1345) ##### `authorsStringShort?` @@ -4770,13 +4770,13 @@ Defined in: [lib/types.ts:1345](https://github.com/TrialAndErrorOrg/parsers/blo A shortened version of the authors rendered with the appropriate separators according to the locale. -Defined in: [lib/types.ts:1347](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1347) +Defined in: [lib/types.ts:1347](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1347) ##### `categoryIds?` > `number`[] -Defined in: [lib/types.ts:1348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1348) +Defined in: [lib/types.ts:1348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1348) ##### `coverImage?` @@ -4795,38 +4795,38 @@ Defined in: [lib/types.ts:1348](https://github.com/TrialAndErrorOrg/parsers/blo ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | { } | -| `fr_CA`? | { } | +| Member | Type | +| :------------ | :-------- | +| `en_US`? | { } | +| `fr_CA`? | { } | | `properties`? | `unknown` | -| `type`? | `unknown` | +| `type`? | `unknown` | -Defined in: [lib/types.ts:1349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1349) +Defined in: [lib/types.ts:1349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1349) ##### `datePublished?` > `string` -Defined in: [lib/types.ts:1355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1355) +Defined in: [lib/types.ts:1355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1355) ##### `fullTitle?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1356) +Defined in: [lib/types.ts:1356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1356) ##### `galleys?` > [`Galley`](modules.md#galley)[] -Defined in: [lib/types.ts:1357](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1357) +Defined in: [lib/types.ts:1357](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1357) ##### `id?` > `number` -Defined in: [lib/types.ts:1358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1358) +Defined in: [lib/types.ts:1358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1358) ##### `locale?` @@ -4836,7 +4836,7 @@ Defined in: [lib/types.ts:1358](https://github.com/TrialAndErrorOrg/parsers/blo The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. -Defined in: [lib/types.ts:1360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1360) +Defined in: [lib/types.ts:1360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1360) ##### `pages?` @@ -4846,13 +4846,13 @@ Defined in: [lib/types.ts:1360](https://github.com/TrialAndErrorOrg/parsers/blo The pages of the issue in which this article appears if it is published in a physical format. -Defined in: [lib/types.ts:1362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1362) +Defined in: [lib/types.ts:1362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1362) ##### `prefix?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1363) +Defined in: [lib/types.ts:1363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1363) ##### `primaryContactId?` @@ -4862,7 +4862,7 @@ Defined in: [lib/types.ts:1363](https://github.com/TrialAndErrorOrg/parsers/blo Which `contributor` is the primary contact for this publication. -Defined in: [lib/types.ts:1365](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1365) +Defined in: [lib/types.ts:1365](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1365) ##### `pub-id::publisher-id?` @@ -4872,13 +4872,13 @@ Defined in: [lib/types.ts:1365](https://github.com/TrialAndErrorOrg/parsers/blo A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. -Defined in: [lib/types.ts:1367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1367) +Defined in: [lib/types.ts:1367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1367) ##### `sectionId?` > `number` -Defined in: [lib/types.ts:1368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1368) +Defined in: [lib/types.ts:1368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1368) ##### `status?` @@ -4892,25 +4892,25 @@ Whether the publication is Queued (not yet scheduled for publication), Declined, 1 -Defined in: [lib/types.ts:1373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1373) +Defined in: [lib/types.ts:1373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1373) ##### `submissionId?` > `number` -Defined in: [lib/types.ts:1374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1374) +Defined in: [lib/types.ts:1374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1374) ##### `subtitle?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1375) +Defined in: [lib/types.ts:1375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1375) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1376](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1376) +Defined in: [lib/types.ts:1376](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1376) ##### `urlPublished?` @@ -4920,7 +4920,7 @@ Defined in: [lib/types.ts:1376](https://github.com/TrialAndErrorOrg/parsers/blo The public URL for this publication or where it will be available if it has not yet been published. -Defined in: [lib/types.ts:1378](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1378) +Defined in: [lib/types.ts:1378](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1378) ##### `version?` @@ -4930,9 +4930,9 @@ Defined in: [lib/types.ts:1378](https://github.com/TrialAndErrorOrg/parsers/blo The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. -Defined in: [lib/types.ts:1380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1380) +Defined in: [lib/types.ts:1380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1380) -*** +--- ### `ReviewRound` @@ -4942,33 +4942,33 @@ Defined in: [lib/types.ts:1380](https://github.com/TrialAndErrorOrg/parsers/blo > `number` -Defined in: [lib/types.ts:530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L530) +Defined in: [lib/types.ts:530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L530) ##### `round?` > `number` -Defined in: [lib/types.ts:531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L531) +Defined in: [lib/types.ts:531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L531) ##### `stageId?` > `number` -Defined in: [lib/types.ts:532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L532) +Defined in: [lib/types.ts:532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L532) ##### `status?` > `string` -Defined in: [lib/types.ts:533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L533) +Defined in: [lib/types.ts:533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L533) ##### `statusId?` > `number` -Defined in: [lib/types.ts:534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L534) +Defined in: [lib/types.ts:534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L534) -*** +--- ### `ReviewRoundEditable` @@ -4978,27 +4978,27 @@ Defined in: [lib/types.ts:534](https://github.com/TrialAndErrorOrg/parsers/blob > `number` -Defined in: [lib/types.ts:1383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1383) +Defined in: [lib/types.ts:1383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1383) ##### `round?` > `number` -Defined in: [lib/types.ts:1384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1384) +Defined in: [lib/types.ts:1384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1384) ##### `stageId?` > `number` -Defined in: [lib/types.ts:1385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1385) +Defined in: [lib/types.ts:1385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1385) ##### `statusId?` > `number` -Defined in: [lib/types.ts:1386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1386) +Defined in: [lib/types.ts:1386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1386) -*** +--- ### `ReviewerSummary` @@ -5012,93 +5012,93 @@ A special representation of a User assigned to a reviewer group. This model pres > `string` -Defined in: [lib/types.ts:538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L538) +Defined in: [lib/types.ts:538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L538) ##### `affiliation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L539) +Defined in: [lib/types.ts:539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L539) ##### `averageReviewCompletionDays?` > `number` -Defined in: [lib/types.ts:540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L540) +Defined in: [lib/types.ts:540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L540) ##### `dateLastReviewAssignment?` > `string` -Defined in: [lib/types.ts:541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L541) +Defined in: [lib/types.ts:541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L541) ##### `disabled?` > `boolean` -Defined in: [lib/types.ts:542](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L542) +Defined in: [lib/types.ts:542](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L542) ##### `fullName?` > `string` -Defined in: [lib/types.ts:543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L543) +Defined in: [lib/types.ts:543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L543) ##### `gossip?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:544](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L544) +Defined in: [lib/types.ts:544](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L544) ##### `groups?` > [`UserGroup`](modules.md#usergroup)[] -Defined in: [lib/types.ts:545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L545) +Defined in: [lib/types.ts:545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L545) ##### `id?` > `number` -Defined in: [lib/types.ts:546](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L546) +Defined in: [lib/types.ts:546](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L546) ##### `interests?` > [`UserInterest`](modules.md#userinterest)[] -Defined in: [lib/types.ts:547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L547) +Defined in: [lib/types.ts:547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L547) ##### `reviewsActive?` > `number` -Defined in: [lib/types.ts:548](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L548) +Defined in: [lib/types.ts:548](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L548) ##### `reviewsCancelled?` > `number` -Defined in: [lib/types.ts:550](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L550) +Defined in: [lib/types.ts:550](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L550) ##### `reviewsCompleted?` > `number` -Defined in: [lib/types.ts:549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L549) +Defined in: [lib/types.ts:549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L549) ##### `reviewsDeclined?` > `number` -Defined in: [lib/types.ts:551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L551) +Defined in: [lib/types.ts:551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L551) ##### `userName?` > `string` -Defined in: [lib/types.ts:552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L552) +Defined in: [lib/types.ts:552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L552) -*** +--- ### `Section` @@ -5108,27 +5108,27 @@ Defined in: [lib/types.ts:552](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L555) +Defined in: [lib/types.ts:555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L555) ##### `id?` > `number` -Defined in: [lib/types.ts:556](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L556) +Defined in: [lib/types.ts:556](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L556) ##### `seq?` > `number` -Defined in: [lib/types.ts:557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L557) +Defined in: [lib/types.ts:557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L557) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L558) +Defined in: [lib/types.ts:558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L558) -*** +--- ### `SectionEditable` @@ -5138,27 +5138,27 @@ Defined in: [lib/types.ts:558](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1389) +Defined in: [lib/types.ts:1389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1389) ##### `id?` > `number` -Defined in: [lib/types.ts:1390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1390) +Defined in: [lib/types.ts:1390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1390) ##### `seq?` > `number` -Defined in: [lib/types.ts:1391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1391) +Defined in: [lib/types.ts:1391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1391) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1392) +Defined in: [lib/types.ts:1392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1392) -*** +--- ### `SectionSummary` @@ -5168,27 +5168,27 @@ Defined in: [lib/types.ts:1392](https://github.com/TrialAndErrorOrg/parsers/blo > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1395) +Defined in: [lib/types.ts:1395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1395) ##### `id?` > `number` -Defined in: [lib/types.ts:1396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1396) +Defined in: [lib/types.ts:1396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1396) ##### `seq?` > `number` -Defined in: [lib/types.ts:1397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1397) +Defined in: [lib/types.ts:1397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1397) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1398) +Defined in: [lib/types.ts:1398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1398) -*** +--- ### `Site` @@ -5198,19 +5198,19 @@ Defined in: [lib/types.ts:1398](https://github.com/TrialAndErrorOrg/parsers/blo > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L561) +Defined in: [lib/types.ts:561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L561) ##### `contactEmail?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L562) +Defined in: [lib/types.ts:562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L562) ##### `contactName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L563) +Defined in: [lib/types.ts:563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L563) ##### `enableBulkEmails?` @@ -5220,25 +5220,25 @@ Defined in: [lib/types.ts:563](https://github.com/TrialAndErrorOrg/parsers/blob Which hosted journals, presses or preprint servers are allowed to send bulk emails. -Defined in: [lib/types.ts:565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L565) +Defined in: [lib/types.ts:565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L565) ##### `installedLocales?` > `string`[] -Defined in: [lib/types.ts:566](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L566) +Defined in: [lib/types.ts:566](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L566) ##### `minPasswordLength?` > `number` -Defined in: [lib/types.ts:567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L567) +Defined in: [lib/types.ts:567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L567) ##### `pageFooter?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:568](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L568) +Defined in: [lib/types.ts:568](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L568) ##### `pageHeaderTitleImage?` @@ -5269,50 +5269,50 @@ Defined in: [lib/types.ts:568](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.height`? | `number` | -| `en_US.name`? | `string` | -| `en_US.uploadName`? | `string` | -| `en_US.width`? | `number` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.height`? | `number` | -| `fr_CA.name`? | `string` | -| `fr_CA.uploadName`? | `string` | -| `fr_CA.width`? | `number` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L569) +| Member | Type | +| :-------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.height`? | `number` | +| `en_US.name`? | `string` | +| `en_US.uploadName`? | `string` | +| `en_US.width`? | `number` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.height`? | `number` | +| `fr_CA.name`? | `string` | +| `fr_CA.uploadName`? | `string` | +| `fr_CA.width`? | `number` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L569) ##### `primaryLocale?` > `string` -Defined in: [lib/types.ts:589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L589) +Defined in: [lib/types.ts:589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L589) ##### `privacyStatement?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L590) +Defined in: [lib/types.ts:590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L590) ##### `redirect?` > `number` -Defined in: [lib/types.ts:591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L591) +Defined in: [lib/types.ts:591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L591) ##### `sidebar?` > `string`[] -Defined in: [lib/types.ts:592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L592) +Defined in: [lib/types.ts:592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L592) ##### `styleSheet?` @@ -5328,19 +5328,19 @@ Defined in: [lib/types.ts:592](https://github.com/TrialAndErrorOrg/parsers/blob ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------- | :------- | | `dateUploaded`? | `string` | -| `name`? | `string` | -| `uploadName`? | `string` | +| `name`? | `string` | +| `uploadName`? | `string` | -Defined in: [lib/types.ts:593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L593) +Defined in: [lib/types.ts:593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L593) ##### `supportedLocales?` > `string`[] -Defined in: [lib/types.ts:598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L598) +Defined in: [lib/types.ts:598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L598) ##### `themePluginPath?` @@ -5350,15 +5350,15 @@ Defined in: [lib/types.ts:598](https://github.com/TrialAndErrorOrg/parsers/blob default -Defined in: [lib/types.ts:600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L600) +Defined in: [lib/types.ts:600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L600) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L601) +Defined in: [lib/types.ts:601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L601) -*** +--- ### `SiteEditable` @@ -5368,19 +5368,19 @@ Defined in: [lib/types.ts:601](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1401) +Defined in: [lib/types.ts:1401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1401) ##### `contactEmail?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1402) +Defined in: [lib/types.ts:1402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1402) ##### `contactName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1403) +Defined in: [lib/types.ts:1403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1403) ##### `enableBulkEmails?` @@ -5390,25 +5390,25 @@ Defined in: [lib/types.ts:1403](https://github.com/TrialAndErrorOrg/parsers/blo Which hosted journals, presses or preprint servers are allowed to send bulk emails. -Defined in: [lib/types.ts:1405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1405) +Defined in: [lib/types.ts:1405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1405) ##### `installedLocales?` > `string`[] -Defined in: [lib/types.ts:1406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1406) +Defined in: [lib/types.ts:1406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1406) ##### `minPasswordLength?` > `number` -Defined in: [lib/types.ts:1407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1407) +Defined in: [lib/types.ts:1407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1407) ##### `pageFooter?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1408) +Defined in: [lib/types.ts:1408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1408) ##### `pageHeaderTitleImage?` @@ -5441,52 +5441,52 @@ Defined in: [lib/types.ts:1408](https://github.com/TrialAndErrorOrg/parsers/blo ###### Type declaration -| Member | Type | -| :------ | :------ | -| `en_US`? | `object` | -| `en_US.altText`? | `string` | -| `en_US.dateUploaded`? | `string` | -| `en_US.height`? | `number` | -| `en_US.name`? | `string` | -| `en_US.temporaryFileId`? | `number` | -| `en_US.uploadName`? | `string` | -| `en_US.width`? | `number` | -| `fr_CA`? | `object` | -| `fr_CA.altText`? | `string` | -| `fr_CA.dateUploaded`? | `string` | -| `fr_CA.height`? | `number` | -| `fr_CA.name`? | `string` | -| `fr_CA.temporaryFileId`? | `number` | -| `fr_CA.uploadName`? | `string` | -| `fr_CA.width`? | `number` | -| `properties`? | `unknown` | -| `type`? | `unknown` | - -Defined in: [lib/types.ts:1409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1409) +| Member | Type | +| :----------------------- | :-------- | +| `en_US`? | `object` | +| `en_US.altText`? | `string` | +| `en_US.dateUploaded`? | `string` | +| `en_US.height`? | `number` | +| `en_US.name`? | `string` | +| `en_US.temporaryFileId`? | `number` | +| `en_US.uploadName`? | `string` | +| `en_US.width`? | `number` | +| `fr_CA`? | `object` | +| `fr_CA.altText`? | `string` | +| `fr_CA.dateUploaded`? | `string` | +| `fr_CA.height`? | `number` | +| `fr_CA.name`? | `string` | +| `fr_CA.temporaryFileId`? | `number` | +| `fr_CA.uploadName`? | `string` | +| `fr_CA.width`? | `number` | +| `properties`? | `unknown` | +| `type`? | `unknown` | + +Defined in: [lib/types.ts:1409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1409) ##### `primaryLocale?` > `string` -Defined in: [lib/types.ts:1431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1431) +Defined in: [lib/types.ts:1431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1431) ##### `privacyStatement?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1432) +Defined in: [lib/types.ts:1432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1432) ##### `redirect?` > `number` -Defined in: [lib/types.ts:1433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1433) +Defined in: [lib/types.ts:1433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1433) ##### `sidebar?` > `string`[] -Defined in: [lib/types.ts:1434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1434) +Defined in: [lib/types.ts:1434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1434) ##### `styleSheet?` @@ -5503,20 +5503,20 @@ Defined in: [lib/types.ts:1434](https://github.com/TrialAndErrorOrg/parsers/blo ###### Type declaration -| Member | Type | -| :------ | :------ | -| `dateUploaded`? | `string` | -| `name`? | `string` | +| Member | Type | +| :----------------- | :------- | +| `dateUploaded`? | `string` | +| `name`? | `string` | | `temporaryFileId`? | `number` | -| `uploadName`? | `string` | +| `uploadName`? | `string` | -Defined in: [lib/types.ts:1435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1435) +Defined in: [lib/types.ts:1435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1435) ##### `supportedLocales?` > `string`[] -Defined in: [lib/types.ts:1441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1441) +Defined in: [lib/types.ts:1441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1441) ##### `themePluginPath?` @@ -5526,15 +5526,15 @@ Defined in: [lib/types.ts:1441](https://github.com/TrialAndErrorOrg/parsers/blo default -Defined in: [lib/types.ts:1443](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1443) +Defined in: [lib/types.ts:1443](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1443) ##### `title?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1444) +Defined in: [lib/types.ts:1444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1444) -*** +--- ### `Submission` @@ -5544,13 +5544,13 @@ Defined in: [lib/types.ts:1444](https://github.com/TrialAndErrorOrg/parsers/blo > `string` -Defined in: [lib/types.ts:604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L604) +Defined in: [lib/types.ts:604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L604) ##### `contextId?` > `number` -Defined in: [lib/types.ts:605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L605) +Defined in: [lib/types.ts:605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L605) ##### `currentPublicationId?` @@ -5560,7 +5560,7 @@ Defined in: [lib/types.ts:605](https://github.com/TrialAndErrorOrg/parsers/blob Which publication is the latest published version. -Defined in: [lib/types.ts:607](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L607) +Defined in: [lib/types.ts:607](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L607) ##### `dateLastActivity?` @@ -5570,19 +5570,19 @@ Defined in: [lib/types.ts:607](https://github.com/TrialAndErrorOrg/parsers/blob The last time activity was recorded related to this submission. -Defined in: [lib/types.ts:609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L609) +Defined in: [lib/types.ts:609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L609) ##### `dateSubmitted?` > `string` -Defined in: [lib/types.ts:610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L610) +Defined in: [lib/types.ts:610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L610) ##### `id?` > `number` -Defined in: [lib/types.ts:611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L611) +Defined in: [lib/types.ts:611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L611) ##### `lastModified?` @@ -5592,7 +5592,7 @@ Defined in: [lib/types.ts:611](https://github.com/TrialAndErrorOrg/parsers/blob The last time a modification was made to this submission or any of its associated objects. -Defined in: [lib/types.ts:613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L613) +Defined in: [lib/types.ts:613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L613) ##### `locale?` @@ -5602,7 +5602,7 @@ Defined in: [lib/types.ts:613](https://github.com/TrialAndErrorOrg/parsers/blob The primary language of this submission. -Defined in: [lib/types.ts:615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L615) +Defined in: [lib/types.ts:615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L615) ##### `publications?` @@ -5612,7 +5612,7 @@ Defined in: [lib/types.ts:615](https://github.com/TrialAndErrorOrg/parsers/blob A list of publications that have been created for this submission. -Defined in: [lib/types.ts:617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L617) +Defined in: [lib/types.ts:617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L617) ##### `reviewAssignments?` @@ -5631,7 +5631,7 @@ Defined in: [lib/types.ts:617](https://github.com/TrialAndErrorOrg/parsers/blob Information about pending and completed review assignments. -Defined in: [lib/types.ts:619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L619) +Defined in: [lib/types.ts:619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L619) ##### `reviewRounds?` @@ -5641,7 +5641,7 @@ Defined in: [lib/types.ts:619](https://github.com/TrialAndErrorOrg/parsers/blob A list of review rounds that have been opened for this submission. -Defined in: [lib/types.ts:630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L630) +Defined in: [lib/types.ts:630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L630) ##### `stageId?` @@ -5655,7 +5655,7 @@ The stage of the editorial workflow that this submission is currently in. One of 1 -Defined in: [lib/types.ts:635](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L635) +Defined in: [lib/types.ts:635](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L635) ##### `stages?` @@ -5676,7 +5676,7 @@ Defined in: [lib/types.ts:635](https://github.com/TrialAndErrorOrg/parsers/blob Key data about the status, files and discussions of each stage. -Defined in: [lib/types.ts:637](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L637) +Defined in: [lib/types.ts:637](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L637) ##### `status?` @@ -5690,7 +5690,7 @@ Whether the submission is Published, Declined, Scheduled or Queued (still in the 1 -Defined in: [lib/types.ts:653](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L653) +Defined in: [lib/types.ts:653](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L653) ##### `statusLabel?` @@ -5700,7 +5700,7 @@ Defined in: [lib/types.ts:653](https://github.com/TrialAndErrorOrg/parsers/blob A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. -Defined in: [lib/types.ts:655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L655) +Defined in: [lib/types.ts:655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L655) ##### `submissionProgress?` @@ -5714,7 +5714,7 @@ This number tracks a submission's progress before it is submitted to the journal 1 -Defined in: [lib/types.ts:660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L660) +Defined in: [lib/types.ts:660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L660) ##### `urlAuthorWorkflow?` @@ -5724,7 +5724,7 @@ Defined in: [lib/types.ts:660](https://github.com/TrialAndErrorOrg/parsers/blob A URL to the author's editorial workflow. -Defined in: [lib/types.ts:662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L662) +Defined in: [lib/types.ts:662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L662) ##### `urlEditorialWorkflow?` @@ -5734,7 +5734,7 @@ Defined in: [lib/types.ts:662](https://github.com/TrialAndErrorOrg/parsers/blob A URL to the editors' and assistants' editorial workflow. -Defined in: [lib/types.ts:664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L664) +Defined in: [lib/types.ts:664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L664) ##### `urlPublished?` @@ -5744,7 +5744,7 @@ Defined in: [lib/types.ts:664](https://github.com/TrialAndErrorOrg/parsers/blob A URL to the current publication or where it will be published. -Defined in: [lib/types.ts:666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L666) +Defined in: [lib/types.ts:666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L666) ##### `urlWorkflow?` @@ -5754,9 +5754,9 @@ Defined in: [lib/types.ts:666](https://github.com/TrialAndErrorOrg/parsers/blob A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or \`urlEditorialWorkflow. -Defined in: [lib/types.ts:668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L668) +Defined in: [lib/types.ts:668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L668) -*** +--- ### `SubmissionEditable` @@ -5766,7 +5766,7 @@ Defined in: [lib/types.ts:668](https://github.com/TrialAndErrorOrg/parsers/blob > `number` -Defined in: [lib/types.ts:1447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1447) +Defined in: [lib/types.ts:1447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1447) ##### `currentPublicationId?` @@ -5776,7 +5776,7 @@ Defined in: [lib/types.ts:1447](https://github.com/TrialAndErrorOrg/parsers/blo Which publication is the latest published version. -Defined in: [lib/types.ts:1449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1449) +Defined in: [lib/types.ts:1449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1449) ##### `dateLastActivity?` @@ -5786,19 +5786,19 @@ Defined in: [lib/types.ts:1449](https://github.com/TrialAndErrorOrg/parsers/blo The last time activity was recorded related to this submission. -Defined in: [lib/types.ts:1451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1451) +Defined in: [lib/types.ts:1451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1451) ##### `dateSubmitted?` > `string` -Defined in: [lib/types.ts:1452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1452) +Defined in: [lib/types.ts:1452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1452) ##### `id?` > `number` -Defined in: [lib/types.ts:1453](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1453) +Defined in: [lib/types.ts:1453](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1453) ##### `lastModified?` @@ -5808,7 +5808,7 @@ Defined in: [lib/types.ts:1453](https://github.com/TrialAndErrorOrg/parsers/blo The last time a modification was made to this submission or any of its associated objects. -Defined in: [lib/types.ts:1455](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1455) +Defined in: [lib/types.ts:1455](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1455) ##### `locale?` @@ -5818,7 +5818,7 @@ Defined in: [lib/types.ts:1455](https://github.com/TrialAndErrorOrg/parsers/blo The primary language of this submission. -Defined in: [lib/types.ts:1457](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1457) +Defined in: [lib/types.ts:1457](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1457) ##### `stageId?` @@ -5832,7 +5832,7 @@ The stage of the editorial workflow that this submission is currently in. One of 1 -Defined in: [lib/types.ts:1462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1462) +Defined in: [lib/types.ts:1462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1462) ##### `status?` @@ -5846,7 +5846,7 @@ Whether the submission is Published, Declined, Scheduled or Queued (still in the 1 -Defined in: [lib/types.ts:1467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1467) +Defined in: [lib/types.ts:1467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1467) ##### `submissionProgress?` @@ -5860,9 +5860,9 @@ This number tracks a submission's progress before it is submitted to the journal 1 -Defined in: [lib/types.ts:1472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1472) +Defined in: [lib/types.ts:1472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1472) -*** +--- ### `SubmissionFile` @@ -5874,7 +5874,7 @@ Defined in: [lib/types.ts:1472](https://github.com/TrialAndErrorOrg/parsers/blo Format: uri -Defined in: [lib/types.ts:672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L672) +Defined in: [lib/types.ts:672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L672) ##### `assocId?` @@ -5884,7 +5884,7 @@ Defined in: [lib/types.ts:672](https://github.com/TrialAndErrorOrg/parsers/blob Used with `assocType` to associate this file with an object such as a galley. -Defined in: [lib/types.ts:674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L674) +Defined in: [lib/types.ts:674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L674) ##### `assocType?` @@ -5894,7 +5894,7 @@ Defined in: [lib/types.ts:674](https://github.com/TrialAndErrorOrg/parsers/blob Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). -Defined in: [lib/types.ts:676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L676) +Defined in: [lib/types.ts:676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L676) ##### `caption?` @@ -5904,7 +5904,7 @@ Defined in: [lib/types.ts:676](https://github.com/TrialAndErrorOrg/parsers/blob A caption for this file. Used with artwork such as images. -Defined in: [lib/types.ts:678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L678) +Defined in: [lib/types.ts:678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L678) ##### `copyrightOwner?` @@ -5914,7 +5914,7 @@ Defined in: [lib/types.ts:678](https://github.com/TrialAndErrorOrg/parsers/blob The copyright owner of this file. Used with artwork such as images. -Defined in: [lib/types.ts:680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L680) +Defined in: [lib/types.ts:680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L680) ##### `createdAt?` @@ -5924,13 +5924,13 @@ Defined in: [lib/types.ts:680](https://github.com/TrialAndErrorOrg/parsers/blob The date this submission file object was created in the system. Set automatically by the software. -Defined in: [lib/types.ts:682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L682) +Defined in: [lib/types.ts:682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L682) ##### `creator?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:683](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L683) +Defined in: [lib/types.ts:683](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L683) ##### `credit?` @@ -5940,7 +5940,7 @@ Defined in: [lib/types.ts:683](https://github.com/TrialAndErrorOrg/parsers/blob An attribution for this file, such as a photographer's name. Used with artwork such as images. -Defined in: [lib/types.ts:685](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L685) +Defined in: [lib/types.ts:685](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L685) ##### `dateCreated?` @@ -5950,7 +5950,7 @@ Defined in: [lib/types.ts:685](https://github.com/TrialAndErrorOrg/parsers/blob Public metadata about when this content was created. Used with supplementary files. -Defined in: [lib/types.ts:687](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L687) +Defined in: [lib/types.ts:687](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L687) ##### `dependentFiles?` @@ -5960,43 +5960,43 @@ Defined in: [lib/types.ts:687](https://github.com/TrialAndErrorOrg/parsers/blob Any dependent files, typically images or audio files that are loaded by an HTML file. -Defined in: [lib/types.ts:689](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L689) +Defined in: [lib/types.ts:689](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L689) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L690) +Defined in: [lib/types.ts:690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L690) ##### `documentType?` > `string` -Defined in: [lib/types.ts:691](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L691) +Defined in: [lib/types.ts:691](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L691) ##### `fileId?` > `number` -Defined in: [lib/types.ts:692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L692) +Defined in: [lib/types.ts:692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L692) ##### `fileStage?` > `number` -Defined in: [lib/types.ts:693](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L693) +Defined in: [lib/types.ts:693](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L693) ##### `genreId?` > `number` -Defined in: [lib/types.ts:694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L694) +Defined in: [lib/types.ts:694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L694) ##### `id?` > `number` -Defined in: [lib/types.ts:695](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L695) +Defined in: [lib/types.ts:695](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L695) ##### `language?` @@ -6006,7 +6006,7 @@ Defined in: [lib/types.ts:695](https://github.com/TrialAndErrorOrg/parsers/blob The language of this file if it contains text. Used with supplementary files. -Defined in: [lib/types.ts:697](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L697) +Defined in: [lib/types.ts:697](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L697) ##### `locale?` @@ -6016,31 +6016,31 @@ Defined in: [lib/types.ts:697](https://github.com/TrialAndErrorOrg/parsers/blob The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. -Defined in: [lib/types.ts:699](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L699) +Defined in: [lib/types.ts:699](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L699) ##### `mimetype?` > `string` -Defined in: [lib/types.ts:700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L700) +Defined in: [lib/types.ts:700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L700) ##### `name?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:701](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L701) +Defined in: [lib/types.ts:701](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L701) ##### `path?` > `string` -Defined in: [lib/types.ts:702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L702) +Defined in: [lib/types.ts:702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L702) ##### `publisher?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:703](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L703) +Defined in: [lib/types.ts:703](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L703) ##### `revisions?` @@ -6056,13 +6056,13 @@ Defined in: [lib/types.ts:703](https://github.com/TrialAndErrorOrg/parsers/blob Previous versions of this file. -Defined in: [lib/types.ts:705](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L705) +Defined in: [lib/types.ts:705](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L705) ##### `source?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L712) +Defined in: [lib/types.ts:712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L712) ##### `sourceSubmissionFileId?` @@ -6072,25 +6072,25 @@ Defined in: [lib/types.ts:712](https://github.com/TrialAndErrorOrg/parsers/blob When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. -Defined in: [lib/types.ts:714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L714) +Defined in: [lib/types.ts:714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L714) ##### `sponsor?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:715](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L715) +Defined in: [lib/types.ts:715](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L715) ##### `subject?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L716) +Defined in: [lib/types.ts:716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L716) ##### `submissionId?` > `number` -Defined in: [lib/types.ts:717](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L717) +Defined in: [lib/types.ts:717](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L717) ##### `terms?` @@ -6100,7 +6100,7 @@ Defined in: [lib/types.ts:717](https://github.com/TrialAndErrorOrg/parsers/blob Licensing terms for this file. Used with artwork such as images. -Defined in: [lib/types.ts:719](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L719) +Defined in: [lib/types.ts:719](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L719) ##### `updatedAt?` @@ -6110,27 +6110,27 @@ Defined in: [lib/types.ts:719](https://github.com/TrialAndErrorOrg/parsers/blob When this object was last updated. -Defined in: [lib/types.ts:721](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L721) +Defined in: [lib/types.ts:721](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L721) ##### `uploaderUserId?` > `number` -Defined in: [lib/types.ts:722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L722) +Defined in: [lib/types.ts:722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L722) ##### `url?` > `string` -Defined in: [lib/types.ts:723](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L723) +Defined in: [lib/types.ts:723](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L723) ##### `viewable?` > `boolean` -Defined in: [lib/types.ts:724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L724) +Defined in: [lib/types.ts:724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L724) -*** +--- ### `SubmissionFileEditable` @@ -6144,7 +6144,7 @@ Defined in: [lib/types.ts:724](https://github.com/TrialAndErrorOrg/parsers/blob Used with `assocType` to associate this file with an object such as a galley. -Defined in: [lib/types.ts:1517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1517) +Defined in: [lib/types.ts:1517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1517) ##### `assocType?` @@ -6154,7 +6154,7 @@ Defined in: [lib/types.ts:1517](https://github.com/TrialAndErrorOrg/parsers/blo Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). -Defined in: [lib/types.ts:1519](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1519) +Defined in: [lib/types.ts:1519](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1519) ##### `caption?` @@ -6164,7 +6164,7 @@ Defined in: [lib/types.ts:1519](https://github.com/TrialAndErrorOrg/parsers/blo A caption for this file. Used with artwork such as images. -Defined in: [lib/types.ts:1521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1521) +Defined in: [lib/types.ts:1521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1521) ##### `copyrightOwner?` @@ -6174,7 +6174,7 @@ Defined in: [lib/types.ts:1521](https://github.com/TrialAndErrorOrg/parsers/blo The copyright owner of this file. Used with artwork such as images. -Defined in: [lib/types.ts:1523](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1523) +Defined in: [lib/types.ts:1523](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1523) ##### `createdAt?` @@ -6184,13 +6184,13 @@ Defined in: [lib/types.ts:1523](https://github.com/TrialAndErrorOrg/parsers/blo The date this submission file object was created in the system. Set automatically by the software. -Defined in: [lib/types.ts:1525](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1525) +Defined in: [lib/types.ts:1525](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1525) ##### `creator?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1526) +Defined in: [lib/types.ts:1526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1526) ##### `credit?` @@ -6200,7 +6200,7 @@ Defined in: [lib/types.ts:1526](https://github.com/TrialAndErrorOrg/parsers/blo An attribution for this file, such as a photographer's name. Used with artwork such as images. -Defined in: [lib/types.ts:1528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1528) +Defined in: [lib/types.ts:1528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1528) ##### `dateCreated?` @@ -6210,13 +6210,13 @@ Defined in: [lib/types.ts:1528](https://github.com/TrialAndErrorOrg/parsers/blo Public metadata about when this content was created. Used with supplementary files. -Defined in: [lib/types.ts:1530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1530) +Defined in: [lib/types.ts:1530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1530) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1531) +Defined in: [lib/types.ts:1531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1531) ##### `file?` @@ -6224,25 +6224,25 @@ Defined in: [lib/types.ts:1531](https://github.com/TrialAndErrorOrg/parsers/blo Format: binary -Defined in: [lib/types.ts:1533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1533) +Defined in: [lib/types.ts:1533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1533) ##### `fileId?` > `number` -Defined in: [lib/types.ts:1534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1534) +Defined in: [lib/types.ts:1534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1534) ##### `fileStage?` > `number` -Defined in: [lib/types.ts:1535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1535) +Defined in: [lib/types.ts:1535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1535) ##### `genreId?` > `number` -Defined in: [lib/types.ts:1536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1536) +Defined in: [lib/types.ts:1536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1536) ##### `language?` @@ -6252,25 +6252,25 @@ Defined in: [lib/types.ts:1536](https://github.com/TrialAndErrorOrg/parsers/blo The language of this file if it contains text. Used with supplementary files. -Defined in: [lib/types.ts:1538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1538) +Defined in: [lib/types.ts:1538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1538) ##### `name?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1539) +Defined in: [lib/types.ts:1539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1539) ##### `publisher?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1540) +Defined in: [lib/types.ts:1540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1540) ##### `source?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1541) +Defined in: [lib/types.ts:1541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1541) ##### `sourceSubmissionFileId?` @@ -6280,25 +6280,25 @@ Defined in: [lib/types.ts:1541](https://github.com/TrialAndErrorOrg/parsers/blo When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. -Defined in: [lib/types.ts:1543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1543) +Defined in: [lib/types.ts:1543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1543) ##### `sponsor?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1544](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1544) +Defined in: [lib/types.ts:1544](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1544) ##### `subject?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1545) +Defined in: [lib/types.ts:1545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1545) ##### `submissionId?` > `number` -Defined in: [lib/types.ts:1546](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1546) +Defined in: [lib/types.ts:1546](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1546) ##### `terms?` @@ -6308,7 +6308,7 @@ Defined in: [lib/types.ts:1546](https://github.com/TrialAndErrorOrg/parsers/blo Licensing terms for this file. Used with artwork such as images. -Defined in: [lib/types.ts:1548](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1548) +Defined in: [lib/types.ts:1548](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1548) ##### `updatedAt?` @@ -6318,21 +6318,21 @@ Defined in: [lib/types.ts:1548](https://github.com/TrialAndErrorOrg/parsers/blo When this object was last updated. -Defined in: [lib/types.ts:1550](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1550) +Defined in: [lib/types.ts:1550](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1550) ##### `uploaderUserId?` > `number` -Defined in: [lib/types.ts:1551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1551) +Defined in: [lib/types.ts:1551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1551) ##### `viewable?` > `boolean` -Defined in: [lib/types.ts:1552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1552) +Defined in: [lib/types.ts:1552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1552) -*** +--- ### `SubmissionFileSummary` @@ -6344,7 +6344,7 @@ Defined in: [lib/types.ts:1552](https://github.com/TrialAndErrorOrg/parsers/blo Format: uri -Defined in: [lib/types.ts:1556](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1556) +Defined in: [lib/types.ts:1556](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1556) ##### `assocId?` @@ -6354,7 +6354,7 @@ Defined in: [lib/types.ts:1556](https://github.com/TrialAndErrorOrg/parsers/blo Used with `assocType` to associate this file with an object such as a galley. -Defined in: [lib/types.ts:1558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1558) +Defined in: [lib/types.ts:1558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1558) ##### `assocType?` @@ -6364,7 +6364,7 @@ Defined in: [lib/types.ts:1558](https://github.com/TrialAndErrorOrg/parsers/blo Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). -Defined in: [lib/types.ts:1560](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1560) +Defined in: [lib/types.ts:1560](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1560) ##### `caption?` @@ -6374,7 +6374,7 @@ Defined in: [lib/types.ts:1560](https://github.com/TrialAndErrorOrg/parsers/blo A caption for this file. Used with artwork such as images. -Defined in: [lib/types.ts:1562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1562) +Defined in: [lib/types.ts:1562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1562) ##### `copyrightOwner?` @@ -6384,7 +6384,7 @@ Defined in: [lib/types.ts:1562](https://github.com/TrialAndErrorOrg/parsers/blo The copyright owner of this file. Used with artwork such as images. -Defined in: [lib/types.ts:1564](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1564) +Defined in: [lib/types.ts:1564](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1564) ##### `createdAt?` @@ -6394,13 +6394,13 @@ Defined in: [lib/types.ts:1564](https://github.com/TrialAndErrorOrg/parsers/blo The date this submission file object was created in the system. Set automatically by the software. -Defined in: [lib/types.ts:1566](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1566) +Defined in: [lib/types.ts:1566](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1566) ##### `creator?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1567) +Defined in: [lib/types.ts:1567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1567) ##### `credit?` @@ -6410,7 +6410,7 @@ Defined in: [lib/types.ts:1567](https://github.com/TrialAndErrorOrg/parsers/blo An attribution for this file, such as a photographer's name. Used with artwork such as images. -Defined in: [lib/types.ts:1569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1569) +Defined in: [lib/types.ts:1569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1569) ##### `dateCreated?` @@ -6420,43 +6420,43 @@ Defined in: [lib/types.ts:1569](https://github.com/TrialAndErrorOrg/parsers/blo Public metadata about when this content was created. Used with supplementary files. -Defined in: [lib/types.ts:1571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1571) +Defined in: [lib/types.ts:1571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1571) ##### `description?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1572) +Defined in: [lib/types.ts:1572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1572) ##### `documentType?` > `string` -Defined in: [lib/types.ts:1573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1573) +Defined in: [lib/types.ts:1573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1573) ##### `fileId?` > `number` -Defined in: [lib/types.ts:1574](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1574) +Defined in: [lib/types.ts:1574](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1574) ##### `fileStage?` > `number` -Defined in: [lib/types.ts:1575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1575) +Defined in: [lib/types.ts:1575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1575) ##### `genreId?` > `number` -Defined in: [lib/types.ts:1576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1576) +Defined in: [lib/types.ts:1576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1576) ##### `id?` > `number` -Defined in: [lib/types.ts:1577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1577) +Defined in: [lib/types.ts:1577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1577) ##### `language?` @@ -6466,7 +6466,7 @@ Defined in: [lib/types.ts:1577](https://github.com/TrialAndErrorOrg/parsers/blo The language of this file if it contains text. Used with supplementary files. -Defined in: [lib/types.ts:1579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1579) +Defined in: [lib/types.ts:1579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1579) ##### `locale?` @@ -6476,37 +6476,37 @@ Defined in: [lib/types.ts:1579](https://github.com/TrialAndErrorOrg/parsers/blo The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. -Defined in: [lib/types.ts:1581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1581) +Defined in: [lib/types.ts:1581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1581) ##### `mimetype?` > `string` -Defined in: [lib/types.ts:1582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1582) +Defined in: [lib/types.ts:1582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1582) ##### `name?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1583) +Defined in: [lib/types.ts:1583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1583) ##### `path?` > `string` -Defined in: [lib/types.ts:1584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1584) +Defined in: [lib/types.ts:1584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1584) ##### `publisher?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1585) +Defined in: [lib/types.ts:1585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1585) ##### `source?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1586) +Defined in: [lib/types.ts:1586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1586) ##### `sourceSubmissionFileId?` @@ -6516,25 +6516,25 @@ Defined in: [lib/types.ts:1586](https://github.com/TrialAndErrorOrg/parsers/blo When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. -Defined in: [lib/types.ts:1588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1588) +Defined in: [lib/types.ts:1588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1588) ##### `sponsor?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1589) +Defined in: [lib/types.ts:1589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1589) ##### `subject?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1590) +Defined in: [lib/types.ts:1590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1590) ##### `submissionId?` > `number` -Defined in: [lib/types.ts:1591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1591) +Defined in: [lib/types.ts:1591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1591) ##### `terms?` @@ -6544,7 +6544,7 @@ Defined in: [lib/types.ts:1591](https://github.com/TrialAndErrorOrg/parsers/blo Licensing terms for this file. Used with artwork such as images. -Defined in: [lib/types.ts:1593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1593) +Defined in: [lib/types.ts:1593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1593) ##### `updatedAt?` @@ -6554,27 +6554,27 @@ Defined in: [lib/types.ts:1593](https://github.com/TrialAndErrorOrg/parsers/blo When this object was last updated. -Defined in: [lib/types.ts:1595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1595) +Defined in: [lib/types.ts:1595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1595) ##### `uploaderUserId?` > `number` -Defined in: [lib/types.ts:1596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1596) +Defined in: [lib/types.ts:1596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1596) ##### `url?` > `string` -Defined in: [lib/types.ts:1597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1597) +Defined in: [lib/types.ts:1597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1597) ##### `viewable?` > `boolean` -Defined in: [lib/types.ts:1598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1598) +Defined in: [lib/types.ts:1598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1598) -*** +--- ### `SubmissionSummary` @@ -6584,13 +6584,13 @@ Defined in: [lib/types.ts:1598](https://github.com/TrialAndErrorOrg/parsers/blo > `string` -Defined in: [lib/types.ts:1475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1475) +Defined in: [lib/types.ts:1475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1475) ##### `contextId?` > `number` -Defined in: [lib/types.ts:1476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1476) +Defined in: [lib/types.ts:1476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1476) ##### `currentPublicationId?` @@ -6600,7 +6600,7 @@ Defined in: [lib/types.ts:1476](https://github.com/TrialAndErrorOrg/parsers/blo Which publication is the latest published version. -Defined in: [lib/types.ts:1478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1478) +Defined in: [lib/types.ts:1478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1478) ##### `dateLastActivity?` @@ -6610,19 +6610,19 @@ Defined in: [lib/types.ts:1478](https://github.com/TrialAndErrorOrg/parsers/blo The last time activity was recorded related to this submission. -Defined in: [lib/types.ts:1480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1480) +Defined in: [lib/types.ts:1480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1480) ##### `dateSubmitted?` > `string` -Defined in: [lib/types.ts:1481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1481) +Defined in: [lib/types.ts:1481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1481) ##### `id?` > `number` -Defined in: [lib/types.ts:1482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1482) +Defined in: [lib/types.ts:1482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1482) ##### `lastModified?` @@ -6632,7 +6632,7 @@ Defined in: [lib/types.ts:1482](https://github.com/TrialAndErrorOrg/parsers/blo The last time a modification was made to this submission or any of its associated objects. -Defined in: [lib/types.ts:1484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1484) +Defined in: [lib/types.ts:1484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1484) ##### `locale?` @@ -6642,7 +6642,7 @@ Defined in: [lib/types.ts:1484](https://github.com/TrialAndErrorOrg/parsers/blo The primary language of this submission. -Defined in: [lib/types.ts:1486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1486) +Defined in: [lib/types.ts:1486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1486) ##### `publications?` @@ -6652,7 +6652,7 @@ Defined in: [lib/types.ts:1486](https://github.com/TrialAndErrorOrg/parsers/blo A list of publications that have been created for this submission. -Defined in: [lib/types.ts:1488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1488) +Defined in: [lib/types.ts:1488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1488) ##### `stageId?` @@ -6666,7 +6666,7 @@ The stage of the editorial workflow that this submission is currently in. One of 1 -Defined in: [lib/types.ts:1493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1493) +Defined in: [lib/types.ts:1493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1493) ##### `status?` @@ -6680,7 +6680,7 @@ Whether the submission is Published, Declined, Scheduled or Queued (still in the 1 -Defined in: [lib/types.ts:1498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1498) +Defined in: [lib/types.ts:1498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1498) ##### `statusLabel?` @@ -6690,7 +6690,7 @@ Defined in: [lib/types.ts:1498](https://github.com/TrialAndErrorOrg/parsers/blo A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. -Defined in: [lib/types.ts:1500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1500) +Defined in: [lib/types.ts:1500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1500) ##### `submissionProgress?` @@ -6704,7 +6704,7 @@ This number tracks a submission's progress before it is submitted to the journal 1 -Defined in: [lib/types.ts:1505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1505) +Defined in: [lib/types.ts:1505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1505) ##### `urlAuthorWorkflow?` @@ -6714,7 +6714,7 @@ Defined in: [lib/types.ts:1505](https://github.com/TrialAndErrorOrg/parsers/blo A URL to the author's editorial workflow. -Defined in: [lib/types.ts:1507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1507) +Defined in: [lib/types.ts:1507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1507) ##### `urlEditorialWorkflow?` @@ -6724,7 +6724,7 @@ Defined in: [lib/types.ts:1507](https://github.com/TrialAndErrorOrg/parsers/blo A URL to the editors' and assistants' editorial workflow. -Defined in: [lib/types.ts:1509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1509) +Defined in: [lib/types.ts:1509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1509) ##### `urlPublished?` @@ -6734,7 +6734,7 @@ Defined in: [lib/types.ts:1509](https://github.com/TrialAndErrorOrg/parsers/blo A URL to the current publication or where it will be published. -Defined in: [lib/types.ts:1511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1511) +Defined in: [lib/types.ts:1511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1511) ##### `urlWorkflow?` @@ -6744,9 +6744,9 @@ Defined in: [lib/types.ts:1511](https://github.com/TrialAndErrorOrg/parsers/blo A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or \`urlEditorialWorkflow. -Defined in: [lib/types.ts:1513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1513) +Defined in: [lib/types.ts:1513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1513) -*** +--- ### `ThemeOptions` @@ -6760,15 +6760,15 @@ A theme with values for any of its theme options. The theme is provided in the ` > `string` -Defined in: [lib/types.ts:729](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L729) +Defined in: [lib/types.ts:729](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L729) ##### `themePluginPath?` > `string` -Defined in: [lib/types.ts:728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L728) +Defined in: [lib/types.ts:728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L728) -*** +--- ### `TimelineInterval` @@ -6778,21 +6778,21 @@ Defined in: [lib/types.ts:728](https://github.com/TrialAndErrorOrg/parsers/blob > `string` -Defined in: [lib/types.ts:732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L732) +Defined in: [lib/types.ts:732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L732) ##### `label?` > `string` -Defined in: [lib/types.ts:733](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L733) +Defined in: [lib/types.ts:733](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L733) ##### `value?` > `number` -Defined in: [lib/types.ts:734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L734) +Defined in: [lib/types.ts:734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L734) -*** +--- ### `User` @@ -6802,165 +6802,165 @@ Defined in: [lib/types.ts:734](https://github.com/TrialAndErrorOrg/parsers/blob > `string` -Defined in: [lib/types.ts:737](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L737) +Defined in: [lib/types.ts:737](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L737) ##### `affiliation?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L738) +Defined in: [lib/types.ts:738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L738) ##### `authId?` > `number` -Defined in: [lib/types.ts:739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L739) +Defined in: [lib/types.ts:739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L739) ##### `authString?` > `string` -Defined in: [lib/types.ts:740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L740) +Defined in: [lib/types.ts:740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L740) ##### `billingAddress?` > `string` -Defined in: [lib/types.ts:741](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L741) +Defined in: [lib/types.ts:741](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L741) ##### `biography?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L742) +Defined in: [lib/types.ts:742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L742) ##### `country?` > `string` -Defined in: [lib/types.ts:743](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L743) +Defined in: [lib/types.ts:743](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L743) ##### `dateLastRegistered?` > `string` -Defined in: [lib/types.ts:744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L744) +Defined in: [lib/types.ts:744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L744) ##### `dateRegistered?` > `string` -Defined in: [lib/types.ts:745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L745) +Defined in: [lib/types.ts:745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L745) ##### `dateValidated?` > `string` -Defined in: [lib/types.ts:746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L746) +Defined in: [lib/types.ts:746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L746) ##### `disabled?` > `boolean` -Defined in: [lib/types.ts:747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L747) +Defined in: [lib/types.ts:747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L747) ##### `disabledReason?` > `string` -Defined in: [lib/types.ts:748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L748) +Defined in: [lib/types.ts:748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L748) ##### `email?` > `string` -Defined in: [lib/types.ts:749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L749) +Defined in: [lib/types.ts:749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L749) ##### `familyName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L750) +Defined in: [lib/types.ts:750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L750) ##### `fullName?` > `string` -Defined in: [lib/types.ts:751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L751) +Defined in: [lib/types.ts:751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L751) ##### `givenName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L752) +Defined in: [lib/types.ts:752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L752) ##### `gossip?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L753) +Defined in: [lib/types.ts:753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L753) ##### `groups?` > [`UserGroup`](modules.md#usergroup)[] -Defined in: [lib/types.ts:754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L754) +Defined in: [lib/types.ts:754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L754) ##### `id?` > `number` -Defined in: [lib/types.ts:755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L755) +Defined in: [lib/types.ts:755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L755) ##### `interests?` > [`UserInterest`](modules.md#userinterest)[] -Defined in: [lib/types.ts:756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L756) +Defined in: [lib/types.ts:756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L756) ##### `mailingAddress?` > `string` -Defined in: [lib/types.ts:757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L757) +Defined in: [lib/types.ts:757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L757) ##### `mustChangePassword?` > `boolean` -Defined in: [lib/types.ts:758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L758) +Defined in: [lib/types.ts:758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L758) ##### `orcid?` > `string` -Defined in: [lib/types.ts:759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L759) +Defined in: [lib/types.ts:759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L759) ##### `phone?` > `string` -Defined in: [lib/types.ts:760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L760) +Defined in: [lib/types.ts:760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L760) ##### `signature?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L761) +Defined in: [lib/types.ts:761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L761) ##### `url?` > `string` -Defined in: [lib/types.ts:762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L762) +Defined in: [lib/types.ts:762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L762) ##### `userName?` > `string` -Defined in: [lib/types.ts:763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L763) +Defined in: [lib/types.ts:763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L763) -*** +--- ### `UserEditable` @@ -6970,135 +6970,135 @@ Defined in: [lib/types.ts:763](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1601) +Defined in: [lib/types.ts:1601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1601) ##### `authId?` > `number` -Defined in: [lib/types.ts:1602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1602) +Defined in: [lib/types.ts:1602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1602) ##### `authString?` > `string` -Defined in: [lib/types.ts:1603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1603) +Defined in: [lib/types.ts:1603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1603) ##### `billingAddress?` > `string` -Defined in: [lib/types.ts:1604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1604) +Defined in: [lib/types.ts:1604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1604) ##### `biography?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1605) +Defined in: [lib/types.ts:1605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1605) ##### `country?` > `string` -Defined in: [lib/types.ts:1606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1606) +Defined in: [lib/types.ts:1606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1606) ##### `dateLastRegistered?` > `string` -Defined in: [lib/types.ts:1607](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1607) +Defined in: [lib/types.ts:1607](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1607) ##### `dateRegistered?` > `string` -Defined in: [lib/types.ts:1608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1608) +Defined in: [lib/types.ts:1608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1608) ##### `dateValidated?` > `string` -Defined in: [lib/types.ts:1609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1609) +Defined in: [lib/types.ts:1609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1609) ##### `disabled?` > `boolean` -Defined in: [lib/types.ts:1610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1610) +Defined in: [lib/types.ts:1610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1610) ##### `disabledReason?` > `string` -Defined in: [lib/types.ts:1611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1611) +Defined in: [lib/types.ts:1611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1611) ##### `email?` > `string` -Defined in: [lib/types.ts:1612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1612) +Defined in: [lib/types.ts:1612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1612) ##### `familyName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1613) +Defined in: [lib/types.ts:1613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1613) ##### `givenName?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1614](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1614) +Defined in: [lib/types.ts:1614](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1614) ##### `gossip?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1615) +Defined in: [lib/types.ts:1615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1615) ##### `mailingAddress?` > `string` -Defined in: [lib/types.ts:1616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1616) +Defined in: [lib/types.ts:1616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1616) ##### `mustChangePassword?` > `boolean` -Defined in: [lib/types.ts:1617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1617) +Defined in: [lib/types.ts:1617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1617) ##### `orcid?` > `string` -Defined in: [lib/types.ts:1618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1618) +Defined in: [lib/types.ts:1618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1618) ##### `phone?` > `string` -Defined in: [lib/types.ts:1619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1619) +Defined in: [lib/types.ts:1619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1619) ##### `signature?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1620) +Defined in: [lib/types.ts:1620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1620) ##### `url?` > `string` -Defined in: [lib/types.ts:1621](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1621) +Defined in: [lib/types.ts:1621](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1621) ##### `userName?` > `string` -Defined in: [lib/types.ts:1622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1622) +Defined in: [lib/types.ts:1622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1622) -*** +--- ### `UserGroup` @@ -7108,45 +7108,45 @@ Defined in: [lib/types.ts:1622](https://github.com/TrialAndErrorOrg/parsers/blo > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L766) +Defined in: [lib/types.ts:766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L766) ##### `id?` > `number` -Defined in: [lib/types.ts:767](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L767) +Defined in: [lib/types.ts:767](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L767) ##### `name?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L768) +Defined in: [lib/types.ts:768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L768) ##### `permitSelfRegistration?` > `boolean` -Defined in: [lib/types.ts:769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L769) +Defined in: [lib/types.ts:769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L769) ##### `recommendOnly?` > `boolean` -Defined in: [lib/types.ts:770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L770) +Defined in: [lib/types.ts:770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L770) ##### `roleId?` > `number` -Defined in: [lib/types.ts:771](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L771) +Defined in: [lib/types.ts:771](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L771) ##### `showTitle?` > `boolean` -Defined in: [lib/types.ts:772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L772) +Defined in: [lib/types.ts:772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L772) -*** +--- ### `UserGroupEditable` @@ -7156,45 +7156,45 @@ Defined in: [lib/types.ts:772](https://github.com/TrialAndErrorOrg/parsers/blob > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1635](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1635) +Defined in: [lib/types.ts:1635](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1635) ##### `id?` > `number` -Defined in: [lib/types.ts:1636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1636) +Defined in: [lib/types.ts:1636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1636) ##### `name?` > [`LocaleObject`](modules.md#localeobject) -Defined in: [lib/types.ts:1637](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1637) +Defined in: [lib/types.ts:1637](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1637) ##### `permitSelfRegistration?` > `boolean` -Defined in: [lib/types.ts:1638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1638) +Defined in: [lib/types.ts:1638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1638) ##### `recommendOnly?` > `boolean` -Defined in: [lib/types.ts:1639](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1639) +Defined in: [lib/types.ts:1639](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1639) ##### `roleId?` > `number` -Defined in: [lib/types.ts:1640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1640) +Defined in: [lib/types.ts:1640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1640) ##### `showTitle?` > `boolean` -Defined in: [lib/types.ts:1641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1641) +Defined in: [lib/types.ts:1641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1641) -*** +--- ### `UserInterest` @@ -7208,15 +7208,15 @@ A user's review interests. > `number` -Defined in: [lib/types.ts:776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L776) +Defined in: [lib/types.ts:776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L776) ##### `interest?` > `string` -Defined in: [lib/types.ts:777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L777) +Defined in: [lib/types.ts:777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L777) -*** +--- ### `UserSummary` @@ -7226,49 +7226,49 @@ Defined in: [lib/types.ts:777](https://github.com/TrialAndErrorOrg/parsers/blob > `string` -Defined in: [lib/types.ts:1625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1625) +Defined in: [lib/types.ts:1625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1625) ##### `disabled?` > `boolean` -Defined in: [lib/types.ts:1626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1626) +Defined in: [lib/types.ts:1626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1626) ##### `email?` > `string` -Defined in: [lib/types.ts:1627](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1627) +Defined in: [lib/types.ts:1627](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1627) ##### `fullName?` > `string` -Defined in: [lib/types.ts:1628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1628) +Defined in: [lib/types.ts:1628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1628) ##### `groups?` > [`UserGroup`](modules.md#usergroup)[] -Defined in: [lib/types.ts:1629](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1629) +Defined in: [lib/types.ts:1629](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1629) ##### `id?` > `number` -Defined in: [lib/types.ts:1630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1630) +Defined in: [lib/types.ts:1630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1630) ##### `orcid?` > `string` -Defined in: [lib/types.ts:1631](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1631) +Defined in: [lib/types.ts:1631](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1631) ##### `userName?` > `string` -Defined in: [lib/types.ts:1632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1632) +Defined in: [lib/types.ts:1632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/ojs-types/src/lib/types.ts#L1632) ## Syntax tree @@ -7287,59 +7287,31 @@ Defined in: [lib/types.ts:1632](https://github.com/TrialAndErrorOrg/parsers/blo [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-parse - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast - [ojs-types]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ojs-types diff --git a/libs/citations/ojs-types/project.json b/libs/citations/ojs-types/project.json index 03b8caf2..ba3b5006 100644 --- a/libs/citations/ojs-types/project.json +++ b/libs/citations/ojs-types/project.json @@ -29,10 +29,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/citations/ojs-types/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "deploy": { "executor": "ngx-deploy-npm:deploy", diff --git a/libs/citations/ojs-types/src/lib/schema.ts b/libs/citations/ojs-types/src/lib/schema.ts index ebac62e5..66a84a19 100644 --- a/libs/citations/ojs-types/src/lib/schema.ts +++ b/libs/citations/ojs-types/src/lib/schema.ts @@ -4,83 +4,79 @@ */ export interface paths { - "/submissions": { + '/submissions': { /** See `/submissions/{submissionId}` for notes about submission properties. */ get: { parameters: { query: { /** Filter results by one or more submission statuses. Must match the value of one of the `STATUS_QUEUED`, `STATUS_SCHEDULED`, `STATUS_PUBLISHED` or `STATUS_DECLINED` constants. */ - status?: (1 | 3 | 4 | 5)[]; + status?: (1 | 3 | 4 | 5)[] /** Filter results by those assigned to one or more user ids. All users except managers and admins are automatically restricted to assigned submissions and do not need to pass this parameter. */ - assignedTo?: number[]; + assignedTo?: number[] /** How many results to return in a single request. Max is `100`. */ - count?: number; + count?: number /** Offset the results returned. Use this to receive subsequent pages of requests. A `count` of `10` and `offset` of `15` will return results `15` to `25`. */ - offset?: number; + offset?: number /** Order the results returned. */ - orderBy?: - | "dateSubmitted" - | "dateLastActivity" - | "lastModified" - | "title"; + orderBy?: 'dateSubmitted' | 'dateLastActivity' | 'lastModified' | 'title' /** Return the results in ascending or descending order. */ - orderDirection?: "ASC" | "DESC"; + orderDirection?: 'ASC' | 'DESC' /** Filter the results by those for which the author has not yet completed the submission process. */ - isIncomplete?: boolean; + isIncomplete?: boolean /** Filter the results by those for which a reviewer has missed a deadline. */ - isOverdue?: boolean; + isOverdue?: boolean /** Filter the results by those which have not had activity for the last X days. */ - daysInactive?: number; + daysInactive?: number /** Filter the results by those with one or more publications assigned to a section. */ - sectionIds?: number[]; + sectionIds?: number[] /** Filter the results by those with one or more publications assigned to an issue. */ - issueIds?: number[]; + issueIds?: number[] /** Filter the results by a search phrase matched against the title and authors. */ - searchPhrase?: string; - }; - }; + searchPhrase?: string + } + } responses: { /** List of requested submissions. */ 200: { content: { - "application/json": { - itemsMax?: number; - items?: components["schemas"]["SubmissionSummary"][]; - }; - }; - }; + 'application/json': { + itemsMax?: number + items?: components['schemas']['SubmissionSummary'][] + } + } + } /** You do not have permission to access submissions assigned to the user requested in the `assignedTo` parameter. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } post: { responses: { /** Details of the submission that was just added. */ 200: { content: { - "application/json": components["schemas"]["Submission"]; - }; - }; + 'application/json': components['schemas']['Submission'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } + } /** Details about the submission that should be created. */ requestBody: { content: { - "application/json": components["schemas"]["SubmissionEditable"]; - }; - }; - }; - }; - "/submissions/{submissionId}": { + 'application/json': components['schemas']['SubmissionEditable'] + } + } + } + } + '/submissions/{submissionId}': { /** * * Unpublished submissions are only returned for assigned participants, editors and admins. * * `abstract` includes HTML markup. @@ -93,50 +89,50 @@ export interface paths { parameters: { path: { /** Submission ID */ - submissionId: number; - }; - }; + submissionId: number + } + } responses: { /** The submission details. */ 200: { content: { - "application/json": components["schemas"]["Submission"]; - }; - }; + 'application/json': components['schemas']['Submission'] + } + } /** You do not have permission to access this submissions. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The submission could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } put: { parameters: { path: { /** Submission ID */ - submissionId: number; - }; - }; + submissionId: number + } + } responses: { /** The submission that was just edited with the new values after the update has occurred. */ 200: { content: { - "application/json": components["schemas"]["Submission"]; - }; - }; + 'application/json': components['schemas']['Submission'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } /** * This error indicates one of the following: * * You are not allowed to edit a submission from the site-wide endpoint. You must use a context (journal/press/server) endpoint. @@ -144,54 +140,54 @@ export interface paths { */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The submission could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } /** The details about the submission that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified. */ requestBody: { content: { - "application/json": components["schemas"]["SubmissionEditable"]; - }; - }; - }; + 'application/json': components['schemas']['SubmissionEditable'] + } + } + } /** Only journal managers and subeditors can make a request to this endpoint. */ delete: { parameters: { path: { /** Submission ID */ - submissionId: number; - }; - }; + submissionId: number + } + } responses: { /** Details of the deleted submission. */ 200: { content: { - "application/json": components["schemas"]["Submission"]; - }; - }; + 'application/json': components['schemas']['Submission'] + } + } /** You are not allowed to delete this submission. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The submission could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/submissions/{submissionId}/files": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/submissions/{submissionId}/files': { /** * This will return all of a submission's files that the user is allowed to access, except review attachments and discussion files. A user is allowed to access different file stages depending on their stage assignment. * * Managers, subeditors and assistants can access all file stages if they are assigned to the matching workflow stage. For example, an assistant assigned to the copyediting stage can access files in `SUBMISSION_FILE_COPYEDIT` and `SUBMISSION_FILE_FINAL`. @@ -203,22 +199,22 @@ export interface paths { parameters: { path: { /** Submission ID */ - submissionId: number; - }; + submissionId: number + } query: { /** Filter results by those submission files assigned to one or more file stage. One of the `SUBMISSION_FILE_` constants. */ - fileStages?: number[]; + fileStages?: number[] /** Filter results by those submission files assigned to one or more review rounds. */ - reviewRoundIds?: number[]; - }; - }; + reviewRoundIds?: number[] + } + } responses: { /** An array of the requested submission files. */ 200: { content: { - "application/json": components["schemas"]["SubmissionFileSummary"][]; - }; - }; + 'application/json': components['schemas']['SubmissionFileSummary'][] + } + } /** * You do not have permission to view the requested files. * @@ -230,296 +226,296 @@ export interface paths { */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } /** A user is allowed to upload to different file stages depending on their stage assignments. See the description for `GET /submission/{submissionId}/files` above. Once a submission has been completed, authors are no longer allowed to upload to `SUBMISSION_FILE_SUBMISSION`. Authors are not allowed to upload to `SUBMISSION_FILE_REVIEW_REVISION` until revisions have been requested. */ post: { responses: { /** The new submission file. */ 200: { content: { - "application/json": components["schemas"]["SubmissionFile"]; - }; - }; + 'application/json': components['schemas']['SubmissionFile'] + } + } /** There was an error when uploading the file or the values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } /** You are not allowed to upload a file to the specified file stage of this submission. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } /** Details about the submission file that should be created. */ requestBody: { content: { - "multipart/form-data": components["schemas"]["SubmissionFileEditable"]; - }; - }; - }; - }; - "/submissions/{submissionId}/files/{submissionFileId}": { + 'multipart/form-data': components['schemas']['SubmissionFileEditable'] + } + } + } + } + '/submissions/{submissionId}/files/{submissionFileId}': { /** You must pass the correct `stageId` when requesting a file. */ get: { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Submission File ID */ - submissionFileId: number; - }; + submissionFileId: number + } query: { /** The workflow stage id of the requested file. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. */ - stageId: number; - }; - }; + stageId: number + } + } responses: { /** Details of the submission file. */ 200: { content: { - "application/json": components["schemas"]["SubmissionFile"]; - }; - }; + 'application/json': components['schemas']['SubmissionFile'] + } + } /** You are not allowed to access the requested file. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } /** You must pass the correct `stageId` when editing a file. */ put: { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Submission File ID */ - submissionFileId: number; - }; + submissionFileId: number + } query: { /** The workflow stage id of the file to be edited. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. */ - stageId: number; - }; - }; + stageId: number + } + } responses: { /** The submission file that was just edited with the new values after the update has occurred. */ 200: { content: { - "application/json": components["schemas"]["SubmissionFile"]; - }; - }; + 'application/json': components['schemas']['SubmissionFile'] + } + } /** There was an error when uploading the file or the values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } /** You are not allowed to edit the requested file. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } /** The details about the submission file that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified. */ requestBody: { content: { - "application/json": components["schemas"]["SubmissionFileEditable"]; - }; - }; - }; + 'application/json': components['schemas']['SubmissionFileEditable'] + } + } + } /** You must pass the correct `stageId` when deleting a file. */ delete: { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Submission File ID */ - submissionFileId: number; - }; + submissionFileId: number + } query: { /** The workflow stage id of the file to be edited. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. */ - stageId: number; - }; - }; + stageId: number + } + } responses: { /** The submission file that was just deleted. */ 200: { content: { - "application/json": components["schemas"]["SubmissionFile"]; - }; - }; + 'application/json': components['schemas']['SubmissionFile'] + } + } /** You are not allowed to delete the requested file. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/submissions/{submissionId}/participants": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/submissions/{submissionId}/participants': { /** Get the participants assigned to a submisssion. */ get: { parameters: { path: { /** Submission ID */ - submissionId: number; - }; - }; + submissionId: number + } + } responses: { /** List of users assigned to a submission */ 200: { content: { - "application/json": components["schemas"]["UserSummary"][]; - }; - }; + 'application/json': components['schemas']['UserSummary'][] + } + } /** The requested submission could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/submissions/{submissionId}/participants/{stageId}": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/submissions/{submissionId}/participants/{stageId}': { /** Get all participants assigned to a submission for a specific workflow stage, such as the review or copyediting stage. */ get: { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Stage ID */ - stageId: number; - }; - }; + stageId: number + } + } responses: { /** List of users assigned to the requested stage of the requested submission */ 200: { content: { - "application/json": components["schemas"]["UserSummary"][]; - }; - }; + 'application/json': components['schemas']['UserSummary'][] + } + } /** The requested submission could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/submissions/{submissionId}/publications": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/submissions/{submissionId}/publications': { get: { parameters: { path: { /** Submission ID */ - submissionId: number; - }; - }; + submissionId: number + } + } responses: { /** List of publications for this submission. */ 200: { content: { - "application/json": components["schemas"]["Publication"][]; - }; - }; + 'application/json': components['schemas']['Publication'][] + } + } /** The requested submission could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } /** Create a new publication for a submission. */ post: { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Publication ID */ - publicationId: number; - }; - }; + publicationId: number + } + } responses: { /** Details of the publication that was just added. */ 200: { content: { - "application/json": components["schemas"]["Publication"]; - }; - }; + 'application/json': components['schemas']['Publication'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } + } /** Details about the publication that should be created. */ requestBody: { content: { - "application/json": components["schemas"]["PublicationEditable"]; - }; - }; - }; - }; - "/submissions/{submissionId}/publications/{publicationId}": { + 'application/json': components['schemas']['PublicationEditable'] + } + } + } + } + '/submissions/{submissionId}/publications/{publicationId}': { get: { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Publication ID */ - publicationId: number; - }; - }; + publicationId: number + } + } responses: { /** The publication details */ 200: { content: { - "application/json": components["schemas"]["Publication"]; - }; - }; + 'application/json': components['schemas']['Publication'] + } + } /** The requested submission or publication could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } put: { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Publication ID */ - publicationId: number; - }; - }; + publicationId: number + } + } responses: { /** The publication that was just edited with the new values after the update has occurred. */ 200: { content: { - "application/json": components["schemas"]["Publication"]; - }; - }; + 'application/json': components['schemas']['Publication'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } /** * This error indicates one of the following: * * The publication you want to edit does not belong to this submission. @@ -529,40 +525,40 @@ export interface paths { */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The publication could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } /** The details about the publication that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified. */ requestBody: { content: { - "application/json": components["schemas"]["PublicationEditable"]; - }; - }; - }; + 'application/json': components['schemas']['PublicationEditable'] + } + } + } /** Only journal managers and subeditors can make a request to this endpoint. */ delete: { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Publication ID */ - publicationId: number; - }; - }; + publicationId: number + } + } responses: { /** The publication that was just deleted. */ 200: { content: { - "application/json": components["schemas"]["Publication"]; - }; - }; + 'application/json': components['schemas']['Publication'] + } + } /** * This may mean one of the following: * * You are not allowed to delete this publication. @@ -571,52 +567,52 @@ export interface paths { */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The submission could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/submissions/{submissionId}/publications/{publicationId}/version": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/submissions/{submissionId}/publications/{publicationId}/version': { /** Duplicate a publication, including author and galley records, in order to create a new version of a publication that can be edited. */ post: { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Publication ID */ - publicationId: number; - }; - }; + publicationId: number + } + } responses: { /** Details of the new publication that was created. */ 200: { content: { - "application/json": components["schemas"]["Publication"]; - }; - }; + 'application/json': components['schemas']['Publication'] + } + } /** The publication you want to version does not belong to this submission. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The publication could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/submissions/{submissionId}/publications/{publicationId}/publish": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/submissions/{submissionId}/publications/{publicationId}/publish': { /** * If the publication is assigned to an issue that is not yet published, it will be scheduled for publication and the `status` will be set to `STATUS_SCHEDULED`. If the issue is already published, it will be published immediately and the `status` will be set to `STATUS_PUBLISHED`. * @@ -626,1229 +622,1229 @@ export interface paths { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Publication ID */ - publicationId: number; - }; - }; + publicationId: number + } + } responses: { /** Details of the publication that was just published. */ 200: { content: { - "application/json": components["schemas"]["Publication"]; - }; - }; + 'application/json': components['schemas']['Publication'] + } + } /** One or more publication requirements have not been met. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } /** A 403 response means that the publication you want to version does not belong to this submission or that the publication is already published. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The publication could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/submissions/{submissionId}/publications/{publicationId}/unpublish": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/submissions/{submissionId}/publications/{publicationId}/unpublish': { put: { parameters: { path: { /** Submission ID */ - submissionId: number; + submissionId: number /** Publication ID */ - publicationId: number; - }; - }; + publicationId: number + } + } responses: { /** Details of the publication that was just unpublished. */ 200: { content: { - "application/json": components["schemas"]["Publication"]; - }; - }; + 'application/json': components['schemas']['Publication'] + } + } /** A 403 response means that the publication you want to version does not belong to this submission or that the publication is already unpublished. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The publication could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/issues": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/issues': { /** Results are eordered by `datePublished`. */ get: { parameters: { query: { /** How many results to return in a single request. Max is `100`. */ - count?: number; + count?: number /** Offset the results returned. Use this to receive subsequent pages of requests. A `count` of `10` and `offset` of `15` will return results `15` to `25`. */ - offset?: number; + offset?: number /** Order the results returned. */ - orderBy?: "datePublished" | "lastModified" | "seq"; + orderBy?: 'datePublished' | 'lastModified' | 'seq' /** Return the results in ascending or descending order. */ - orderDirection?: "ASC" | "DESC"; + orderDirection?: 'ASC' | 'DESC' /** Filter returned issues by those that have been published. Pass a `false` value to return only unpublished issues. Only administrators and journal managers are allowed to access unpublished issues. */ - isPublished?: boolean; + isPublished?: boolean /** Filter returned issues by those in a specific volume. */ - volumes?: string; + volumes?: string /** Filter returned issues by those assigned a specific number. */ - numbers?: string; + numbers?: string /** Filter returned issues by those in a specific year. */ - years?: string; + years?: string /** Filter the results by a search phrase matched against the title, description and year. It will also attempt to match search phrases using the localised issue identification. For example, in English a search for `Vol. 1 No. 2 (2018)` will match an issue with a volume of `1`, a number of `2` and a year of `2018`. The precise format differs for each language. */ - searchPhrase?: string; - }; - }; + searchPhrase?: string + } + } responses: { /** List of issues. */ 200: { content: { - "application/json": components["schemas"]["IssueSummary"][]; - }; - }; + 'application/json': components['schemas']['IssueSummary'][] + } + } /** The requested volume, number or year is not valid. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/issues/current": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/issues/current': { get: { responses: { /** The current issue. */ 200: { content: { - "application/json": components["schemas"]["Issue"]; - }; - }; + 'application/json': components['schemas']['Issue'] + } + } /** This journal does not have a current issue. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/issues/{issueId}": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/issues/{issueId}': { /** If the issue has a custom section order, the `seq` property of each `SectionSummary` will reflect the sequence for that issue. */ get: { parameters: { path: { /** Issue ID */ - issueId: number; - }; - }; + issueId: number + } + } responses: { /** The requested issue. */ 200: { content: { - "application/json": components["schemas"]["Issue"]; - }; - }; + 'application/json': components['schemas']['Issue'] + } + } /** The requested issue could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/users": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/users': { get: { parameters: { query: { /** Filter the results by those who have one of these user role IDs. */ - roleIds?: number[]; + roleIds?: number[] /** Filter results by active/disabled users. */ - status?: "active" | "disabled" | "all"; + status?: 'active' | 'disabled' | 'all' /** Filter results by those assigned to this submission ID. */ - assignedToSubmission?: number; + assignedToSubmission?: number /** Filter results by those assigned to this submission stage. Will be ignored if no `assignedToSubmission` parameter exists. */ - assignedToSubmissionStage?: number; + assignedToSubmissionStage?: number /** Filter the results by those assigned as section editors to this section ID. */ - assignedToSection?: number; + assignedToSection?: number /** How many results to return in a single request. Max is `100`. */ - count?: number; + count?: number /** Offset the results returned. Use this to receive subsequent pages of requests. A `count` of `10` and `offset` of `15` will return results `15` to `25`. */ - offset?: number; + offset?: number /** Order the results returned. */ - orderBy?: "id" | "familyName" | "givenName"; + orderBy?: 'id' | 'familyName' | 'givenName' /** Return the results in ascending or descending order. */ - orderDirection?: "ASC" | "DESC"; + orderDirection?: 'ASC' | 'DESC' /** Filter the results by a search phrase matched against the `userName`, `givenName`, `familyName`, `email`, `affiliation`, `biography` and `orcid`. */ - searchPhrase?: string; - }; - }; + searchPhrase?: string + } + } responses: { /** A list of users. */ 200: { content: { - "application/json": { - itemsMax?: number; - items?: components["schemas"]["UserSummary"][]; - }; - }; - }; + 'application/json': { + itemsMax?: number + items?: components['schemas']['UserSummary'][] + } + } + } /** Only administrators, journal managers and editors are allowed to access users on this site. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/users/{userId}": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/users/{userId}': { get: { parameters: { path: { /** User ID */ - userId: number; - }; - }; + userId: number + } + } responses: { /** User details. */ 200: { content: { - "application/json": components["schemas"]["User"]; - }; - }; - }; - }; - }; - "/users/reviewers": { + 'application/json': components['schemas']['User'] + } + } + } + } + } + '/users/reviewers': { get: { parameters: { query: { /** Filter results by active/disabled users. */ - status?: "active" | "disabled" | "all"; + status?: 'active' | 'disabled' | 'all' /** Filter results by those who have an average review assignment rating of at least `X` (valid ratings are between `1` and `5`). */ - reviewerRating?: number; + reviewerRating?: number /** Filter results by reviewers for one of the review stages in the workflow. Must be one of `WORKFLOW_STAGE_ID_INTERNAL_REVIEW` or `WORKFLOW_STAGE_ID_EXTERNAL_REVIEW`. In OJS, the review stage is `WORKFLOW_STAGE_ID_EXTERNAL_REVIEW`. */ - reviewStage?: number; + reviewStage?: number /** Filter results by those who have completed at least `X` reviews. You can also pass a range as a string formatted as `X-X`. */ - reviewsCompleted?: string; + reviewsCompleted?: string /** Filter results by those who have `X` review assignments currently in progress. You can also pass a range as a string formatted as `X-X`. */ - reviewsActive?: string; + reviewsActive?: string /** Filter results by those who's last review was assigned at least `X` days ago. You can also pass a range as a string formatted as `X-X`. */ - daysSinceLastAssignment?: string; + daysSinceLastAssignment?: string /** Filter results by those who complete a review assignment within `X` days on average. */ - averageCompletion?: number; + averageCompletion?: number /** How many results to return in a single request. Max is `100`. */ - count?: number; + count?: number /** Offset the results returned. Use this to receive subsequent pages of requests. A `count` of `10` and `offset` of `15` will return results `15` to `25`. */ - offset?: number; + offset?: number /** Order the results returned. */ - orderBy?: "id" | "familyName" | "givenName"; + orderBy?: 'id' | 'familyName' | 'givenName' /** Return the results in ascending or descending order. */ - orderDirection?: "ASC" | "DESC"; + orderDirection?: 'ASC' | 'DESC' /** Filter the results by a search phrase matched against the `userName`, `givenName`, `familyName`, `email`, `affiliation`, `biography`, `orcid`, `interests`, and `gossip`. */ - searchPhrase?: string; - }; - }; + searchPhrase?: string + } + } responses: { /** List of reviewers. */ 200: { content: { - "application/json": { - itemsMax?: number; - items?: components["schemas"]["ReviewerSummary"][]; - }; - }; - }; + 'application/json': { + itemsMax?: number + items?: components['schemas']['ReviewerSummary'][] + } + } + } /** Only administrators, journal managers and editors are allowed to access users on this site. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/contexts": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/contexts': { /** Get an array of the journals (OJS), presses (OMP) or preprint servers (OPS) hosted on this site. */ get: { parameters: { query: { /** Filter results by enabled/disabled contexts. Any truthy or falsey value will get enabled/disabled contexts. Leave this parameter out to get all contexts. */ - isEnabled?: string; + isEnabled?: string /** How many results to return in a single request. Max is `100`. */ - count?: unknown; + count?: unknown /** Offset the results returned. Use this to receive subsequent pages of requests. */ - offset?: number; + offset?: number /** Filter results by a search phrase matched against the `name`, `description`, `acronym`, or `abbreviation`. */ - searchPhrase?: string; - }; - }; + searchPhrase?: string + } + } responses: { /** List of contexts. */ 200: { content: { - "application/json": { - itemsMax?: number; - items?: components["schemas"]["ContextSummary"][]; - }; - }; - }; + 'application/json': { + itemsMax?: number + items?: components['schemas']['ContextSummary'][] + } + } + } /** You do not have permission to view disabled contexts. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } /** Create a new journal (OJS), press (OMP) or preprint server (OPS). */ post: { responses: { /** Details of the context that was just added. */ 200: { content: { - "application/json": components["schemas"]["Context"]; - }; - }; + 'application/json': components['schemas']['Context'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } + } /** Details about the context that should be created. The `path` field is required. The `name` is required in the site's primary locale. */ requestBody: { content: { - "application/json": components["schemas"]["ContextEditable"]; - }; - }; - }; - }; - "/contexts/{contextId}": { + 'application/json': components['schemas']['ContextEditable'] + } + } + } + } + '/contexts/{contextId}': { get: { parameters: { path: { /** Context ID */ - contextId: number; - }; - }; + contextId: number + } + } responses: { /** Context details. Some details may be withheld if you are not a site admin or manager of that context. */ 200: { content: { - "application/json": components["schemas"]["Context"]; - }; - }; + 'application/json': components['schemas']['Context'] + } + } /** You do not have permission to view this context. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested context could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } /** Edit a journal (OJS), press (OMP) or preprint server (OPS). */ put: { parameters: { path: { /** Context ID */ - contextId: number; - }; - }; + contextId: number + } + } responses: { /** The context that was just edited with the current values after the edit has occurred. */ 200: { content: { - "application/json": components["schemas"]["Context"]; - }; - }; + 'application/json': components['schemas']['Context'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } /** There are two possible conditions that will result in a `403` response. 1. You do not have permission to edit this context. 2. You submitted changes for one context from the API endpoint of another context. To edit a context, you must make a request to that context's API endpoint or the site-wide API endpoint. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested context could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } /** The details about a context that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified. */ requestBody: { content: { - "application/json": components["schemas"]["ContextEditable"]; - }; - }; - }; + 'application/json': components['schemas']['ContextEditable'] + } + } + } /** Delete a journal (OJS), press (OMP) or preprint server (OPS). */ delete: { parameters: { path: { /** Context ID */ - contextId: number; - }; - }; + contextId: number + } + } responses: { /** Details of the context that was just deleted. */ 200: { content: { - "application/json": components["schemas"]["Context"]; - }; - }; + 'application/json': components['schemas']['Context'] + } + } /** You do not have permission to delete this context. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested context could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/contexts/{contextId}/theme": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/contexts/{contextId}/theme': { /** Get the active theme and theme options for any journal (OJS), press (OMP) or preprint server (OPS). */ get: { parameters: { path: { /** Context ID */ - contextId: number; - }; - }; + contextId: number + } + } responses: { /** The response will include the theme plugin directory in `themePluginPath`. Any theme options will be provided in additional keys based on the option name. */ 200: { content: { - "application/json": components["schemas"]["ThemeOptions"]; - }; - }; + 'application/json': components['schemas']['ThemeOptions'] + } + } /** You do not have permission to view this context. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested context could not be found. A 404 may also be returned when a context has no active theme, or the active theme plugin has not been installed or enabled. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } /** Edit the active theme and theme options for any journal (OJS), press (OMP) or preprint server (OPS). */ put: { parameters: { path: { /** Context ID */ - contextId: number; - }; - }; + contextId: number + } + } responses: { /** The new theme and values for any of its theme options. */ 200: { content: { - "application/json": components["schemas"]["ThemeOptions"]; - }; - }; + 'application/json': components['schemas']['ThemeOptions'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } /** There are two possible conditions that will result in a `403` response. 1. You do not have permission to edit this context. 2. You submitted changes for one context from the API endpoint of another context. To edit a context, you must make a request to that context's API endpoint or the site-wide API endpoint. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested context could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - requestBody: components["requestBodies"]["ThemeOptions"]; - }; - }; - "/site": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + requestBody: components['requestBodies']['ThemeOptions'] + } + } + '/site': { get: { responses: { /** Site settings. */ 200: { content: { - "application/json": components["schemas"]["Site"]; - }; - }; - }; - }; + 'application/json': components['schemas']['Site'] + } + } + } + } put: { responses: { /** The site details with the current values after the edit has occurred. */ 200: { content: { - "application/json": components["schemas"]["Site"]; - }; - }; + 'application/json': components['schemas']['Site'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } + } /** The details about the site that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified. */ requestBody: { content: { - "application/json": components["schemas"]["SiteEditable"]; - }; - }; - }; - }; - "/site/theme": { + 'application/json': components['schemas']['SiteEditable'] + } + } + } + } + '/site/theme': { /** Get the active theme and theme options for the site. */ get: { responses: { /** The response will include the theme plugin directory in `themePluginPath`. Any theme options will be provided in additional keys based on the option name. */ 200: { content: { - "application/json": components["schemas"]["ThemeOptions"]; - }; - }; + 'application/json': components['schemas']['ThemeOptions'] + } + } /** Details about the active theme could not be found. This can occur when the active theme plugin is not installed or enabled. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } /** Get the active theme and theme options for the site. */ put: { responses: { /** The new theme and values for any of its theme options. */ 200: { content: { - "application/json": components["schemas"]["ThemeOptions"]; - }; - }; + 'application/json': components['schemas']['ThemeOptions'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; - }; - requestBody: components["requestBodies"]["ThemeOptions"]; - }; - }; - "/announcements": { + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } + } + requestBody: components['requestBodies']['ThemeOptions'] + } + } + '/announcements': { get: { parameters: { query: { /** How many results to return in a single request. */ - count?: unknown; + count?: unknown /** Offset the results returned. Use this to receive subsequent pages of requests. */ - offset?: number; + offset?: number /** Filter results by a search phrase matched against the `title`, `descriptionShort`, and `description`. */ - searchPhrase?: string; + searchPhrase?: string /** Filter results by announcements of these announcement types. */ - typeIds?: number[]; - }; - }; + typeIds?: number[] + } + } responses: { /** List of announcements. */ 200: { content: { - "application/json": { - itemsMax?: number; - items?: components["schemas"]["AnnouncementSummary"][]; - }; - }; - }; + 'application/json': { + itemsMax?: number + items?: components['schemas']['AnnouncementSummary'][] + } + } + } /** You do not have permission to view announcements in this context. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } /** Create and publish a new announcement in this context. */ post: { responses: { /** Details of the announcement that was just added. */ 200: { content: { - "application/json": components["schemas"]["Announcement"]; - }; - }; + 'application/json': components['schemas']['Announcement'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } + } /** Details about the announcement that should be created. */ requestBody: { content: { - "application/json": components["schemas"]["AnnouncementEditable"]; - }; - }; - }; - }; - "/announcements/{announcementId}": { + 'application/json': components['schemas']['AnnouncementEditable'] + } + } + } + } + '/announcements/{announcementId}': { get: { parameters: { path: { /** Announcement ID */ - announcementId: number; - }; - }; + announcementId: number + } + } responses: { /** Announcement details. */ 200: { content: { - "application/json": components["schemas"]["Announcement"]; - }; - }; + 'application/json': components['schemas']['Announcement'] + } + } /** You do not have permission to view this announcement. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested announcement could not be found. Or you requested an announcement that is not part of this context. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } /** Edit an announcement. */ put: { parameters: { path: { /** Announcement ID */ - announcementId: number; - }; - }; + announcementId: number + } + } responses: { /** The announcement that was just edited with the current values after the edit has occurred. */ 200: { content: { - "application/json": components["schemas"]["Announcement"]; - }; - }; + 'application/json': components['schemas']['Announcement'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } /** You do not have permission to edit this announcement. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested announcement could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } /** The details about the announcement that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified. */ requestBody: { content: { - "application/json": components["schemas"]["AnnouncementEditable"]; - }; - }; - }; + 'application/json': components['schemas']['AnnouncementEditable'] + } + } + } /** Delete an announcement. */ delete: { parameters: { path: { /** Announcement ID */ - announcementId: number; - }; - }; + announcementId: number + } + } responses: { /** Details of the announcement that was just deleted. */ 200: { content: { - "application/json": components["schemas"]["Announcement"]; - }; - }; + 'application/json': components['schemas']['Announcement'] + } + } /** You do not have permission to delete this announcement. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested announcement could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/emailTemplates": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/emailTemplates': { get: { parameters: { query: { /** Filter results by enabled/disabled email templates. Any truthy or falsey value will get enabled/disabled email templates. */ - isEnabled?: string; + isEnabled?: string /** Filter results by those with or without a default template. A truthy value will return only templates with a key that does not match one of the default templates. A falsey value will return only templates with a key that matches one of the default templates. Note that a default template may be customized, but this does not qualify for `isCustom`. Only completely custom templates, not a customization of a default template, will be returned when `isCustom` is `true`. */ - isCustom?: string; + isCustom?: string /** Filter results by email templates sent by one or more role IDs. */ - fromRoleIds?: number[]; + fromRoleIds?: number[] /** Filter results by email templates received by one or more role IDs. */ - toRoleIds?: number[]; + toRoleIds?: number[] /** Filter results by a search phrase matched against the `key`, `subject`, `body`, or `description`. */ - searchPhrase?: string; + searchPhrase?: string /** Filter results by email templates that belong to one or more workflow stage IDs. Pass `0` to return templates not assigned to a stage. */ - stageIds?: number[]; - }; - }; + stageIds?: number[] + } + } responses: { /** List of email templates. */ 200: { content: { - "application/json": { - itemsMax?: number; - items?: components["schemas"]["EmailTemplateSummary"][]; - }; - }; - }; + 'application/json': { + itemsMax?: number + items?: components['schemas']['EmailTemplateSummary'][] + } + } + } /** You do not have permission to view email templates. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } post: { responses: { /** Details of the email template that was just added. */ 200: { content: { - "application/json": components["schemas"]["EmailTemplate"]; - }; - }; + 'application/json': components['schemas']['EmailTemplate'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } + } /** Details about the email template that should be created. */ requestBody: { content: { - "application/json": components["schemas"]["EmailTemplateEditable"]; - }; - }; - }; - }; - "/emailTemplates/{key}": { + 'application/json': components['schemas']['EmailTemplateEditable'] + } + } + } + } + '/emailTemplates/{key}': { /** Email templates are fetched by their key, rather than ID, so that a default template is retrieved if it has not been customized. See the [documentation](https://docs.pkp.sfu.ca/dev/documentation/en/email-templates). */ get: { parameters: { path: { /** Email template key */ - key: number; - }; - }; + key: number + } + } responses: { /** Email template details. */ 200: { content: { - "application/json": components["schemas"]["EmailTemplate"]; - }; - }; + 'application/json': components['schemas']['EmailTemplate'] + } + } /** You do not have permission to view email templates. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested email template could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } put: { parameters: { path: { /** Email template key */ - key: number; - }; - }; + key: number + } + } responses: { /** The email template that was just edited with the current values after the edit has occurred. */ 200: { content: { - "application/json": components["schemas"]["EmailTemplate"]; - }; - }; + 'application/json': components['schemas']['EmailTemplate'] + } + } /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } /** There are two possible conditions that will result in a `403` response. 1. You do not have permission to edit this email template. 2. You are an admin and you submitted changes for an email template in one context from the API endpoint of another context. To edit an email template, you must make a request to the API endpoint of that email template's context. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested email template could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } /** The details about the email template that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified. */ requestBody: { content: { - "application/json": components["schemas"]["EmailTemplateEditable"]; - }; - }; - }; + 'application/json': components['schemas']['EmailTemplateEditable'] + } + } + } /** Default templates that have not been modified can not be deleted. */ delete: { parameters: { path: { /** Email template key */ - key: number; - }; - }; + key: number + } + } responses: { /** Details of the email template that was just deleted. */ 200: { content: { - "application/json": components["schemas"]["EmailTemplate"]; - }; - }; + 'application/json': components['schemas']['EmailTemplate'] + } + } /** You do not have permission to delete this email template. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested email template could not be found. This will be returned if you try to delete a default email template that has not been modified. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/emailTemplates/restoreDefaults": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/emailTemplates/restoreDefaults': { /** Delete custom templates and reset all templates to their default settings. */ delete: { responses: { /** A list of template keys which were deleted or reset. */ 200: { content: { - "application/json": string[]; - }; - }; - }; - }; - }; - "/stats/editorial": { + 'application/json': string[] + } + } + } + } + } + '/stats/editorial': { /** Returns information about editorial activity such as the number of submissions accepted and declined, the number of days to reach editorial decisions, and the acceptance and rejection rates. */ get: { parameters: { query: { /** Return stats after this date. */ - dateStart?: string; + dateStart?: string /** Return stats before this date. */ - dateEnd?: string; + dateEnd?: string /** Filter results by submissions to these sections. */ - sectionIds?: number[]; - }; - }; + sectionIds?: number[] + } + } responses: { /** An array containing the requested stats. The `name` may change with translation but the `key` will be a reliable, unique identifier for the statistic. */ 200: { content: { - "application/json": unknown[]; - }; - }; + 'application/json': unknown[] + } + } /** Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** You do not have permission to access editorial statistics for this journal or press. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested resource was not found. This should only occur if the API is requested without specifying the context. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/stats/editorial/averages": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/stats/editorial/averages': { /** Returns yearly averages of editorial activity. To ensure averages are calculated fairly, partial years are not included in the averages. For example, if the first submission was received in October 2017 and the last submission was received in the current calendar year, only submissions from 2018 up until the end of the previous calendar year will be used to calculate the average. */ get: { parameters: { query: { /** Filter results by submissions to these sections. */ - sectionIds?: number[]; - }; - }; + sectionIds?: number[] + } + } responses: { /** An object containing the requested averages. Each property matches one of the properties from `/stats/editorial`. The value `-1` may be returned for a property if an average can not be calculated. This can occur if there is not a full calendar year of activity to average. */ 200: { content: { - "application/json": unknown[]; - }; - }; + 'application/json': unknown[] + } + } /** You do not have permission to access editorial statistics for this journal or press. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested resource was not found. This should only occur if the API is requested without specifying the context. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/stats/publications": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/stats/publications': { /** Returns a list of publications ordered by their total abstract views. Includes total views by abstract, all galleys, PDF galleys, HTML galleys and other galleys. */ get: { parameters: { query: { /** Return stats for publications after this date. */ - dateStart?: string; + dateStart?: string /** Return stats for publications before this date. */ - dateEnd?: string; + dateEnd?: string /** Filter results by publications in these sections. */ - sectionIds?: string; + sectionIds?: string /** Filter results by these submissions. */ - submissionIds?: number[]; + submissionIds?: number[] /** Filter results by publications that match this search phrase. Searches the same submission properties as the `searchPhrase` parameter in the `/submissions` endpoint. */ - searchPhrase?: string; + searchPhrase?: string /** How many publications to return in a single request. Max is `100`. */ - count?: unknown; + count?: unknown /** Offset the publications returned. Use this to receive subsequent pages of requests. */ - offset?: number; + offset?: number /** Return the results in ascending or descending order. */ - orderDirection?: "ASC" | "DESC"; - }; - }; + orderDirection?: 'ASC' | 'DESC' + } + } responses: { /** A list of publications with their total stats during the requested period. */ 200: { content: { - "application/json": components["schemas"]["PublicationStats"][]; - }; - }; + 'application/json': components['schemas']['PublicationStats'][] + } + } /** Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** You do not have permission to access statistics for this journal or press. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested resource was not found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/stats/publications/abstract": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/stats/publications/abstract': { /** Returns a monthly or daily timeline of abstract views for the publications which match the request parameters. */ get: { parameters: { query: { /** Return the total daily or monthly views */ - timelineInterval?: "day" | "month"; + timelineInterval?: 'day' | 'month' /** Return stats for publications after this date. */ - dateStart?: string; + dateStart?: string /** Return stats for publications before this date. */ - dateEnd?: string; + dateEnd?: string /** Filter results by publications in these sections. */ - sectionIds?: number[]; + sectionIds?: number[] /** Filter results by these submissions. */ - submissionIds?: number[]; + submissionIds?: number[] /** Filter results by publications that match this search phrase. Searches the same submission properties as the `searchPhrase` parameter in the `/submissions` endpoint. */ - searchPhrase?: string; - }; - }; + searchPhrase?: string + } + } responses: { /** A list of days or months with the total stats for that day or month. */ 200: { content: { - "application/json": components["schemas"]["TimelineInterval"][]; - }; - }; + 'application/json': components['schemas']['TimelineInterval'][] + } + } /** Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** You do not have permission to access statistics for this journal or press. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested resource was not found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/stats/publications/galley": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/stats/publications/galley': { /** Returns a monthly or daily timeline of galley views for the publications which match the request parameters. */ get: { parameters: { query: { /** Return the total daily or monthly views. */ - timelineInterval?: "day" | "month"; + timelineInterval?: 'day' | 'month' /** Return stats for publications after this date. */ - dateStart?: string; + dateStart?: string /** Return stats for publications before this date. */ - dateEnd?: string; + dateEnd?: string /** Filter results by publications in these sections. */ - sectionIds?: number[]; + sectionIds?: number[] /** Filter results by these publications. */ - submissionIds?: number[]; + submissionIds?: number[] /** Filter results by publications that match this search phrase. Searches the same submission properties as the `searchPhrase` parameter in the `/submissions` endpoint. */ - searchPhrase?: string; - }; - }; + searchPhrase?: string + } + } responses: { /** A list of days or months with the total stats for that day or month. */ 200: { content: { - "application/json": components["schemas"]["TimelineInterval"][]; - }; - }; + 'application/json': components['schemas']['TimelineInterval'][] + } + } /** Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** You do not have permission to access statistics for this journal or press. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested resource was not found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/stats/publications/{submissionId}": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/stats/publications/{submissionId}': { /** Returns a publication's total views by abstract, all galleys, PDF galleys, HTML galleys and other galleys. */ get: { parameters: { query: { /** Return stats for publications after this date. */ - dateStart?: string; + dateStart?: string /** Return stats for publications before this date. */ - dateEnd?: string; - }; - }; + dateEnd?: string + } + } responses: { /** The total stats for the publication during the period requested. */ 200: { content: { - "application/json": components["schemas"]["PublicationStats"]; - }; - }; + 'application/json': components['schemas']['PublicationStats'] + } + } /** Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** You do not have permission to access statistics for this journal or press. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested resource was not found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/stats/publications/{submissionId}/abstract": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/stats/publications/{submissionId}/abstract': { /** Returns a monthly or daily timeline of abstract views for the requested publication. */ get: { parameters: { query: { /** Return the total daily or monthly views */ - timelineInterval?: "day" | "month"; + timelineInterval?: 'day' | 'month' /** Return stats for publications after this date. */ - dateStart?: string; + dateStart?: string /** Return stats for publications before this date. */ - dateEnd?: string; - }; - }; + dateEnd?: string + } + } responses: { /** A list of days or months with the total stats for that day or month. */ 200: { content: { - "application/json": components["schemas"]["TimelineInterval"][]; - }; - }; + 'application/json': components['schemas']['TimelineInterval'][] + } + } /** Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** You do not have permission to access statistics for this journal or press. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested resource was not found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/stats/publications/{submissionId}/galley": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/stats/publications/{submissionId}/galley': { /** Returns a monthly or daily timeline of galley views for the requested publication. */ get: { parameters: { query: { /** Return the total daily or monthly views. */ - timelineInterval?: "day" | "month"; + timelineInterval?: 'day' | 'month' /** Return stats for publications after this date. */ - dateStart?: string; + dateStart?: string /** Return stats for publications before this date. */ - dateEnd?: string; - }; - }; + dateEnd?: string + } + } responses: { /** A list of days or months with the total stats for that day or month. */ 200: { content: { - "application/json": components["schemas"]["TimelineInterval"][]; - }; - }; + 'application/json': components['schemas']['TimelineInterval'][] + } + } /** Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** You do not have permission to access statistics for this journal or press. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested resource was not found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/stats/users": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/stats/users': { /** * Returns a count of the number of user registrations broken down by roles. * @@ -1860,144 +1856,144 @@ export interface paths { parameters: { query: { /** Return counts reflecting users who registered after this date. */ - registeredAfter?: string; + registeredAfter?: string /** Return counts reflecting users who registered before this date. */ - registeredBefore?: string; + registeredBefore?: string /** Count `active` or `disabled` users. Default: `active`. */ - status?: "active" | "disabled"; - }; - }; + status?: 'active' | 'disabled' + } + } responses: { /** An object containing the requested stats. The `id` relects the `ROLE_ID_*` constant in the application. */ 200: { content: { - "application/json": unknown[]; - }; - }; + 'application/json': unknown[] + } + } /** Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** You do not have permission to access user statistics for this journal or press. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The requested resource was not found. This should only occur if the API is requested without specifying the context. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/vocabs": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/vocabs': { get: { parameters: { query: { /** The type of controlled vocab you want to retrieve entries for. One of `CONTROLLED_VOCAB_*`. */ - vocab: string; + vocab: string /** The locale key, such as `en_US`, you want to retrieve entries for. If no `locale` is provided, entries will be provided in the user's current locale or fall back to the journal's primary locale. */ - locale?: string; - }; - }; + locale?: string + } + } responses: { /** A list of the entries available in this journal. */ 200: { content: { - "application/json": string[]; - }; - }; + 'application/json': string[] + } + } /** The `locale` that you requested is not supported in this journal. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The journal you requested could not be found. */ 404: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; - }; - }; - "/temporaryFiles": { + 'application/json': components['schemas']['ErrorResponse'] + } + } + } + } + } + '/temporaryFiles': { /** Upload a file to the temporary file storage area and receive a temporary file ID. */ post: { responses: { /** The temporary file ID to use in other API requests. */ 200: { content: { - "application/json": { - id?: number; - }; - }; - }; + 'application/json': { + id?: number + } + } + } /** No uploaded file could be found. */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } /** Use any parameter key to upload your file. The API endpoint will retrieve the first uploaded file. */ requestBody: { content: { - "application/json": unknown; - }; - }; - }; + 'application/json': unknown + } + } + } /** Responds with the appopriate headers to indicate file uploads maybe be sent, required by some file upload utilities which send a preflight request. */ options: { responses: { /** An empty response body. */ - 200: unknown; - }; - }; - }; - "/_payments": { + 200: unknown + } + } + } + '/_payments': { /** This endpoint is used on the settings page to save payment plugin settings alongside the general journal settings for enabling payments and setting the currency. */ put: { responses: { /** The parameters you submitted */ - 200: unknown; + 200: unknown /** The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. */ 400: { content: { - "application/json": components["schemas"]["InvalidParametersResponse"]; - }; - }; - }; + 'application/json': components['schemas']['InvalidParametersResponse'] + } + } + } /** None of these properties are required. In addition to `paymentsEnabled` and `currency`, you may pass any property that corresponds with a setting for an enabled `paymethod` plugin. */ requestBody: { content: { - "application/json": { - paymentsEnabled?: boolean; - currency?: string; - "..."?: string; - }; - }; - }; - }; - }; - "/_uploadPublicFile": { + 'application/json': { + paymentsEnabled?: boolean + currency?: string + '...'?: string + } + } + } + } + } + '/_uploadPublicFile': { /** The user's public file directory supports files uploaded through the TinyMCE rich text editor. This is commonly used in context settings but is also available to all registered users through their profile biography. */ post: { responses: { /** An object containing the URL to the uploaded file. */ 200: { content: { - "application/json": { - url?: string; - }; - }; - }; + 'application/json': { + url?: string + } + } + } /** * One of the following errors occurred. * * No uploaded file could be found. @@ -2011,59 +2007,59 @@ export interface paths { */ 400: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** You do not have permission to upload this public file. */ 403: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The upload failed for an unknown reason. */ 409: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** Your user file directory is full. */ 413: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } /** The server is unable to read or write to the public files directory. */ 500: { content: { - "application/json": components["schemas"]["ErrorResponse"]; - }; - }; - }; + 'application/json': components['schemas']['ErrorResponse'] + } + } + } /** Use the `file` key to upload your file. */ requestBody: { content: { - "application/json": unknown; - }; - }; - }; + 'application/json': unknown + } + } + } /** Responds with the appopriate headers to indicate file uploads maybe be sent, required by some file upload utilities which send a preflight request. */ options: { responses: { /** An empty response body. */ - 200: unknown; - }; - }; - }; - "/_submissions": { + 200: unknown + } + } + } + '/_submissions': { /** This endpoint delivers a little bit of extra information about each submission that is used in the submissions list. This private endpoint saves a few extra HTTP requests, but it is more database-intensive for each query. */ get: { - parameters: {}; + parameters: {} responses: { /** List of submissions. */ - 200: unknown; - }; - }; - }; + 200: unknown + } + } + } } export interface components { @@ -2073,266 +2069,266 @@ export interface components { * Format: uri * @description The URL to this announcement in the REST API. */ - _href?: string; + _href?: string /** @description The journal, press or preprint server ID. */ - assocId?: number; + assocId?: number /** @description The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). */ - assocType?: number; + assocType?: number /** @description (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. */ - dateExpire?: string; + dateExpire?: string /** @description The date this announcement was posted. */ - datePosted?: string; - description?: components["schemas"]["LocaleObject"]; - descriptionShort?: components["schemas"]["LocaleObject"]; - id?: number; - title?: components["schemas"]["LocaleObject"]; + datePosted?: string + description?: components['schemas']['LocaleObject'] + descriptionShort?: components['schemas']['LocaleObject'] + id?: number + title?: components['schemas']['LocaleObject'] /** @description (Optional) One of the announcement type ids. */ - typeId?: number; - }; + typeId?: number + } Author: { - affiliation?: components["schemas"]["LocaleObject"]; - biography?: components["schemas"]["LocaleObject"]; - country?: string; - email?: string; - familyName?: components["schemas"]["LocaleObject"]; - givenName?: components["schemas"]["LocaleObject"]; - id?: number; + affiliation?: components['schemas']['LocaleObject'] + biography?: components['schemas']['LocaleObject'] + country?: string + email?: string + familyName?: components['schemas']['LocaleObject'] + givenName?: components['schemas']['LocaleObject'] + id?: number /** * @description Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. * @default true */ - includeInBrowse?: boolean; + includeInBrowse?: boolean /** @description The ORCID of this contributor. See: https://orcid.org/ */ - orcid?: string; - preferredPublicName?: components["schemas"]["LocaleObject"]; - publicationId?: number; + orcid?: string + preferredPublicName?: components['schemas']['LocaleObject'] + publicationId?: number /** @description The order in which this contributor should appear in a list of contriibutors. */ - seq?: number; + seq?: number /** @description The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. */ - submissionLocale?: string; + submissionLocale?: string /** @description An optional URL to this contributor's webpage. */ - url?: string; + url?: string /** @description in which user group should this contributor be identified. Usually one of the author roles, such as Author or Translator. */ - userGroupId?: number; - }; + userGroupId?: number + } Context: { /** Format: uri */ - _href?: string; - abbreviation?: components["schemas"]["LocaleObject"]; - about?: components["schemas"]["LocaleObject"]; - acronym?: components["schemas"]["LocaleObject"]; - additionalHomeContent?: components["schemas"]["LocaleObject"]; + _href?: string + abbreviation?: components['schemas']['LocaleObject'] + about?: components['schemas']['LocaleObject'] + acronym?: components['schemas']['LocaleObject'] + additionalHomeContent?: components['schemas']['LocaleObject'] /** @description Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - agencies?: string; - announcementsIntroduction?: components["schemas"]["LocaleObject"]; - authorGuidelines?: components["schemas"]["LocaleObject"]; - authorInformation?: components["schemas"]["LocaleObject"]; + agencies?: string + announcementsIntroduction?: components['schemas']['LocaleObject'] + authorGuidelines?: components['schemas']['LocaleObject'] + authorInformation?: components['schemas']['LocaleObject'] /** @description Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - citations?: string; - clockssLicense?: components["schemas"]["LocaleObject"]; - competingInterests?: components["schemas"]["LocaleObject"]; - contactAffiliation?: components["schemas"]["LocaleObject"]; - contactEmail?: string; - contactName?: string; - contactPhone?: string; - copyrightHolderOther?: components["schemas"]["LocaleObject"]; - copyrightHolderType?: string; - copyrightNotice?: components["schemas"]["LocaleObject"]; + citations?: string + clockssLicense?: components['schemas']['LocaleObject'] + competingInterests?: components['schemas']['LocaleObject'] + contactAffiliation?: components['schemas']['LocaleObject'] + contactEmail?: string + contactName?: string + contactPhone?: string + copyrightHolderOther?: components['schemas']['LocaleObject'] + copyrightHolderType?: string + copyrightNotice?: components['schemas']['LocaleObject'] /** @default issue */ - copyrightYearBasis?: string; + copyrightYearBasis?: string /** @description Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - coverage?: string; - currency?: string; - customHeaders?: components["schemas"]["LocaleObject"]; - dateFormatLong?: components["schemas"]["LocaleObject"]; - dateFormatShort?: components["schemas"]["LocaleObject"]; - datetimeFormatLong?: components["schemas"]["LocaleObject"]; - datetimeFormatShort?: components["schemas"]["LocaleObject"]; - defaultMetricType?: string; + coverage?: string + currency?: string + customHeaders?: components['schemas']['LocaleObject'] + dateFormatLong?: components['schemas']['LocaleObject'] + dateFormatShort?: components['schemas']['LocaleObject'] + datetimeFormatLong?: components['schemas']['LocaleObject'] + datetimeFormatShort?: components['schemas']['LocaleObject'] + defaultMetricType?: string /** @default 2 */ - defaultReviewMode?: number; - delayedOpenAccessDuration?: number; - delayedOpenAccessPolicy?: components["schemas"]["LocaleObject"]; - description?: components["schemas"]["LocaleObject"]; + defaultReviewMode?: number + delayedOpenAccessDuration?: number + delayedOpenAccessPolicy?: components['schemas']['LocaleObject'] + description?: components['schemas']['LocaleObject'] /** @description User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. */ - disableBulkEmailUserGroups?: number[]; + disableBulkEmailUserGroups?: number[] /** @default false */ - disableSubmissions?: boolean; - disableUserReg?: boolean; + disableSubmissions?: boolean + disableUserReg?: boolean /** @description Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - disciplines?: string; - editorialTeam?: components["schemas"]["LocaleObject"]; - emailSignature?: string; - enableAnnouncements?: boolean; - enableClockss?: boolean; - enableLockss?: boolean; + disciplines?: string + editorialTeam?: components['schemas']['LocaleObject'] + emailSignature?: string + enableAnnouncements?: boolean + enableClockss?: boolean + enableLockss?: boolean /** @default 1 */ - enableOai?: boolean; - enableOpenAccessNotification?: boolean; - enablePublisherId?: string[]; - enableSubscriptionOnlinePaymentNotificationPurchaseIndividual?: boolean; - enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional?: boolean; - enableSubscriptionOnlinePaymentNotificationRenewIndividual?: boolean; - enableSubscriptionOnlinePaymentNotificationRenewInstitutional?: boolean; - enabled?: boolean; - envelopeSender?: string; + enableOai?: boolean + enableOpenAccessNotification?: boolean + enablePublisherId?: string[] + enableSubscriptionOnlinePaymentNotificationPurchaseIndividual?: boolean + enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional?: boolean + enableSubscriptionOnlinePaymentNotificationRenewIndividual?: boolean + enableSubscriptionOnlinePaymentNotificationRenewInstitutional?: boolean + enabled?: boolean + envelopeSender?: string favicon?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } fr_CA?: { - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; - }; + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } + } homepageImage?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } fr_CA?: { - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; - }; - id?: number; + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } + } + id?: number /** @default 25 */ - itemsPerPage?: number; + itemsPerPage?: number journalThumbnail?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } fr_CA?: { - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; - }; + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } + } /** * @description Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. * @default request */ - keywords?: string; + keywords?: string /** @description Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - languages?: string; - librarianInformation?: components["schemas"]["LocaleObject"]; - licenseTerms?: components["schemas"]["LocaleObject"]; - licenseUrl?: string; - lockssLicense?: components["schemas"]["LocaleObject"]; - mailingAddress?: string; + languages?: string + librarianInformation?: components['schemas']['LocaleObject'] + licenseTerms?: components['schemas']['LocaleObject'] + licenseUrl?: string + lockssLicense?: components['schemas']['LocaleObject'] + mailingAddress?: string /** @default 0 */ - membershipFee?: number; - membershipFeeDescription?: components["schemas"]["LocaleObject"]; - membershipFeeName?: components["schemas"]["LocaleObject"]; - name?: components["schemas"]["LocaleObject"]; - numAnnouncementsHomepage?: number; - numDaysBeforeInviteReminder?: number; - numDaysBeforeSubmitReminder?: number; - numMonthsAfterSubscriptionExpiryReminder?: number; - numMonthsBeforeSubscriptionExpiryReminder?: number; + membershipFee?: number + membershipFeeDescription?: components['schemas']['LocaleObject'] + membershipFeeName?: components['schemas']['LocaleObject'] + name?: components['schemas']['LocaleObject'] + numAnnouncementsHomepage?: number + numDaysBeforeInviteReminder?: number + numDaysBeforeSubmitReminder?: number + numMonthsAfterSubscriptionExpiryReminder?: number + numMonthsBeforeSubscriptionExpiryReminder?: number /** @default 10 */ - numPageLinks?: number; - numWeeksAfterSubscriptionExpiryReminder?: number; - numWeeksBeforeSubscriptionExpiryReminder?: number; + numPageLinks?: number + numWeeksAfterSubscriptionExpiryReminder?: number + numWeeksBeforeSubscriptionExpiryReminder?: number /** @default 4 */ - numWeeksPerResponse?: number; + numWeeksPerResponse?: number /** @default 4 */ - numWeeksPerReview?: number; - onlineIssn?: string; - openAccessPolicy?: components["schemas"]["LocaleObject"]; - pageFooter?: components["schemas"]["LocaleObject"]; + numWeeksPerReview?: number + onlineIssn?: string + openAccessPolicy?: components['schemas']['LocaleObject'] + pageFooter?: components['schemas']['LocaleObject'] pageHeaderLogoImage?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } fr_CA?: { - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; - }; - paymentPluginName?: string; - paymentsEnabled?: boolean; - primaryLocale?: string; - printIssn?: string; - privacyStatement?: components["schemas"]["LocaleObject"]; + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } + } + paymentPluginName?: string + paymentsEnabled?: boolean + primaryLocale?: string + printIssn?: string + privacyStatement?: components['schemas']['LocaleObject'] /** @default 0 */ - publicationFee?: number; - publicationFeeDescription?: components["schemas"]["LocaleObject"]; - publicationFeeName?: components["schemas"]["LocaleObject"]; - publisherInstitution?: string; - publishingMode?: number; + publicationFee?: number + publicationFeeDescription?: components['schemas']['LocaleObject'] + publicationFeeName?: components['schemas']['LocaleObject'] + publisherInstitution?: string + publishingMode?: number /** @default 0 */ - purchaseArticleFee?: number; - purchaseArticleFeeDescription?: components["schemas"]["LocaleObject"]; - purchaseArticleFeeEnabled?: boolean; - purchaseArticleFeeName?: components["schemas"]["LocaleObject"]; - purchaseIssueFee?: number; - purchaseIssueFeeEnabled?: boolean; - rateReviewerOnQuality?: boolean; - readerInformation?: components["schemas"]["LocaleObject"]; - restrictArticleAccess?: boolean; - restrictOnlyPdf?: boolean; - restrictReviewerFileAccess?: boolean; - restrictSiteAccess?: boolean; - reviewGuidelines?: components["schemas"]["LocaleObject"]; - reviewerAccessKeysEnabled?: boolean; + purchaseArticleFee?: number + purchaseArticleFeeDescription?: components['schemas']['LocaleObject'] + purchaseArticleFeeEnabled?: boolean + purchaseArticleFeeName?: components['schemas']['LocaleObject'] + purchaseIssueFee?: number + purchaseIssueFeeEnabled?: boolean + rateReviewerOnQuality?: boolean + readerInformation?: components['schemas']['LocaleObject'] + restrictArticleAccess?: boolean + restrictOnlyPdf?: boolean + restrictReviewerFileAccess?: boolean + restrictSiteAccess?: boolean + reviewGuidelines?: components['schemas']['LocaleObject'] + reviewerAccessKeysEnabled?: boolean /** @description Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - rights?: string; - searchDescription?: components["schemas"]["LocaleObject"]; - seq?: number; - showEnsuringLink?: boolean; - sidebar?: string[]; + rights?: string + searchDescription?: components['schemas']['LocaleObject'] + seq?: number + showEnsuringLink?: boolean + sidebar?: string[] /** @description Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - source?: string; + source?: string styleSheet?: { - name?: string; - uploadName?: string; - dateUploaded?: string; - }; + name?: string + uploadName?: string + dateUploaded?: string + } /** @description Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - subjects?: string; + subjects?: string /** * @default [ * { @@ -2368,83 +2364,83 @@ export interface components { * ] */ submissionChecklist?: { - order?: number; - content?: string; - }[]; - submissionFee?: number; - submissionFeeDescription?: components["schemas"]["LocaleObject"]; - submissionFeeName?: components["schemas"]["LocaleObject"]; - subscriptionAdditionalInformation?: components["schemas"]["LocaleObject"]; - subscriptionEmail?: string; - subscriptionExpiryPartial?: boolean; - subscriptionMailingAddress?: string; - subscriptionName?: string; - subscriptionPhone?: string; - supportEmail?: string; - supportName?: string; - supportPhone?: string; - supportedFormLocales?: string[]; - supportedLocales?: string[]; - supportedSubmissionLocales?: string[]; + order?: number + content?: string + }[] + submissionFee?: number + submissionFeeDescription?: components['schemas']['LocaleObject'] + submissionFeeName?: components['schemas']['LocaleObject'] + subscriptionAdditionalInformation?: components['schemas']['LocaleObject'] + subscriptionEmail?: string + subscriptionExpiryPartial?: boolean + subscriptionMailingAddress?: string + subscriptionName?: string + subscriptionPhone?: string + supportEmail?: string + supportName?: string + supportPhone?: string + supportedFormLocales?: string[] + supportedLocales?: string[] + supportedSubmissionLocales?: string[] /** @default default */ - themePluginPath?: string; - timeFormat?: components["schemas"]["LocaleObject"]; + themePluginPath?: string + timeFormat?: components['schemas']['LocaleObject'] /** @description Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - type?: string; - url?: string; - urlPath?: string; - }; + type?: string + url?: string + urlPath?: string + } /** @description A response object that will be returned when the request could not be fulfilled. */ ErrorResponse: { - error?: string; - errorMessage?: string; - }; + error?: string + errorMessage?: string + } EmailTemplate: { /** Format: uri */ - _href?: string; - body?: components["schemas"]["LocaleObject"]; + _href?: string + body?: components['schemas']['LocaleObject'] /** @description Can this email template be disabled in the context settings area? Default is `true`. */ - canDisable?: boolean; + canDisable?: boolean /** @description Can this email template be edited in the context settings area? Default is `true`. */ - canEdit?: boolean; + canEdit?: boolean /** @description The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. */ - contextId?: number; - description?: components["schemas"]["LocaleObject"]; + contextId?: number + description?: components['schemas']['LocaleObject'] /** @description Is this email template enabled? Default is `true`. */ - enabled?: boolean; + enabled?: boolean /** @description The `ROLE_ID_*` of the user who will send this email. */ - fromRoleId?: number; + fromRoleId?: number /** @description The email template ID. */ - id?: number; + id?: number /** @description A unique key for this email template. */ - key?: string; + key?: string /** @description The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. */ - stageId?: number; - subject?: components["schemas"]["LocaleObject"]; + stageId?: number + subject?: components['schemas']['LocaleObject'] /** @description The `ROLE_ID_*` of the user who will receive this email. */ - toRoleId?: number; - }; + toRoleId?: number + } Galley: { - file?: components["schemas"]["SubmissionFile"]; - id?: number; - isApproved?: boolean; + file?: components['schemas']['SubmissionFile'] + id?: number + isApproved?: boolean /** @description A human-readable label for this galley. For the primary article, it is usually indicates the format like PDF, ePub or full text. For supplementary files it often indicates the content, such as source data or interview transcripts. */ - label?: string; + label?: string /** @description The primary locale of this galley. */ - locale?: string; + locale?: string /** @description A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. */ - "pub-id::publisher-id"?: string; - publicationId?: number; + 'pub-id::publisher-id'?: string + publicationId?: number /** @description In what order this galley should appear in lists of galleys for this publication. */ - seq?: number; - submissionFileId?: number; + seq?: number + submissionFileId?: number /** @description An optional path to use in the URL instead of the ID. */ - urlPath?: string; + urlPath?: string /** @description The URL where this galley can be viewed or downloaded. */ - urlPublished?: string; + urlPublished?: string /** @description An optional URL where the galley can be viewed or downloaded. */ - urlRemote?: string; - }; + urlRemote?: string + } /** * @description A response object that will be returned when there are validation errors for the request parameters. Typically used with forms. * @example { @@ -2456,30 +2452,30 @@ export interface components { * ] * } */ - InvalidParametersResponse: { [key: string]: unknown }; + InvalidParametersResponse: { [key: string]: unknown } Issue: { - _href?: string; - articles?: components["schemas"]["SubmissionSummary"][]; - coverImageAltText?: components["schemas"]["LocaleObject"]; - coverImageUrl?: components["schemas"]["LocaleObject"]; - dateNotified?: string; - datePublished?: string; - description?: components["schemas"]["LocaleObject"]; - doi?: string; - galleys?: components["schemas"]["Galley"][]; - id?: number; - identification?: string; - isCurrent?: boolean; - lastModified?: string; - number?: string; - publishedUrl?: string; - sections?: components["schemas"]["SectionSummary"][]; - title?: components["schemas"]["LocaleObject"]; + _href?: string + articles?: components['schemas']['SubmissionSummary'][] + coverImageAltText?: components['schemas']['LocaleObject'] + coverImageUrl?: components['schemas']['LocaleObject'] + dateNotified?: string + datePublished?: string + description?: components['schemas']['LocaleObject'] + doi?: string + galleys?: components['schemas']['Galley'][] + id?: number + identification?: string + isCurrent?: boolean + lastModified?: string + number?: string + publishedUrl?: string + sections?: components['schemas']['SectionSummary'][] + title?: components['schemas']['LocaleObject'] /** @description An optional path to use in the URL instead of the ID. */ - urlPath?: string; - volume?: number; - year?: number; - }; + urlPath?: string + volume?: number + year?: number + } /** * @description Key/value pairs containing data stored by locale key. * @example { @@ -2487,668 +2483,668 @@ export interface components { * "fr_CA": "Nom de fichier" * } */ - LocaleObject: { [key: string]: unknown }; + LocaleObject: { [key: string]: unknown } Publication: { /** Format: uri */ - _href?: string; - abstract?: components["schemas"]["LocaleObject"]; + _href?: string + abstract?: components['schemas']['LocaleObject'] /** @default 0 */ - accessStatus?: number; + accessStatus?: number /** @description A list of the authors for this publication. */ - authors?: components["schemas"]["Author"][]; + authors?: components['schemas']['Author'][] /** @description All of the authors rendered with the appropriate separators according to the locale. */ - authorsString?: string; + authorsString?: string /** @description A shortened version of the authors rendered with the appropriate separators according to the locale. */ - authorsStringShort?: string; - categoryIds?: number[]; + authorsStringShort?: string + categoryIds?: number[] /** @description Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. */ - citations?: string[]; + citations?: string[] /** @description Optional metadata that contains references for works cited in this submission as raw text. */ - citationsRaw?: string; - copyrightHolder?: components["schemas"]["LocaleObject"]; + citationsRaw?: string + copyrightHolder?: components['schemas']['LocaleObject'] /** @description The copyright year for this publication. */ - copyrightYear?: number; + copyrightYear?: number coverImage?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - dateUploaded?: string; - uploadName?: string; - altText?: string; - }; + dateUploaded?: string + uploadName?: string + altText?: string + } fr_CA?: { - dateUploaded?: string; - uploadName?: string; - altText?: string; - }; - }; - coverage?: components["schemas"]["LocaleObject"]; - datePublished?: string; + dateUploaded?: string + uploadName?: string + altText?: string + } + } + coverage?: components['schemas']['LocaleObject'] + datePublished?: string /** @description Optional metadata that describes the submission's types of study or branches of knowledge. */ - disciplines?: string[]; - fullTitle?: components["schemas"]["LocaleObject"]; - galleys?: components["schemas"]["Galley"][]; + disciplines?: string[] + fullTitle?: components['schemas']['LocaleObject'] + galleys?: components['schemas']['Galley'][] /** * @description Whether the contributor details should be displayed for this publication. Commonly used for editorial statements without individual authorship. * @default false */ - hideAuthor?: boolean; - id?: number; - issueId?: number; + hideAuthor?: boolean + id?: number + issueId?: number /** @description Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. */ - keywords?: string[]; + keywords?: string[] /** @description Optional metadata that identifies the submission's primary language. */ - languages?: string[]; - lastModified?: string; + languages?: string[] + lastModified?: string /** @description A URL to a webpage describing the license terms for this publication. */ - licenseUrl?: string; + licenseUrl?: string /** @description The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. */ - locale?: string; + locale?: string /** @description The pages of the issue in which this article appears if it is published in a physical format. */ - pages?: string; - prefix?: components["schemas"]["LocaleObject"]; + pages?: string + prefix?: components['schemas']['LocaleObject'] /** @description Which `contributor` is the primary contact for this publication. */ - primaryContactId?: number; + primaryContactId?: number /** @description A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. */ - "pub-id::publisher-id"?: string; - rights?: components["schemas"]["LocaleObject"]; - sectionId?: number; + 'pub-id::publisher-id'?: string + rights?: components['schemas']['LocaleObject'] + sectionId?: number /** @default 0 */ - seq?: number; - source?: components["schemas"]["LocaleObject"]; + seq?: number + source?: components['schemas']['LocaleObject'] /** * @description Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`. * @default 1 */ - status?: number; + status?: number /** @description Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. */ - subjects?: string[]; - submissionId?: number; - subtitle?: components["schemas"]["LocaleObject"]; + subjects?: string[] + submissionId?: number + subtitle?: components['schemas']['LocaleObject'] /** @description Optional metadata that indicates the source of research funding or other institutional support. */ - supportingAgencies?: string[]; - title?: components["schemas"]["LocaleObject"]; - type?: components["schemas"]["LocaleObject"]; + supportingAgencies?: string[] + title?: components['schemas']['LocaleObject'] + type?: components['schemas']['LocaleObject'] /** @description An optional path to use in the URL instead of the ID. */ - urlPath?: string; + urlPath?: string /** @description The public URL for this publication or where it will be available if it has not yet been published. */ - urlPublished?: string; + urlPublished?: string /** @description The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. */ - version?: number; - }; + version?: number + } /** @description The total abstract and galley views for a published submission. */ PublicationStats: { - abstractViews?: number; - galleyViews?: number; - pdfViews?: number; - htmlViews?: number; - otherViews?: number; + abstractViews?: number + galleyViews?: number + pdfViews?: number + htmlViews?: number + otherViews?: number publication?: { - _href?: string; - fullTitle?: components["schemas"]["LocaleObject"]; - id?: number; - shortAuthorString?: string; - urlPublished?: string; - urlWorkflow?: string; - }; - }; + _href?: string + fullTitle?: components['schemas']['LocaleObject'] + id?: number + shortAuthorString?: string + urlPublished?: string + urlWorkflow?: string + } + } ReviewRound: { - id?: number; - round?: number; - stageId?: number; - status?: string; - statusId?: number; - }; + id?: number + round?: number + stageId?: number + status?: string + statusId?: number + } /** @description A special representation of a User assigned to a reviewer group. This model presents specific details about review activity. */ ReviewerSummary: { - _href?: string; - affiliation?: components["schemas"]["LocaleObject"]; - averageReviewCompletionDays?: number; - dateLastReviewAssignment?: string; - disabled?: boolean; - fullName?: string; - gossip?: components["schemas"]["LocaleObject"]; - groups?: components["schemas"]["UserGroup"][]; - id?: number; - interests?: components["schemas"]["UserInterest"][]; - reviewsActive?: number; - reviewsCompleted?: number; - reviewsCancelled?: number; - reviewsDeclined?: number; - userName?: string; - }; + _href?: string + affiliation?: components['schemas']['LocaleObject'] + averageReviewCompletionDays?: number + dateLastReviewAssignment?: string + disabled?: boolean + fullName?: string + gossip?: components['schemas']['LocaleObject'] + groups?: components['schemas']['UserGroup'][] + id?: number + interests?: components['schemas']['UserInterest'][] + reviewsActive?: number + reviewsCompleted?: number + reviewsCancelled?: number + reviewsDeclined?: number + userName?: string + } Section: { - abbrev?: components["schemas"]["LocaleObject"]; - id?: number; - seq?: number; - title?: components["schemas"]["LocaleObject"]; - }; + abbrev?: components['schemas']['LocaleObject'] + id?: number + seq?: number + title?: components['schemas']['LocaleObject'] + } Site: { - about?: components["schemas"]["LocaleObject"]; - contactEmail?: components["schemas"]["LocaleObject"]; - contactName?: components["schemas"]["LocaleObject"]; + about?: components['schemas']['LocaleObject'] + contactEmail?: components['schemas']['LocaleObject'] + contactName?: components['schemas']['LocaleObject'] /** @description Which hosted journals, presses or preprint servers are allowed to send bulk emails. */ - enableBulkEmails?: number[]; - installedLocales?: string[]; - minPasswordLength?: number; - pageFooter?: components["schemas"]["LocaleObject"]; + enableBulkEmails?: number[] + installedLocales?: string[] + minPasswordLength?: number + pageFooter?: components['schemas']['LocaleObject'] pageHeaderTitleImage?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } fr_CA?: { - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; - }; - primaryLocale?: string; - privacyStatement?: components["schemas"]["LocaleObject"]; - redirect?: number; - sidebar?: string[]; + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } + } + primaryLocale?: string + privacyStatement?: components['schemas']['LocaleObject'] + redirect?: number + sidebar?: string[] styleSheet?: { - name?: string; - uploadName?: string; - dateUploaded?: string; - }; - supportedLocales?: string[]; + name?: string + uploadName?: string + dateUploaded?: string + } + supportedLocales?: string[] /** @default default */ - themePluginPath?: string; - title?: components["schemas"]["LocaleObject"]; - }; + themePluginPath?: string + title?: components['schemas']['LocaleObject'] + } Submission: { - _href?: string; - contextId?: number; + _href?: string + contextId?: number /** @description Which publication is the latest published version. */ - currentPublicationId?: number; + currentPublicationId?: number /** @description The last time activity was recorded related to this submission. */ - dateLastActivity?: string; - dateSubmitted?: string; - id?: number; + dateLastActivity?: string + dateSubmitted?: string + id?: number /** @description The last time a modification was made to this submission or any of its associated objects. */ - lastModified?: string; + lastModified?: string /** @description The primary language of this submission. */ - locale?: string; + locale?: string /** @description A list of publications that have been created for this submission. */ - publications?: components["schemas"]["Publication"][]; + publications?: components['schemas']['Publication'][] /** @description Information about pending and completed review assignments. */ reviewAssignments?: { - id?: number; - isCurrentUserAssigned?: number; - status?: number; - statusLabel?: number; - dateDue?: number; - dateResponseDue?: number; - round?: number; - reviewRoundId?: number; - }[]; + id?: number + isCurrentUserAssigned?: number + status?: number + statusLabel?: number + dateDue?: number + dateResponseDue?: number + round?: number + reviewRoundId?: number + }[] /** @description A list of review rounds that have been opened for this submission. */ - reviewRounds?: components["schemas"]["ReviewRound"][]; + reviewRounds?: components['schemas']['ReviewRound'][] /** * @description The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. * @default 1 */ - stageId?: number; + stageId?: number /** @description Key data about the status, files and discussions of each stage. */ stages?: { - id?: number; - label?: string; - isActiveStage?: boolean; - currentUserAssignedRoles?: number[]; - status?: string; - statusId?: number; + id?: number + label?: string + isActiveStage?: boolean + currentUserAssignedRoles?: number[] + status?: string + statusId?: number files?: { - count?: number; - }; - queries?: unknown[]; - }[]; + count?: number + } + queries?: unknown[] + }[] /** * @description Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`. * @default 1 */ - status?: number; + status?: number /** @description A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. */ - statusLabel?: string; + statusLabel?: string /** * @description This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. * @default 1 */ - submissionProgress?: number; + submissionProgress?: number /** @description A URL to the author's editorial workflow. */ - urlAuthorWorkflow?: string; + urlAuthorWorkflow?: string /** @description A URL to the editors' and assistants' editorial workflow. */ - urlEditorialWorkflow?: string; + urlEditorialWorkflow?: string /** @description A URL to the current publication or where it will be published. */ - urlPublished?: string; + urlPublished?: string /** @description A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or `urlEditorialWorkflow. */ - urlWorkflow?: string; - }; + urlWorkflow?: string + } SubmissionFile: { /** Format: uri */ - _href?: string; + _href?: string /** @description Used with `assocType` to associate this file with an object such as a galley. */ - assocId?: number; + assocId?: number /** @description Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). */ - assocType?: number; + assocType?: number /** @description A caption for this file. Used with artwork such as images. */ - caption?: string; + caption?: string /** @description The copyright owner of this file. Used with artwork such as images. */ - copyrightOwner?: string; + copyrightOwner?: string /** @description The date this submission file object was created in the system. Set automatically by the software. */ - createdAt?: string; - creator?: components["schemas"]["LocaleObject"]; + createdAt?: string + creator?: components['schemas']['LocaleObject'] /** @description An attribution for this file, such as a photographer's name. Used with artwork such as images. */ - credit?: string; + credit?: string /** @description Public metadata about when this content was created. Used with supplementary files. */ - dateCreated?: string; + dateCreated?: string /** @description Any dependent files, typically images or audio files that are loaded by an HTML file. */ - dependentFiles?: components["schemas"]["SubmissionFile"][]; - description?: components["schemas"]["LocaleObject"]; - documentType?: string; - fileId?: number; - fileStage?: number; - genreId?: number; - id?: number; + dependentFiles?: components['schemas']['SubmissionFile'][] + description?: components['schemas']['LocaleObject'] + documentType?: string + fileId?: number + fileStage?: number + genreId?: number + id?: number /** @description The language of this file if it contains text. Used with supplementary files. */ - language?: string; + language?: string /** @description The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. */ - locale?: string; - mimetype?: string; - name?: components["schemas"]["LocaleObject"]; - path?: string; - publisher?: components["schemas"]["LocaleObject"]; + locale?: string + mimetype?: string + name?: components['schemas']['LocaleObject'] + path?: string + publisher?: components['schemas']['LocaleObject'] /** @description Previous versions of this file. */ revisions?: { - documentType?: string; - fileId?: number; - mimetype?: string; - path?: string; - url?: string; - }[]; - source?: components["schemas"]["LocaleObject"]; + documentType?: string + fileId?: number + mimetype?: string + path?: string + url?: string + }[] + source?: components['schemas']['LocaleObject'] /** @description When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. */ - sourceSubmissionFileId?: number; - sponsor?: components["schemas"]["LocaleObject"]; - subject?: components["schemas"]["LocaleObject"]; - submissionId?: number; + sourceSubmissionFileId?: number + sponsor?: components['schemas']['LocaleObject'] + subject?: components['schemas']['LocaleObject'] + submissionId?: number /** @description Licensing terms for this file. Used with artwork such as images. */ - terms?: string; + terms?: string /** @description When this object was last updated. */ - updatedAt?: string; - uploaderUserId?: number; - url?: string; - viewable?: boolean; - }; + updatedAt?: string + uploaderUserId?: number + url?: string + viewable?: boolean + } /** @description A theme with values for any of its theme options. The theme is provided in the `themePluginPath` key. Other keys may or may not exist depending on what options have been defined by that theme. */ ThemeOptions: { - themePluginPath?: string; - "..."?: string; - }; + themePluginPath?: string + '...'?: string + } TimelineInterval: { - date?: string; - label?: string; - value?: number; - }; + date?: string + label?: string + value?: number + } User: { - _href?: string; - affiliation?: components["schemas"]["LocaleObject"]; - authId?: number; - authString?: string; - billingAddress?: string; - biography?: components["schemas"]["LocaleObject"]; - country?: string; - dateLastRegistered?: string; - dateRegistered?: string; - dateValidated?: string; - disabled?: boolean; - disabledReason?: string; - email?: string; - familyName?: components["schemas"]["LocaleObject"]; - fullName?: string; - givenName?: components["schemas"]["LocaleObject"]; - gossip?: components["schemas"]["LocaleObject"]; - groups?: components["schemas"]["UserGroup"][]; - id?: number; - interests?: components["schemas"]["UserInterest"][]; - mailingAddress?: string; - mustChangePassword?: boolean; - orcid?: string; - phone?: string; - signature?: components["schemas"]["LocaleObject"]; - url?: string; - userName?: string; - }; + _href?: string + affiliation?: components['schemas']['LocaleObject'] + authId?: number + authString?: string + billingAddress?: string + biography?: components['schemas']['LocaleObject'] + country?: string + dateLastRegistered?: string + dateRegistered?: string + dateValidated?: string + disabled?: boolean + disabledReason?: string + email?: string + familyName?: components['schemas']['LocaleObject'] + fullName?: string + givenName?: components['schemas']['LocaleObject'] + gossip?: components['schemas']['LocaleObject'] + groups?: components['schemas']['UserGroup'][] + id?: number + interests?: components['schemas']['UserInterest'][] + mailingAddress?: string + mustChangePassword?: boolean + orcid?: string + phone?: string + signature?: components['schemas']['LocaleObject'] + url?: string + userName?: string + } UserGroup: { - abbrev?: components["schemas"]["LocaleObject"]; - id?: number; - name?: components["schemas"]["LocaleObject"]; - permitSelfRegistration?: boolean; - recommendOnly?: boolean; - roleId?: number; - showTitle?: boolean; - }; + abbrev?: components['schemas']['LocaleObject'] + id?: number + name?: components['schemas']['LocaleObject'] + permitSelfRegistration?: boolean + recommendOnly?: boolean + roleId?: number + showTitle?: boolean + } /** @description A user's review interests. */ UserInterest: { - id?: number; - interest?: string; - }; + id?: number + interest?: string + } AnnouncementEditable: { /** @description The journal, press or preprint server ID. */ - assocId?: number; + assocId?: number /** @description The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). */ - assocType?: number; + assocType?: number /** @description (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. */ - dateExpire?: string; + dateExpire?: string /** @description The date this announcement was posted. */ - datePosted?: string; - description?: components["schemas"]["LocaleObject"]; - descriptionShort?: components["schemas"]["LocaleObject"]; - id?: number; - title?: components["schemas"]["LocaleObject"]; + datePosted?: string + description?: components['schemas']['LocaleObject'] + descriptionShort?: components['schemas']['LocaleObject'] + id?: number + title?: components['schemas']['LocaleObject'] /** @description (Optional) One of the announcement type ids. */ - typeId?: number; - }; + typeId?: number + } AnnouncementSummary: { /** * Format: uri * @description The URL to this announcement in the REST API. */ - _href?: string; + _href?: string /** @description The journal, press or preprint server ID. */ - assocId?: number; + assocId?: number /** @description The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). */ - assocType?: number; + assocType?: number /** @description (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. */ - dateExpire?: string; + dateExpire?: string /** @description The date this announcement was posted. */ - datePosted?: string; - description?: components["schemas"]["LocaleObject"]; - descriptionShort?: components["schemas"]["LocaleObject"]; - id?: number; - title?: components["schemas"]["LocaleObject"]; + datePosted?: string + description?: components['schemas']['LocaleObject'] + descriptionShort?: components['schemas']['LocaleObject'] + id?: number + title?: components['schemas']['LocaleObject'] /** @description (Optional) One of the announcement type ids. */ - typeId?: number; - }; + typeId?: number + } AuthorEditable: { - affiliation?: components["schemas"]["LocaleObject"]; - biography?: components["schemas"]["LocaleObject"]; - country?: string; - email?: string; - familyName?: components["schemas"]["LocaleObject"]; - givenName?: components["schemas"]["LocaleObject"]; - id?: number; + affiliation?: components['schemas']['LocaleObject'] + biography?: components['schemas']['LocaleObject'] + country?: string + email?: string + familyName?: components['schemas']['LocaleObject'] + givenName?: components['schemas']['LocaleObject'] + id?: number /** * @description Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. * @default true */ - includeInBrowse?: boolean; + includeInBrowse?: boolean /** @description The ORCID of this contributor. See: https://orcid.org/ */ - orcid?: string; - preferredPublicName?: components["schemas"]["LocaleObject"]; - publicationId?: number; + orcid?: string + preferredPublicName?: components['schemas']['LocaleObject'] + publicationId?: number /** @description The order in which this contributor should appear in a list of contriibutors. */ - seq?: number; + seq?: number /** @description An optional URL to this contributor's webpage. */ - url?: string; + url?: string /** @description in which user group should this contributor be identified. Usually one of the author roles, such as Author or Translator. */ - userGroupId?: number; - }; + userGroupId?: number + } AuthorSummary: { - affiliation?: components["schemas"]["LocaleObject"]; - email?: string; - familyName?: components["schemas"]["LocaleObject"]; - givenName?: components["schemas"]["LocaleObject"]; - id?: number; + affiliation?: components['schemas']['LocaleObject'] + email?: string + familyName?: components['schemas']['LocaleObject'] + givenName?: components['schemas']['LocaleObject'] + id?: number /** * @description Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. * @default true */ - includeInBrowse?: boolean; + includeInBrowse?: boolean /** @description The ORCID of this contributor. See: https://orcid.org/ */ - orcid?: string; - preferredPublicName?: components["schemas"]["LocaleObject"]; - publicationId?: number; + orcid?: string + preferredPublicName?: components['schemas']['LocaleObject'] + publicationId?: number /** @description The order in which this contributor should appear in a list of contriibutors. */ - seq?: number; + seq?: number /** @description The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. */ - submissionLocale?: string; + submissionLocale?: string /** @description in which user group should this contributor be identified. Usually one of the author roles, such as Author or Translator. */ - userGroupId?: number; - }; + userGroupId?: number + } ContextEditable: { - abbreviation?: components["schemas"]["LocaleObject"]; - about?: components["schemas"]["LocaleObject"]; - acronym?: components["schemas"]["LocaleObject"]; - additionalHomeContent?: components["schemas"]["LocaleObject"]; + abbreviation?: components['schemas']['LocaleObject'] + about?: components['schemas']['LocaleObject'] + acronym?: components['schemas']['LocaleObject'] + additionalHomeContent?: components['schemas']['LocaleObject'] /** @description Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - agencies?: string; - announcementsIntroduction?: components["schemas"]["LocaleObject"]; - authorGuidelines?: components["schemas"]["LocaleObject"]; - authorInformation?: components["schemas"]["LocaleObject"]; + agencies?: string + announcementsIntroduction?: components['schemas']['LocaleObject'] + authorGuidelines?: components['schemas']['LocaleObject'] + authorInformation?: components['schemas']['LocaleObject'] /** @description Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - citations?: string; - clockssLicense?: components["schemas"]["LocaleObject"]; - competingInterests?: components["schemas"]["LocaleObject"]; - contactAffiliation?: components["schemas"]["LocaleObject"]; - contactEmail?: string; - contactName?: string; - contactPhone?: string; - copyrightHolderOther?: components["schemas"]["LocaleObject"]; - copyrightHolderType?: string; - copyrightNotice?: components["schemas"]["LocaleObject"]; + citations?: string + clockssLicense?: components['schemas']['LocaleObject'] + competingInterests?: components['schemas']['LocaleObject'] + contactAffiliation?: components['schemas']['LocaleObject'] + contactEmail?: string + contactName?: string + contactPhone?: string + copyrightHolderOther?: components['schemas']['LocaleObject'] + copyrightHolderType?: string + copyrightNotice?: components['schemas']['LocaleObject'] /** @default issue */ - copyrightYearBasis?: string; + copyrightYearBasis?: string /** @description Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - coverage?: string; - currency?: string; - customHeaders?: components["schemas"]["LocaleObject"]; - dateFormatLong?: components["schemas"]["LocaleObject"]; - dateFormatShort?: components["schemas"]["LocaleObject"]; - datetimeFormatLong?: components["schemas"]["LocaleObject"]; - datetimeFormatShort?: components["schemas"]["LocaleObject"]; - defaultMetricType?: string; + coverage?: string + currency?: string + customHeaders?: components['schemas']['LocaleObject'] + dateFormatLong?: components['schemas']['LocaleObject'] + dateFormatShort?: components['schemas']['LocaleObject'] + datetimeFormatLong?: components['schemas']['LocaleObject'] + datetimeFormatShort?: components['schemas']['LocaleObject'] + defaultMetricType?: string /** @default 2 */ - defaultReviewMode?: number; - delayedOpenAccessDuration?: number; - delayedOpenAccessPolicy?: components["schemas"]["LocaleObject"]; - description?: components["schemas"]["LocaleObject"]; + defaultReviewMode?: number + delayedOpenAccessDuration?: number + delayedOpenAccessPolicy?: components['schemas']['LocaleObject'] + description?: components['schemas']['LocaleObject'] /** @description User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. */ - disableBulkEmailUserGroups?: number[]; + disableBulkEmailUserGroups?: number[] /** @default false */ - disableSubmissions?: boolean; - disableUserReg?: boolean; + disableSubmissions?: boolean + disableUserReg?: boolean /** @description Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - disciplines?: string; - editorialTeam?: components["schemas"]["LocaleObject"]; - emailSignature?: string; - enableAnnouncements?: boolean; - enableClockss?: boolean; - enableLockss?: boolean; + disciplines?: string + editorialTeam?: components['schemas']['LocaleObject'] + emailSignature?: string + enableAnnouncements?: boolean + enableClockss?: boolean + enableLockss?: boolean /** @default 1 */ - enableOai?: boolean; - enableOpenAccessNotification?: boolean; - enablePublisherId?: string[]; - enableSubscriptionOnlinePaymentNotificationPurchaseIndividual?: boolean; - enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional?: boolean; - enableSubscriptionOnlinePaymentNotificationRenewIndividual?: boolean; - enableSubscriptionOnlinePaymentNotificationRenewInstitutional?: boolean; - enabled?: boolean; - envelopeSender?: string; + enableOai?: boolean + enableOpenAccessNotification?: boolean + enablePublisherId?: string[] + enableSubscriptionOnlinePaymentNotificationPurchaseIndividual?: boolean + enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional?: boolean + enableSubscriptionOnlinePaymentNotificationRenewIndividual?: boolean + enableSubscriptionOnlinePaymentNotificationRenewInstitutional?: boolean + enabled?: boolean + envelopeSender?: string favicon?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; + temporaryFileId?: number + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } fr_CA?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; - }; + temporaryFileId?: number + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } + } homepageImage?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; + temporaryFileId?: number + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } fr_CA?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; - }; + temporaryFileId?: number + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } + } /** @default 25 */ - itemsPerPage?: number; + itemsPerPage?: number journalThumbnail?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; + temporaryFileId?: number + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } fr_CA?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; - }; + temporaryFileId?: number + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } + } /** * @description Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. * @default request */ - keywords?: string; + keywords?: string /** @description Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - languages?: string; - librarianInformation?: components["schemas"]["LocaleObject"]; - licenseTerms?: components["schemas"]["LocaleObject"]; - licenseUrl?: string; - lockssLicense?: components["schemas"]["LocaleObject"]; - mailingAddress?: string; + languages?: string + librarianInformation?: components['schemas']['LocaleObject'] + licenseTerms?: components['schemas']['LocaleObject'] + licenseUrl?: string + lockssLicense?: components['schemas']['LocaleObject'] + mailingAddress?: string /** @default 0 */ - membershipFee?: number; - membershipFeeDescription?: components["schemas"]["LocaleObject"]; - membershipFeeName?: components["schemas"]["LocaleObject"]; - name?: components["schemas"]["LocaleObject"]; - numAnnouncementsHomepage?: number; - numDaysBeforeInviteReminder?: number; - numDaysBeforeSubmitReminder?: number; - numMonthsAfterSubscriptionExpiryReminder?: number; - numMonthsBeforeSubscriptionExpiryReminder?: number; + membershipFee?: number + membershipFeeDescription?: components['schemas']['LocaleObject'] + membershipFeeName?: components['schemas']['LocaleObject'] + name?: components['schemas']['LocaleObject'] + numAnnouncementsHomepage?: number + numDaysBeforeInviteReminder?: number + numDaysBeforeSubmitReminder?: number + numMonthsAfterSubscriptionExpiryReminder?: number + numMonthsBeforeSubscriptionExpiryReminder?: number /** @default 10 */ - numPageLinks?: number; - numWeeksAfterSubscriptionExpiryReminder?: number; - numWeeksBeforeSubscriptionExpiryReminder?: number; + numPageLinks?: number + numWeeksAfterSubscriptionExpiryReminder?: number + numWeeksBeforeSubscriptionExpiryReminder?: number /** @default 4 */ - numWeeksPerResponse?: number; + numWeeksPerResponse?: number /** @default 4 */ - numWeeksPerReview?: number; - onlineIssn?: string; - openAccessPolicy?: components["schemas"]["LocaleObject"]; - pageFooter?: components["schemas"]["LocaleObject"]; + numWeeksPerReview?: number + onlineIssn?: string + openAccessPolicy?: components['schemas']['LocaleObject'] + pageFooter?: components['schemas']['LocaleObject'] pageHeaderLogoImage?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; + temporaryFileId?: number + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } fr_CA?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; - }; - paymentPluginName?: string; - paymentsEnabled?: boolean; - primaryLocale?: string; - printIssn?: string; - privacyStatement?: components["schemas"]["LocaleObject"]; + temporaryFileId?: number + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } + } + paymentPluginName?: string + paymentsEnabled?: boolean + primaryLocale?: string + printIssn?: string + privacyStatement?: components['schemas']['LocaleObject'] /** @default 0 */ - publicationFee?: number; - publicationFeeDescription?: components["schemas"]["LocaleObject"]; - publicationFeeName?: components["schemas"]["LocaleObject"]; - publisherInstitution?: string; - publishingMode?: number; + publicationFee?: number + publicationFeeDescription?: components['schemas']['LocaleObject'] + publicationFeeName?: components['schemas']['LocaleObject'] + publisherInstitution?: string + publishingMode?: number /** @default 0 */ - purchaseArticleFee?: number; - purchaseArticleFeeDescription?: components["schemas"]["LocaleObject"]; - purchaseArticleFeeEnabled?: boolean; - purchaseArticleFeeName?: components["schemas"]["LocaleObject"]; - purchaseIssueFee?: number; - purchaseIssueFeeEnabled?: boolean; - rateReviewerOnQuality?: boolean; - readerInformation?: components["schemas"]["LocaleObject"]; - restrictArticleAccess?: boolean; - restrictOnlyPdf?: boolean; - restrictReviewerFileAccess?: boolean; - restrictSiteAccess?: boolean; - reviewGuidelines?: components["schemas"]["LocaleObject"]; - reviewerAccessKeysEnabled?: boolean; + purchaseArticleFee?: number + purchaseArticleFeeDescription?: components['schemas']['LocaleObject'] + purchaseArticleFeeEnabled?: boolean + purchaseArticleFeeName?: components['schemas']['LocaleObject'] + purchaseIssueFee?: number + purchaseIssueFeeEnabled?: boolean + rateReviewerOnQuality?: boolean + readerInformation?: components['schemas']['LocaleObject'] + restrictArticleAccess?: boolean + restrictOnlyPdf?: boolean + restrictReviewerFileAccess?: boolean + restrictSiteAccess?: boolean + reviewGuidelines?: components['schemas']['LocaleObject'] + reviewerAccessKeysEnabled?: boolean /** @description Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - rights?: string; - searchDescription?: components["schemas"]["LocaleObject"]; - seq?: number; - showEnsuringLink?: boolean; - sidebar?: string[]; + rights?: string + searchDescription?: components['schemas']['LocaleObject'] + seq?: number + showEnsuringLink?: boolean + sidebar?: string[] /** @description Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - source?: string; + source?: string styleSheet?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - dateUploaded?: string; - }; + temporaryFileId?: number + name?: string + uploadName?: string + dateUploaded?: string + } /** @description Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - subjects?: string; + subjects?: string /** * @default [ * { @@ -3184,537 +3180,537 @@ export interface components { * ] */ submissionChecklist?: { - order?: number; - content?: string; - }[]; - submissionFee?: number; - submissionFeeDescription?: components["schemas"]["LocaleObject"]; - submissionFeeName?: components["schemas"]["LocaleObject"]; - subscriptionAdditionalInformation?: components["schemas"]["LocaleObject"]; - subscriptionEmail?: string; - subscriptionExpiryPartial?: boolean; - subscriptionMailingAddress?: string; - subscriptionName?: string; - subscriptionPhone?: string; - supportEmail?: string; - supportName?: string; - supportPhone?: string; - supportedFormLocales?: string[]; - supportedLocales?: string[]; - supportedSubmissionLocales?: string[]; + order?: number + content?: string + }[] + submissionFee?: number + submissionFeeDescription?: components['schemas']['LocaleObject'] + submissionFeeName?: components['schemas']['LocaleObject'] + subscriptionAdditionalInformation?: components['schemas']['LocaleObject'] + subscriptionEmail?: string + subscriptionExpiryPartial?: boolean + subscriptionMailingAddress?: string + subscriptionName?: string + subscriptionPhone?: string + supportEmail?: string + supportName?: string + supportPhone?: string + supportedFormLocales?: string[] + supportedLocales?: string[] + supportedSubmissionLocales?: string[] /** @default default */ - themePluginPath?: string; - timeFormat?: components["schemas"]["LocaleObject"]; + themePluginPath?: string + timeFormat?: components['schemas']['LocaleObject'] /** @description Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. */ - type?: string; - urlPath?: string; - }; + type?: string + urlPath?: string + } ContextSummary: { /** Format: uri */ - _href?: string; - abbreviation?: components["schemas"]["LocaleObject"]; - acronym?: components["schemas"]["LocaleObject"]; - description?: components["schemas"]["LocaleObject"]; - enabled?: boolean; - id?: number; + _href?: string + abbreviation?: components['schemas']['LocaleObject'] + acronym?: components['schemas']['LocaleObject'] + description?: components['schemas']['LocaleObject'] + enabled?: boolean + id?: number journalThumbnail?: { - type?: unknown; - properties?: unknown; - en_US?: { [key: string]: unknown }; - fr_CA?: { [key: string]: unknown }; - }; - name?: components["schemas"]["LocaleObject"]; - seq?: number; - url?: string; - urlPath?: string; - }; + type?: unknown + properties?: unknown + en_US?: { [key: string]: unknown } + fr_CA?: { [key: string]: unknown } + } + name?: components['schemas']['LocaleObject'] + seq?: number + url?: string + urlPath?: string + } EmailTemplateEditable: { - body?: components["schemas"]["LocaleObject"]; + body?: components['schemas']['LocaleObject'] /** @description The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. */ - contextId?: number; + contextId?: number /** @description Is this email template enabled? Default is `true`. */ - enabled?: boolean; + enabled?: boolean /** @description A unique key for this email template. */ - key?: string; - subject?: components["schemas"]["LocaleObject"]; - }; + key?: string + subject?: components['schemas']['LocaleObject'] + } EmailTemplateSummary: { /** Format: uri */ - _href?: string; - body?: components["schemas"]["LocaleObject"]; + _href?: string + body?: components['schemas']['LocaleObject'] /** @description Can this email template be disabled in the context settings area? Default is `true`. */ - canDisable?: boolean; + canDisable?: boolean /** @description Can this email template be edited in the context settings area? Default is `true`. */ - canEdit?: boolean; + canEdit?: boolean /** @description The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. */ - contextId?: number; - description?: components["schemas"]["LocaleObject"]; + contextId?: number + description?: components['schemas']['LocaleObject'] /** @description Is this email template enabled? Default is `true`. */ - enabled?: boolean; + enabled?: boolean /** @description The `ROLE_ID_*` of the user who will send this email. */ - fromRoleId?: number; + fromRoleId?: number /** @description The email template ID. */ - id?: number; + id?: number /** @description A unique key for this email template. */ - key?: string; + key?: string /** @description The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. */ - stageId?: number; - subject?: components["schemas"]["LocaleObject"]; + stageId?: number + subject?: components['schemas']['LocaleObject'] /** @description The `ROLE_ID_*` of the user who will receive this email. */ - toRoleId?: number; - }; + toRoleId?: number + } GalleyEditable: { - isApproved?: boolean; + isApproved?: boolean /** @description A human-readable label for this galley. For the primary article, it is usually indicates the format like PDF, ePub or full text. For supplementary files it often indicates the content, such as source data or interview transcripts. */ - label?: string; + label?: string /** @description The primary locale of this galley. */ - locale?: string; + locale?: string /** @description A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. */ - "pub-id::publisher-id"?: string; - publicationId?: number; + 'pub-id::publisher-id'?: string + publicationId?: number /** @description In what order this galley should appear in lists of galleys for this publication. */ - seq?: number; - submissionFileId?: number; + seq?: number + submissionFileId?: number /** @description An optional path to use in the URL instead of the ID. */ - urlPath?: string; + urlPath?: string /** @description An optional URL where the galley can be viewed or downloaded. */ - urlRemote?: string; - }; + urlRemote?: string + } GalleySummary: { - file?: components["schemas"]["SubmissionFile"]; - id?: number; - isApproved?: boolean; + file?: components['schemas']['SubmissionFile'] + id?: number + isApproved?: boolean /** @description A human-readable label for this galley. For the primary article, it is usually indicates the format like PDF, ePub or full text. For supplementary files it often indicates the content, such as source data or interview transcripts. */ - label?: string; + label?: string /** @description The primary locale of this galley. */ - locale?: string; + locale?: string /** @description A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. */ - "pub-id::publisher-id"?: string; - publicationId?: number; + 'pub-id::publisher-id'?: string + publicationId?: number /** @description In what order this galley should appear in lists of galleys for this publication. */ - seq?: number; - submissionFileId?: number; + seq?: number + submissionFileId?: number /** @description The URL where this galley can be viewed or downloaded. */ - urlPublished?: string; + urlPublished?: string /** @description An optional URL where the galley can be viewed or downloaded. */ - urlRemote?: string; - }; + urlRemote?: string + } IssueEditable: { - coverImageAltText?: components["schemas"]["LocaleObject"]; - coverImageUrl?: components["schemas"]["LocaleObject"]; - dateNotified?: string; - datePublished?: string; - description?: components["schemas"]["LocaleObject"]; - doi?: string; - id?: number; - lastModified?: string; - number?: string; - publishedUrl?: string; - title?: components["schemas"]["LocaleObject"]; + coverImageAltText?: components['schemas']['LocaleObject'] + coverImageUrl?: components['schemas']['LocaleObject'] + dateNotified?: string + datePublished?: string + description?: components['schemas']['LocaleObject'] + doi?: string + id?: number + lastModified?: string + number?: string + publishedUrl?: string + title?: components['schemas']['LocaleObject'] /** @description An optional path to use in the URL instead of the ID. */ - urlPath?: string; - volume?: number; - year?: number; - }; + urlPath?: string + volume?: number + year?: number + } IssueSummary: { - _href?: string; - coverImageAltText?: components["schemas"]["LocaleObject"]; - coverImageUrl?: components["schemas"]["LocaleObject"]; - datePublished?: string; - description?: components["schemas"]["LocaleObject"]; - galleys?: components["schemas"]["Galley"][]; - id?: number; - identification?: string; - number?: string; - publishedUrl?: string; - title?: components["schemas"]["LocaleObject"]; - volume?: number; - year?: number; - }; + _href?: string + coverImageAltText?: components['schemas']['LocaleObject'] + coverImageUrl?: components['schemas']['LocaleObject'] + datePublished?: string + description?: components['schemas']['LocaleObject'] + galleys?: components['schemas']['Galley'][] + id?: number + identification?: string + number?: string + publishedUrl?: string + title?: components['schemas']['LocaleObject'] + volume?: number + year?: number + } PublicationEditable: { - abstract?: components["schemas"]["LocaleObject"]; + abstract?: components['schemas']['LocaleObject'] /** @default 0 */ - accessStatus?: number; - categoryIds?: number[]; + accessStatus?: number + categoryIds?: number[] /** @description Optional metadata that contains references for works cited in this submission as raw text. */ - citationsRaw?: string; - copyrightHolder?: components["schemas"]["LocaleObject"]; + citationsRaw?: string + copyrightHolder?: components['schemas']['LocaleObject'] /** @description The copyright year for this publication. */ - copyrightYear?: number; + copyrightYear?: number coverImage?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - temporaryFileId?: number; - dateUploaded?: string; - uploadName?: string; - altText?: string; - }; + temporaryFileId?: number + dateUploaded?: string + uploadName?: string + altText?: string + } fr_CA?: { - temporaryFileId?: number; - dateUploaded?: string; - uploadName?: string; - altText?: string; - }; - }; - coverage?: components["schemas"]["LocaleObject"]; - datePublished?: string; + temporaryFileId?: number + dateUploaded?: string + uploadName?: string + altText?: string + } + } + coverage?: components['schemas']['LocaleObject'] + datePublished?: string /** @description Optional metadata that describes the submission's types of study or branches of knowledge. */ - disciplines?: string[]; + disciplines?: string[] /** * @description Whether the contributor details should be displayed for this publication. Commonly used for editorial statements without individual authorship. * @default false */ - hideAuthor?: boolean; - issueId?: number; + hideAuthor?: boolean + issueId?: number /** @description Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. */ - keywords?: string[]; + keywords?: string[] /** @description Optional metadata that identifies the submission's primary language. */ - languages?: string[]; - lastModified?: string; + languages?: string[] + lastModified?: string /** @description A URL to a webpage describing the license terms for this publication. */ - licenseUrl?: string; + licenseUrl?: string /** @description The pages of the issue in which this article appears if it is published in a physical format. */ - pages?: string; - prefix?: components["schemas"]["LocaleObject"]; + pages?: string + prefix?: components['schemas']['LocaleObject'] /** @description Which `contributor` is the primary contact for this publication. */ - primaryContactId?: number; + primaryContactId?: number /** @description A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. */ - "pub-id::publisher-id"?: string; - rights?: components["schemas"]["LocaleObject"]; - sectionId?: number; + 'pub-id::publisher-id'?: string + rights?: components['schemas']['LocaleObject'] + sectionId?: number /** @default 0 */ - seq?: number; - source?: components["schemas"]["LocaleObject"]; + seq?: number + source?: components['schemas']['LocaleObject'] /** * @description Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`. * @default 1 */ - status?: number; + status?: number /** @description Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. */ - subjects?: string[]; - submissionId?: number; - subtitle?: components["schemas"]["LocaleObject"]; + subjects?: string[] + submissionId?: number + subtitle?: components['schemas']['LocaleObject'] /** @description Optional metadata that indicates the source of research funding or other institutional support. */ - supportingAgencies?: string[]; - title?: components["schemas"]["LocaleObject"]; - type?: components["schemas"]["LocaleObject"]; + supportingAgencies?: string[] + title?: components['schemas']['LocaleObject'] + type?: components['schemas']['LocaleObject'] /** @description An optional path to use in the URL instead of the ID. */ - urlPath?: string; + urlPath?: string /** @description The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. */ - version?: number; - }; + version?: number + } PublicationSummary: { /** Format: uri */ - _href?: string; + _href?: string /** @description All of the authors rendered with the appropriate separators according to the locale. */ - authorsString?: string; + authorsString?: string /** @description A shortened version of the authors rendered with the appropriate separators according to the locale. */ - authorsStringShort?: string; - categoryIds?: number[]; + authorsStringShort?: string + categoryIds?: number[] coverImage?: { - type?: unknown; - properties?: unknown; - en_US?: { [key: string]: unknown }; - fr_CA?: { [key: string]: unknown }; - }; - datePublished?: string; - fullTitle?: components["schemas"]["LocaleObject"]; - galleys?: components["schemas"]["Galley"][]; - id?: number; + type?: unknown + properties?: unknown + en_US?: { [key: string]: unknown } + fr_CA?: { [key: string]: unknown } + } + datePublished?: string + fullTitle?: components['schemas']['LocaleObject'] + galleys?: components['schemas']['Galley'][] + id?: number /** @description The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. */ - locale?: string; + locale?: string /** @description The pages of the issue in which this article appears if it is published in a physical format. */ - pages?: string; - prefix?: components["schemas"]["LocaleObject"]; + pages?: string + prefix?: components['schemas']['LocaleObject'] /** @description Which `contributor` is the primary contact for this publication. */ - primaryContactId?: number; + primaryContactId?: number /** @description A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. */ - "pub-id::publisher-id"?: string; - sectionId?: number; + 'pub-id::publisher-id'?: string + sectionId?: number /** * @description Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`. * @default 1 */ - status?: number; - submissionId?: number; - subtitle?: components["schemas"]["LocaleObject"]; - title?: components["schemas"]["LocaleObject"]; + status?: number + submissionId?: number + subtitle?: components['schemas']['LocaleObject'] + title?: components['schemas']['LocaleObject'] /** @description The public URL for this publication or where it will be available if it has not yet been published. */ - urlPublished?: string; + urlPublished?: string /** @description The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. */ - version?: number; - }; + version?: number + } ReviewRoundEditable: { - id?: number; - round?: number; - stageId?: number; - statusId?: number; - }; + id?: number + round?: number + stageId?: number + statusId?: number + } SectionEditable: { - abbrev?: components["schemas"]["LocaleObject"]; - id?: number; - seq?: number; - title?: components["schemas"]["LocaleObject"]; - }; + abbrev?: components['schemas']['LocaleObject'] + id?: number + seq?: number + title?: components['schemas']['LocaleObject'] + } SectionSummary: { - abbrev?: components["schemas"]["LocaleObject"]; - id?: number; - seq?: number; - title?: components["schemas"]["LocaleObject"]; - }; + abbrev?: components['schemas']['LocaleObject'] + id?: number + seq?: number + title?: components['schemas']['LocaleObject'] + } SiteEditable: { - about?: components["schemas"]["LocaleObject"]; - contactEmail?: components["schemas"]["LocaleObject"]; - contactName?: components["schemas"]["LocaleObject"]; + about?: components['schemas']['LocaleObject'] + contactEmail?: components['schemas']['LocaleObject'] + contactName?: components['schemas']['LocaleObject'] /** @description Which hosted journals, presses or preprint servers are allowed to send bulk emails. */ - enableBulkEmails?: number[]; - installedLocales?: string[]; - minPasswordLength?: number; - pageFooter?: components["schemas"]["LocaleObject"]; + enableBulkEmails?: number[] + installedLocales?: string[] + minPasswordLength?: number + pageFooter?: components['schemas']['LocaleObject'] pageHeaderTitleImage?: { - type?: unknown; - properties?: unknown; + type?: unknown + properties?: unknown en_US?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; + temporaryFileId?: number + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } fr_CA?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - width?: number; - height?: number; - dateUploaded?: string; - altText?: string; - }; - }; - primaryLocale?: string; - privacyStatement?: components["schemas"]["LocaleObject"]; - redirect?: number; - sidebar?: string[]; + temporaryFileId?: number + name?: string + uploadName?: string + width?: number + height?: number + dateUploaded?: string + altText?: string + } + } + primaryLocale?: string + privacyStatement?: components['schemas']['LocaleObject'] + redirect?: number + sidebar?: string[] styleSheet?: { - temporaryFileId?: number; - name?: string; - uploadName?: string; - dateUploaded?: string; - }; - supportedLocales?: string[]; + temporaryFileId?: number + name?: string + uploadName?: string + dateUploaded?: string + } + supportedLocales?: string[] /** @default default */ - themePluginPath?: string; - title?: components["schemas"]["LocaleObject"]; - }; + themePluginPath?: string + title?: components['schemas']['LocaleObject'] + } SubmissionEditable: { - contextId?: number; + contextId?: number /** @description Which publication is the latest published version. */ - currentPublicationId?: number; + currentPublicationId?: number /** @description The last time activity was recorded related to this submission. */ - dateLastActivity?: string; - dateSubmitted?: string; - id?: number; + dateLastActivity?: string + dateSubmitted?: string + id?: number /** @description The last time a modification was made to this submission or any of its associated objects. */ - lastModified?: string; + lastModified?: string /** @description The primary language of this submission. */ - locale?: string; + locale?: string /** * @description The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. * @default 1 */ - stageId?: number; + stageId?: number /** * @description Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`. * @default 1 */ - status?: number; + status?: number /** * @description This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. * @default 1 */ - submissionProgress?: number; - }; + submissionProgress?: number + } SubmissionSummary: { - _href?: string; - contextId?: number; + _href?: string + contextId?: number /** @description Which publication is the latest published version. */ - currentPublicationId?: number; + currentPublicationId?: number /** @description The last time activity was recorded related to this submission. */ - dateLastActivity?: string; - dateSubmitted?: string; - id?: number; + dateLastActivity?: string + dateSubmitted?: string + id?: number /** @description The last time a modification was made to this submission or any of its associated objects. */ - lastModified?: string; + lastModified?: string /** @description The primary language of this submission. */ - locale?: string; + locale?: string /** @description A list of publications that have been created for this submission. */ - publications?: components["schemas"]["Publication"][]; + publications?: components['schemas']['Publication'][] /** * @description The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. * @default 1 */ - stageId?: number; + stageId?: number /** * @description Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`. * @default 1 */ - status?: number; + status?: number /** @description A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. */ - statusLabel?: string; + statusLabel?: string /** * @description This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. * @default 1 */ - submissionProgress?: number; + submissionProgress?: number /** @description A URL to the author's editorial workflow. */ - urlAuthorWorkflow?: string; + urlAuthorWorkflow?: string /** @description A URL to the editors' and assistants' editorial workflow. */ - urlEditorialWorkflow?: string; + urlEditorialWorkflow?: string /** @description A URL to the current publication or where it will be published. */ - urlPublished?: string; + urlPublished?: string /** @description A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or `urlEditorialWorkflow. */ - urlWorkflow?: string; - }; + urlWorkflow?: string + } SubmissionFileEditable: { /** @description Used with `assocType` to associate this file with an object such as a galley. */ - assocId?: number; + assocId?: number /** @description Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). */ - assocType?: number; + assocType?: number /** @description A caption for this file. Used with artwork such as images. */ - caption?: string; + caption?: string /** @description The copyright owner of this file. Used with artwork such as images. */ - copyrightOwner?: string; + copyrightOwner?: string /** @description The date this submission file object was created in the system. Set automatically by the software. */ - createdAt?: string; - creator?: components["schemas"]["LocaleObject"]; + createdAt?: string + creator?: components['schemas']['LocaleObject'] /** @description An attribution for this file, such as a photographer's name. Used with artwork such as images. */ - credit?: string; + credit?: string /** @description Public metadata about when this content was created. Used with supplementary files. */ - dateCreated?: string; - description?: components["schemas"]["LocaleObject"]; + dateCreated?: string + description?: components['schemas']['LocaleObject'] /** Format: binary */ - file?: string; - fileId?: number; - fileStage?: number; - genreId?: number; + file?: string + fileId?: number + fileStage?: number + genreId?: number /** @description The language of this file if it contains text. Used with supplementary files. */ - language?: string; - name?: components["schemas"]["LocaleObject"]; - publisher?: components["schemas"]["LocaleObject"]; - source?: components["schemas"]["LocaleObject"]; + language?: string + name?: components['schemas']['LocaleObject'] + publisher?: components['schemas']['LocaleObject'] + source?: components['schemas']['LocaleObject'] /** @description When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. */ - sourceSubmissionFileId?: number; - sponsor?: components["schemas"]["LocaleObject"]; - subject?: components["schemas"]["LocaleObject"]; - submissionId?: number; + sourceSubmissionFileId?: number + sponsor?: components['schemas']['LocaleObject'] + subject?: components['schemas']['LocaleObject'] + submissionId?: number /** @description Licensing terms for this file. Used with artwork such as images. */ - terms?: string; + terms?: string /** @description When this object was last updated. */ - updatedAt?: string; - uploaderUserId?: number; - viewable?: boolean; - }; + updatedAt?: string + uploaderUserId?: number + viewable?: boolean + } SubmissionFileSummary: { /** Format: uri */ - _href?: string; + _href?: string /** @description Used with `assocType` to associate this file with an object such as a galley. */ - assocId?: number; + assocId?: number /** @description Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). */ - assocType?: number; + assocType?: number /** @description A caption for this file. Used with artwork such as images. */ - caption?: string; + caption?: string /** @description The copyright owner of this file. Used with artwork such as images. */ - copyrightOwner?: string; + copyrightOwner?: string /** @description The date this submission file object was created in the system. Set automatically by the software. */ - createdAt?: string; - creator?: components["schemas"]["LocaleObject"]; + createdAt?: string + creator?: components['schemas']['LocaleObject'] /** @description An attribution for this file, such as a photographer's name. Used with artwork such as images. */ - credit?: string; + credit?: string /** @description Public metadata about when this content was created. Used with supplementary files. */ - dateCreated?: string; - description?: components["schemas"]["LocaleObject"]; - documentType?: string; - fileId?: number; - fileStage?: number; - genreId?: number; - id?: number; + dateCreated?: string + description?: components['schemas']['LocaleObject'] + documentType?: string + fileId?: number + fileStage?: number + genreId?: number + id?: number /** @description The language of this file if it contains text. Used with supplementary files. */ - language?: string; + language?: string /** @description The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. */ - locale?: string; - mimetype?: string; - name?: components["schemas"]["LocaleObject"]; - path?: string; - publisher?: components["schemas"]["LocaleObject"]; - source?: components["schemas"]["LocaleObject"]; + locale?: string + mimetype?: string + name?: components['schemas']['LocaleObject'] + path?: string + publisher?: components['schemas']['LocaleObject'] + source?: components['schemas']['LocaleObject'] /** @description When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. */ - sourceSubmissionFileId?: number; - sponsor?: components["schemas"]["LocaleObject"]; - subject?: components["schemas"]["LocaleObject"]; - submissionId?: number; + sourceSubmissionFileId?: number + sponsor?: components['schemas']['LocaleObject'] + subject?: components['schemas']['LocaleObject'] + submissionId?: number /** @description Licensing terms for this file. Used with artwork such as images. */ - terms?: string; + terms?: string /** @description When this object was last updated. */ - updatedAt?: string; - uploaderUserId?: number; - url?: string; - viewable?: boolean; - }; + updatedAt?: string + uploaderUserId?: number + url?: string + viewable?: boolean + } UserEditable: { - affiliation?: components["schemas"]["LocaleObject"]; - authId?: number; - authString?: string; - billingAddress?: string; - biography?: components["schemas"]["LocaleObject"]; - country?: string; - dateLastRegistered?: string; - dateRegistered?: string; - dateValidated?: string; - disabled?: boolean; - disabledReason?: string; - email?: string; - familyName?: components["schemas"]["LocaleObject"]; - givenName?: components["schemas"]["LocaleObject"]; - gossip?: components["schemas"]["LocaleObject"]; - mailingAddress?: string; - mustChangePassword?: boolean; - orcid?: string; - phone?: string; - signature?: components["schemas"]["LocaleObject"]; - url?: string; - userName?: string; - }; + affiliation?: components['schemas']['LocaleObject'] + authId?: number + authString?: string + billingAddress?: string + biography?: components['schemas']['LocaleObject'] + country?: string + dateLastRegistered?: string + dateRegistered?: string + dateValidated?: string + disabled?: boolean + disabledReason?: string + email?: string + familyName?: components['schemas']['LocaleObject'] + givenName?: components['schemas']['LocaleObject'] + gossip?: components['schemas']['LocaleObject'] + mailingAddress?: string + mustChangePassword?: boolean + orcid?: string + phone?: string + signature?: components['schemas']['LocaleObject'] + url?: string + userName?: string + } UserSummary: { - _href?: string; - disabled?: boolean; - email?: string; - fullName?: string; - groups?: components["schemas"]["UserGroup"][]; - id?: number; - orcid?: string; - userName?: string; - }; + _href?: string + disabled?: boolean + email?: string + fullName?: string + groups?: components['schemas']['UserGroup'][] + id?: number + orcid?: string + userName?: string + } UserGroupEditable: { - abbrev?: components["schemas"]["LocaleObject"]; - id?: number; - name?: components["schemas"]["LocaleObject"]; - permitSelfRegistration?: boolean; - recommendOnly?: boolean; - roleId?: number; - showTitle?: boolean; - }; - }; + abbrev?: components['schemas']['LocaleObject'] + id?: number + name?: components['schemas']['LocaleObject'] + permitSelfRegistration?: boolean + recommendOnly?: boolean + roleId?: number + showTitle?: boolean + } + } requestBodies: { /** The details you want to edit. The `themePluginPath` is required to specify the active theme, even if the theme is not being changed. Any additional keys/values must match the options defined by that theme. */ ThemeOptions: { content: { - "application/json": components["schemas"]["ThemeOptions"]; - }; - }; - }; + 'application/json': components['schemas']['ThemeOptions'] + } + } + } } export interface operations {} diff --git a/libs/citations/ojs-types/src/lib/swagger.json b/libs/citations/ojs-types/src/lib/swagger.json index 111ec68f..435b9867 100644 --- a/libs/citations/ojs-types/src/lib/swagger.json +++ b/libs/citations/ojs-types/src/lib/swagger.json @@ -77,9 +77,7 @@ "paths": { "/submissions": { "get": { - "tags": [ - "Submissions" - ], + "tags": ["Submissions"], "summary": "Get a list of submissions.", "description": "See `/submissions/{submissionId}` for notes about submission properties.", "parameters": [ @@ -94,12 +92,7 @@ "type": "array", "items": { "type": "integer", - "enum": [ - 1, - 3, - 4, - 5 - ] + "enum": [1, 3, 4, 5] } } }, @@ -143,12 +136,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "dateSubmitted", - "dateLastActivity", - "lastModified", - "title" - ], + "enum": ["dateSubmitted", "dateLastActivity", "lastModified", "title"], "default": "dateSubmitted" } }, @@ -159,10 +147,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "ASC", - "DESC" - ], + "enum": ["ASC", "DESC"], "default": "DESC" } }, @@ -268,9 +253,7 @@ } }, "post": { - "tags": [ - "Submissions" - ], + "tags": ["Submissions"], "summary": "Create a new submission.", "requestBody": { "content": { @@ -310,9 +293,7 @@ }, "/submissions/{submissionId}": { "get": { - "tags": [ - "Submissions" - ], + "tags": ["Submissions"], "summary": "Get a submission by ID.", "description": "* Unpublished submissions are only returned for assigned participants, editors and admins.\n* `abstract` includes HTML markup.\n* `pages` is usually a `string`. But in some cases it may return an array of arrays. Each array contains two items: the start and end page. Example: `[[25, 31], [45, 62]]`.\n* `submissionProgress` will be > 0 if the submission is incomplete.\n* `stages`, `reviewRounds` and `reviewAssignments` should only be returned for participants assigned to the submission.\n* `reviewAssignments` should only expose user-identifying information for editors and admins.", "parameters": [ @@ -363,9 +344,7 @@ } }, "put": { - "tags": [ - "Submissions" - ], + "tags": ["Submissions"], "summary": "Edit a submission.", "parameters": [ { @@ -436,9 +415,7 @@ } }, "delete": { - "tags": [ - "Submissions" - ], + "tags": ["Submissions"], "summary": "Delete a submission.", "description": "Only journal managers and subeditors can make a request to this endpoint.", "parameters": [ @@ -491,9 +468,7 @@ }, "/submissions/{submissionId}/files": { "get": { - "tags": [ - "Submissions / Files" - ], + "tags": ["Submissions / Files"], "summary": "Get a submission's files.", "description": "This will return all of a submission's files that the user is allowed to access, except review attachments and discussion files. A user is allowed to access different file stages depending on their stage assignment.\n* Managers, subeditors and assistants can access all file stages if they are assigned to the matching workflow stage. For example, an assistant assigned to the copyediting stage can access files in `SUBMISSION_FILE_COPYEDIT` and `SUBMISSION_FILE_FINAL`.\n* Authors are restricted to the `SUBMISSION_FILE_SUBMISSION`, `SUBMISSION_FILE_REVIEW_REVISION`, `SUBMISSION_FILE_COPYEDIT` and `SUBMISSION_FILE_PROOF` file stages. For example, an author with access to the copyediting stage will have access to `SUBMISSION_FILE_COPYEDIT` (copyedited files) but not `SUBMISSION_FILE_FINAL` (draft files).\n* Reviewers and readers are not allowed to access this endpoint.\n* Managers who are not assigned to the submission are allowed to access all file stages as though they are assigned to every workflow stage.", "parameters": [ @@ -564,9 +539,7 @@ } }, "post": { - "tags": [ - "Submissions / Files" - ], + "tags": ["Submissions / Files"], "summary": "Create a new submission file.", "description": "A user is allowed to upload to different file stages depending on their stage assignments. See the description for `GET /submission/{submissionId}/files` above. Once a submission has been completed, authors are no longer allowed to upload to `SUBMISSION_FILE_SUBMISSION`. Authors are not allowed to upload to `SUBMISSION_FILE_REVIEW_REVISION` until revisions have been requested.", "requestBody": { @@ -618,9 +591,7 @@ }, "/submissions/{submissionId}/files/{submissionFileId}": { "get": { - "tags": [ - "Submissions / Files" - ], + "tags": ["Submissions / Files"], "summary": "Get a submission file.", "description": "You must pass the correct `stageId` when requesting a file.", "parameters": [ @@ -678,9 +649,7 @@ } }, "put": { - "tags": [ - "Submissions / Files" - ], + "tags": ["Submissions / Files"], "summary": "Edit a submission file.", "description": "You must pass the correct `stageId` when editing a file.", "parameters": [ @@ -759,9 +728,7 @@ } }, "delete": { - "tags": [ - "Submissions / Files" - ], + "tags": ["Submissions / Files"], "summary": "Delete a submission file.", "description": "You must pass the correct `stageId` when deleting a file.", "parameters": [ @@ -821,9 +788,7 @@ }, "/submissions/{submissionId}/participants": { "get": { - "tags": [ - "Submissions / Participants" - ], + "tags": ["Submissions / Participants"], "summary": "Get assigned participants.", "description": "Get the participants assigned to a submisssion.", "parameters": [ @@ -868,9 +833,7 @@ }, "/submissions/{submissionId}/participants/{stageId}": { "get": { - "tags": [ - "Submissions / Participants" - ], + "tags": ["Submissions / Participants"], "summary": "Get assigned participants by stage.", "description": "Get all participants assigned to a submission for a specific workflow stage, such as the review or copyediting stage.", "parameters": [ @@ -924,9 +887,7 @@ }, "/submissions/{submissionId}/publications": { "get": { - "tags": [ - "Submissions / Publications" - ], + "tags": ["Submissions / Publications"], "summary": "Get a submission's publications.", "parameters": [ { @@ -968,9 +929,7 @@ } }, "post": { - "tags": [ - "Submissions / Publications" - ], + "tags": ["Submissions / Publications"], "summary": "Create a publication.", "description": "Create a new publication for a submission.", "parameters": [ @@ -1031,9 +990,7 @@ }, "/submissions/{submissionId}/publications/{publicationId}": { "get": { - "tags": [ - "Submissions / Publications" - ], + "tags": ["Submissions / Publications"], "summary": "Get a publication.", "parameters": [ { @@ -1081,9 +1038,7 @@ } }, "put": { - "tags": [ - "Submissions / Publications" - ], + "tags": ["Submissions / Publications"], "summary": "Edit a publication.", "parameters": [ { @@ -1163,9 +1118,7 @@ } }, "delete": { - "tags": [ - "Submissions / Publications" - ], + "tags": ["Submissions / Publications"], "summary": "Delete a publication.", "description": "Only journal managers and subeditors can make a request to this endpoint.", "parameters": [ @@ -1227,9 +1180,7 @@ }, "/submissions/{submissionId}/publications/{publicationId}/version": { "post": { - "tags": [ - "Submissions / Publications" - ], + "tags": ["Submissions / Publications"], "summary": "Create a new version of a publication.", "description": "Duplicate a publication, including author and galley records, in order to create a new version of a publication that can be edited.", "parameters": [ @@ -1291,9 +1242,7 @@ }, "/submissions/{submissionId}/publications/{publicationId}/publish": { "put": { - "tags": [ - "Submissions / Publications" - ], + "tags": ["Submissions / Publications"], "summary": "Publish a publication.", "description": "If the publication is assigned to an issue that is not yet published, it will be scheduled for publication and the `status` will be set to `STATUS_SCHEDULED`. If the issue is already published, it will be published immediately and the `status` will be set to `STATUS_PUBLISHED`.\n\nThe publication will be validated against any publishing requirements before it is published and a `400` response will be returned if it fails validation.", "parameters": [ @@ -1366,9 +1315,7 @@ }, "/submissions/{submissionId}/publications/{publicationId}/unpublish": { "put": { - "tags": [ - "Submissions / Publications" - ], + "tags": ["Submissions / Publications"], "summary": "Unpublish a publication.", "parameters": [ { @@ -1429,9 +1376,7 @@ }, "/issues": { "get": { - "tags": [ - "Issues" - ], + "tags": ["Issues"], "summary": "Get a list of issues.", "description": "Results are eordered by `datePublished`.", "parameters": [ @@ -1461,11 +1406,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "datePublished", - "lastModified", - "seq" - ], + "enum": ["datePublished", "lastModified", "seq"], "default": "datePublished" } }, @@ -1476,10 +1417,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "ASC", - "DESC" - ], + "enum": ["ASC", "DESC"], "default": "DESC" } }, @@ -1560,9 +1498,7 @@ }, "/issues/current": { "get": { - "tags": [ - "Issues" - ], + "tags": ["Issues"], "summary": "Get the current issue.", "responses": { "200": { @@ -1592,9 +1528,7 @@ }, "/issues/{issueId}": { "get": { - "tags": [ - "Issues" - ], + "tags": ["Issues"], "summary": "Get an issue by ID.", "description": "If the issue has a custom section order, the `seq` property of each `SectionSummary` will reflect the sequence for that issue.", "parameters": [ @@ -1636,9 +1570,7 @@ }, "/users": { "get": { - "tags": [ - "Users" - ], + "tags": ["Users"], "summary": "Get a list of users.", "parameters": [ { @@ -1662,11 +1594,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "active", - "disabled", - "all" - ], + "enum": ["active", "disabled", "all"], "default": "active" } }, @@ -1723,11 +1651,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "id", - "familyName", - "givenName" - ], + "enum": ["id", "familyName", "givenName"], "default": "id" } }, @@ -1738,10 +1662,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "ASC", - "DESC" - ], + "enum": ["ASC", "DESC"], "default": "DESC" } }, @@ -1794,9 +1715,7 @@ }, "/users/{userId}": { "get": { - "tags": [ - "Users" - ], + "tags": ["Users"], "summary": "Get a user by ID.", "parameters": [ { @@ -1826,9 +1745,7 @@ }, "/users/reviewers": { "get": { - "tags": [ - "Users" - ], + "tags": ["Users"], "summary": "Get a list of reviewers.", "parameters": [ { @@ -1838,11 +1755,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "active", - "disabled", - "all" - ], + "enum": ["active", "disabled", "all"], "default": "active" } }, @@ -1926,11 +1839,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "id", - "familyName", - "givenName" - ], + "enum": ["id", "familyName", "givenName"], "default": "id" } }, @@ -1941,10 +1850,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "ASC", - "DESC" - ], + "enum": ["ASC", "DESC"], "default": "DESC" } }, @@ -1997,9 +1903,7 @@ }, "/contexts": { "get": { - "tags": [ - "Contexts" - ], + "tags": ["Contexts"], "summary": "Get a list of contexts.", "description": "Get an array of the journals (OJS), presses (OMP) or preprint servers (OPS) hosted on this site.", "parameters": [ @@ -2078,9 +1982,7 @@ } }, "post": { - "tags": [ - "Contexts" - ], + "tags": ["Contexts"], "summary": "Create a new context.", "description": "Create a new journal (OJS), press (OMP) or preprint server (OPS).", "requestBody": { @@ -2121,9 +2023,7 @@ }, "/contexts/{contextId}": { "get": { - "tags": [ - "Contexts" - ], + "tags": ["Contexts"], "summary": "Get a context.", "parameters": [ { @@ -2173,9 +2073,7 @@ } }, "put": { - "tags": [ - "Contexts" - ], + "tags": ["Contexts"], "summary": "Edit a context.", "description": "Edit a journal (OJS), press (OMP) or preprint server (OPS).", "parameters": [ @@ -2247,9 +2145,7 @@ } }, "delete": { - "tags": [ - "Contexts" - ], + "tags": ["Contexts"], "summary": "Delete a context.", "description": "Delete a journal (OJS), press (OMP) or preprint server (OPS).", "parameters": [ @@ -2302,9 +2198,7 @@ }, "/contexts/{contextId}/theme": { "get": { - "tags": [ - "Contexts" - ], + "tags": ["Contexts"], "summary": "Get the active theme.", "description": "Get the active theme and theme options for any journal (OJS), press (OMP) or preprint server (OPS).", "parameters": [ @@ -2355,9 +2249,7 @@ } }, "put": { - "tags": [ - "Contexts" - ], + "tags": ["Contexts"], "summary": "Edit the active theme.", "description": "Edit the active theme and theme options for any journal (OJS), press (OMP) or preprint server (OPS).", "parameters": [ @@ -2424,9 +2316,7 @@ }, "/site": { "get": { - "tags": [ - "Site" - ], + "tags": ["Site"], "summary": "Get the site.", "responses": { "200": { @@ -2443,9 +2333,7 @@ } }, "put": { - "tags": [ - "Site" - ], + "tags": ["Site"], "summary": "Edit the site.", "requestBody": { "content": { @@ -2485,9 +2373,7 @@ }, "/site/theme": { "get": { - "tags": [ - "Site" - ], + "tags": ["Site"], "summary": "Get the theme.", "description": "Get the active theme and theme options for the site.", "responses": { @@ -2516,9 +2402,7 @@ } }, "put": { - "tags": [ - "Site" - ], + "tags": ["Site"], "summary": "Edit the theme.", "description": "Get the active theme and theme options for the site.", "requestBody": { @@ -2552,9 +2436,7 @@ }, "/announcements": { "get": { - "tags": [ - "Announcements" - ], + "tags": ["Announcements"], "summary": "Get a collection of announcements.", "parameters": [ { @@ -2637,9 +2519,7 @@ } }, "post": { - "tags": [ - "Announcements" - ], + "tags": ["Announcements"], "summary": "Create a new announcement.", "description": "Create and publish a new announcement in this context.", "requestBody": { @@ -2680,9 +2560,7 @@ }, "/announcements/{announcementId}": { "get": { - "tags": [ - "Announcements" - ], + "tags": ["Announcements"], "summary": "Get an announcement.", "parameters": [ { @@ -2732,9 +2610,7 @@ } }, "put": { - "tags": [ - "Announcements" - ], + "tags": ["Announcements"], "summary": "Edit an announcement.", "description": "Edit an announcement.", "parameters": [ @@ -2806,9 +2682,7 @@ } }, "delete": { - "tags": [ - "Announcements" - ], + "tags": ["Announcements"], "summary": "Delete an announcement.", "description": "Delete an announcement.", "parameters": [ @@ -2861,9 +2735,7 @@ }, "/emailTemplates": { "get": { - "tags": [ - "Email Templates" - ], + "tags": ["Email Templates"], "summary": "Get email templates.", "parameters": [ { @@ -2973,9 +2845,7 @@ } }, "post": { - "tags": [ - "Email Templates" - ], + "tags": ["Email Templates"], "summary": "Create an email template.", "requestBody": { "content": { @@ -3015,9 +2885,7 @@ }, "/emailTemplates/{key}": { "get": { - "tags": [ - "Email Templates" - ], + "tags": ["Email Templates"], "summary": "Get an email template by key.", "description": "Email templates are fetched by their key, rather than ID, so that a default template is retrieved if it has not been customized. See the [documentation](https://docs.pkp.sfu.ca/dev/documentation/en/email-templates).", "parameters": [ @@ -3068,9 +2936,7 @@ } }, "put": { - "tags": [ - "Email Templates" - ], + "tags": ["Email Templates"], "summary": "Edit an email template.", "parameters": [ { @@ -3141,9 +3007,7 @@ } }, "delete": { - "tags": [ - "Email Templates" - ], + "tags": ["Email Templates"], "summary": "Delete an email template.", "description": "Default templates that have not been modified can not be deleted.", "parameters": [ @@ -3196,9 +3060,7 @@ }, "/emailTemplates/restoreDefaults": { "delete": { - "tags": [ - "Email Templates" - ], + "tags": ["Email Templates"], "summary": "Restore default email templates.", "description": "Delete custom templates and reset all templates to their default settings.", "responses": { @@ -3221,9 +3083,7 @@ }, "/stats/editorial": { "get": { - "tags": [ - "Stats / Editorial" - ], + "tags": ["Stats / Editorial"], "summary": "Get editorial activity stats.", "description": "Returns information about editorial activity such as the number of submissions accepted and declined, the number of days to reach editorial decisions, and the acceptance and rejection rates.", "parameters": [ @@ -3378,9 +3238,7 @@ }, "/stats/editorial/averages": { "get": { - "tags": [ - "Stats / Editorial" - ], + "tags": ["Stats / Editorial"], "summary": "Get yearly averages of editorial stats.", "description": "Returns yearly averages of editorial activity. To ensure averages are calculated fairly, partial years are not included in the averages. For example, if the first submission was received in October 2017 and the last submission was received in the current calendar year, only submissions from 2018 up until the end of the previous calendar year will be used to calculate the average.", "parameters": [ @@ -3447,9 +3305,7 @@ }, "/stats/publications": { "get": { - "tags": [ - "Stats / Publications" - ], + "tags": ["Stats / Publications"], "summary": "Get the views of a publication.", "description": "Returns a list of publications ordered by their total abstract views. Includes total views by abstract, all galleys, PDF galleys, HTML galleys and other galleys.", "parameters": [ @@ -3529,10 +3385,7 @@ "required": false, "schema": { "type": "integer", - "enum": [ - "ASC", - "DESC" - ], + "enum": ["ASC", "DESC"], "default": "DESC" } } @@ -3590,9 +3443,7 @@ }, "/stats/publications/abstract": { "get": { - "tags": [ - "Stats / Publications" - ], + "tags": ["Stats / Publications"], "summary": "Get abstract views by day or month.", "description": "Returns a monthly or daily timeline of abstract views for the publications which match the request parameters.", "parameters": [ @@ -3603,10 +3454,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "day", - "month" - ], + "enum": ["day", "month"], "default": "month" } }, @@ -3719,9 +3567,7 @@ }, "/stats/publications/galley": { "get": { - "tags": [ - "Stats / Publications" - ], + "tags": ["Stats / Publications"], "summary": "Get galley views by day or month.", "description": "Returns a monthly or daily timeline of galley views for the publications which match the request parameters.", "parameters": [ @@ -3732,10 +3578,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "day", - "month" - ], + "enum": ["day", "month"], "default": "month" } }, @@ -3848,9 +3691,7 @@ }, "/stats/publications/{submissionId}": { "get": { - "tags": [ - "Stats / Publications" - ], + "tags": ["Stats / Publications"], "summary": "Get one publication's views by type.", "description": "Returns a publication's total views by abstract, all galleys, PDF galleys, HTML galleys and other galleys.", "parameters": [ @@ -3923,9 +3764,7 @@ }, "/stats/publications/{submissionId}/abstract": { "get": { - "tags": [ - "Stats / Publications" - ], + "tags": ["Stats / Publications"], "summary": "Get onne publication's abstract views by day or month.", "description": "Returns a monthly or daily timeline of abstract views for the requested publication.", "parameters": [ @@ -3936,10 +3775,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "day", - "month" - ], + "enum": ["day", "month"], "default": "month" } }, @@ -4015,9 +3851,7 @@ }, "/stats/publications/{submissionId}/galley": { "get": { - "tags": [ - "Stats / Publications" - ], + "tags": ["Stats / Publications"], "summary": "Get one publication's galley views by day or month.", "description": "Returns a monthly or daily timeline of galley views for the requested publication.", "parameters": [ @@ -4028,10 +3862,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "day", - "month" - ], + "enum": ["day", "month"], "default": "month" } }, @@ -4107,9 +3938,7 @@ }, "/stats/users": { "get": { - "tags": [ - "Stats / Users" - ], + "tags": ["Stats / Users"], "summary": "Get user statistics.", "description": "Returns a count of the number of user registrations broken down by roles.\n\nPlease note when using the `registeredBefore` and `registeredAfter` parameters that role counts reflect current user roles.\n\nA user who registered as an author in January, 2019 but was later appointed to subeditor will be counted as a subeditor when the registration date range includes January, 2019.", "parameters": [ @@ -4138,10 +3967,7 @@ "required": false, "schema": { "type": "string", - "enum": [ - "active", - "disabled" - ], + "enum": ["active", "disabled"], "default": "active" } } @@ -4238,9 +4064,7 @@ }, "/vocabs": { "get": { - "tags": [ - "Vocabs" - ], + "tags": ["Vocabs"], "summary": "Get controlled vocab entries.", "parameters": [ { @@ -4304,9 +4128,7 @@ }, "/temporaryFiles": { "options": { - "tags": [ - "Temporary Files" - ], + "tags": ["Temporary Files"], "summary": "Get headers for file uploads.", "description": "Responds with the appopriate headers to indicate file uploads maybe be sent, required by some file upload utilities which send a preflight request.", "responses": { @@ -4317,9 +4139,7 @@ } }, "post": { - "tags": [ - "Temporary Files" - ], + "tags": ["Temporary Files"], "summary": "Upload a file.", "description": "Upload a file to the temporary file storage area and receive a temporary file ID.", "requestBody": { @@ -4363,9 +4183,7 @@ }, "/_payments": { "put": { - "tags": [ - "Backend" - ], + "tags": ["Backend"], "summary": "Save payment settings.", "description": "This endpoint is used on the settings page to save payment plugin settings alongside the general journal settings for enabling payments and setting the currency.", "requestBody": { @@ -4410,9 +4228,7 @@ }, "/_uploadPublicFile": { "options": { - "tags": [ - "Backend" - ], + "tags": ["Backend"], "summary": "Get headers for file uploads.", "description": "Responds with the appopriate headers to indicate file uploads maybe be sent, required by some file upload utilities which send a preflight request.", "responses": { @@ -4423,9 +4239,7 @@ } }, "post": { - "tags": [ - "Backend" - ], + "tags": ["Backend"], "summary": "Upload a file.", "description": "The user's public file directory supports files uploaded through the TinyMCE rich text editor. This is commonly used in context settings but is also available to all registered users through their profile biography.", "requestBody": { @@ -4510,9 +4324,7 @@ }, "/_submissions": { "get": { - "tags": [ - "Backend" - ], + "tags": ["Backend"], "summary": "Get submissions.", "description": "This endpoint delivers a little bit of extra information about each submission that is used in the submissions list. This private endpoint saves a few extra HTTP requests, but it is more database-intensive for each query.", "parameters": [ @@ -4567,19 +4379,13 @@ "type": "string", "description": "(Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers.", "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d" - ] + "validation": ["nullable", "date_format:Y-m-d"] }, "datePosted": { "type": "string", "description": "The date this announcement was posted.", "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d H:i:s" - ] + "validation": ["nullable", "date_format:Y-m-d H:i:s"] }, "description": { "$ref": "#/components/schemas/LocaleObject" @@ -4598,9 +4404,7 @@ "type": "integer", "description": "(Optional) One of the announcement type ids.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] } } }, @@ -4619,9 +4423,7 @@ "email": { "type": "string", "apiSummary": true, - "validation": [ - "email_or_localhost" - ] + "validation": ["email_or_localhost"] }, "familyName": { "$ref": "#/components/schemas/LocaleObject" @@ -4643,9 +4445,7 @@ "type": "string", "description": "The ORCID of this contributor. See: https://orcid.org/", "apiSummary": true, - "validation": [ - "orcid" - ] + "validation": ["orcid"] }, "preferredPublicName": { "$ref": "#/components/schemas/LocaleObject" @@ -4668,9 +4468,7 @@ "url": { "type": "string", "description": "An optional URL to this contributor's webpage.", - "validation": [ - "url" - ] + "validation": ["url"] }, "userGroupId": { "type": "integer", @@ -4703,10 +4501,7 @@ "agencies": { "type": "string", "description": "Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "announcementsIntroduction": { "$ref": "#/components/schemas/LocaleObject" @@ -4720,10 +4515,7 @@ "citations": { "type": "string", "description": "Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "clockssLicense": { "$ref": "#/components/schemas/LocaleObject" @@ -4736,32 +4528,22 @@ }, "contactEmail": { "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] + "validation": ["nullable", "email_or_localhost"] }, "contactName": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "contactPhone": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "copyrightHolderOther": { "$ref": "#/components/schemas/LocaleObject" }, "copyrightHolderType": { "type": "string", - "validation": [ - "nullable", - "in:author,context,other" - ] + "validation": ["nullable", "in:author,context,other"] }, "copyrightNotice": { "$ref": "#/components/schemas/LocaleObject" @@ -4769,24 +4551,16 @@ "copyrightYearBasis": { "type": "string", "default": "issue", - "validation": [ - "in:issue,submission" - ] + "validation": ["in:issue,submission"] }, "coverage": { "type": "string", "description": "Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "currency": { "type": "string", - "validation": [ - "nullable", - "currency" - ] + "validation": ["nullable", "currency"] }, "customHeaders": { "$ref": "#/components/schemas/LocaleObject" @@ -4805,23 +4579,16 @@ }, "defaultMetricType": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "defaultReviewMode": { "type": "integer", "default": 2, - "validation": [ - "nullable", - "in:1,2,3" - ] + "validation": ["nullable", "in:1,2,3"] }, "delayedOpenAccessDuration": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "delayedOpenAccessPolicy": { "$ref": "#/components/schemas/LocaleObject" @@ -4839,23 +4606,16 @@ "disableSubmissions": { "type": "boolean", "default": false, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "disableUserReg": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "disciplines": { "type": "string", "description": "Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "editorialTeam": { "$ref": "#/components/schemas/LocaleObject" @@ -4863,73 +4623,51 @@ "emailSignature": { "type": "string", "defaultLocaleKey": "default.contextSettings.emailSignature", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableAnnouncements": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableClockss": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableLockss": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableOai": { "type": "boolean", "default": 1, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableOpenAccessNotification": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enablePublisherId": { "type": "array", "items": { "type": "string", - "validation": [ - "in:publication,galley,issue,issueGalley" - ] + "validation": ["in:publication,galley,issue,issueGalley"] } }, "enableSubscriptionOnlinePaymentNotificationPurchaseIndividual": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableSubscriptionOnlinePaymentNotificationRenewIndividual": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableSubscriptionOnlinePaymentNotificationRenewInstitutional": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enabled": { "type": "boolean", @@ -4937,17 +4675,12 @@ }, "envelopeSender": { "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] + "validation": ["nullable", "email_or_localhost"] }, "favicon": { "type": "object", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -5000,9 +4733,7 @@ "homepageImage": { "type": "object", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -5060,18 +4791,13 @@ "itemsPerPage": { "type": "integer", "default": 25, - "validation": [ - "nullable", - "min:1" - ] + "validation": ["nullable", "min:1"] }, "journalThumbnail": { "type": "object", "multilingual": true, "apiSummary": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -5091,9 +4817,7 @@ }, "dateUploaded": { "type": "string", - "validation": [ - "date_format:Y-m-d H:i:s" - ] + "validation": ["date_format:Y-m-d H:i:s"] }, "altText": { "type": "string" @@ -5116,9 +4840,7 @@ }, "dateUploaded": { "type": "string", - "validation": [ - "date_format:Y-m-d H:i:s" - ] + "validation": ["date_format:Y-m-d H:i:s"] }, "altText": { "type": "string" @@ -5131,18 +4853,12 @@ "type": "string", "default": "request", "description": "Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "languages": { "type": "string", "description": "Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "librarianInformation": { "$ref": "#/components/schemas/LocaleObject" @@ -5152,26 +4868,19 @@ }, "licenseUrl": { "type": "string", - "validation": [ - "nullable", - "url" - ] + "validation": ["nullable", "url"] }, "lockssLicense": { "$ref": "#/components/schemas/LocaleObject" }, "mailingAddress": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "membershipFee": { "type": "number", "default": 0, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "membershipFeeDescription": { "$ref": "#/components/schemas/LocaleObject" @@ -5184,79 +4893,50 @@ }, "numAnnouncementsHomepage": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "numDaysBeforeInviteReminder": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "numDaysBeforeSubmitReminder": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "numMonthsAfterSubscriptionExpiryReminder": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "numMonthsBeforeSubscriptionExpiryReminder": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "numPageLinks": { "type": "integer", "default": 10, - "validation": [ - "nullable", - "min:1" - ] + "validation": ["nullable", "min:1"] }, "numWeeksAfterSubscriptionExpiryReminder": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "numWeeksBeforeSubscriptionExpiryReminder": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "numWeeksPerResponse": { "type": "integer", "default": 4, - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "numWeeksPerReview": { "type": "integer", "default": 4, - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "onlineIssn": { "type": "string", - "validation": [ - "nullable", - "issn" - ] + "validation": ["nullable", "issn"] }, "openAccessPolicy": { "$ref": "#/components/schemas/LocaleObject" @@ -5267,9 +4947,7 @@ "pageHeaderLogoImage": { "type": "object", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -5321,28 +4999,19 @@ }, "paymentPluginName": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "paymentsEnabled": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "primaryLocale": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] }, "printIssn": { "type": "string", - "validation": [ - "nullable", - "issn" - ] + "validation": ["nullable", "issn"] }, "privacyStatement": { "$ref": "#/components/schemas/LocaleObject" @@ -5350,9 +5019,7 @@ "publicationFee": { "type": "number", "default": 0, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "publicationFeeDescription": { "$ref": "#/components/schemas/LocaleObject" @@ -5362,97 +5029,69 @@ }, "publisherInstitution": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "publishingMode": { "type": "integer", - "validation": [ - "nullable", - "in:0,1,2" - ] + "validation": ["nullable", "in:0,1,2"] }, "purchaseArticleFee": { "type": "number", "default": 0, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "purchaseArticleFeeDescription": { "$ref": "#/components/schemas/LocaleObject" }, "purchaseArticleFeeEnabled": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "purchaseArticleFeeName": { "$ref": "#/components/schemas/LocaleObject" }, "purchaseIssueFee": { "type": "number", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "purchaseIssueFeeEnabled": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "rateReviewerOnQuality": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "readerInformation": { "$ref": "#/components/schemas/LocaleObject" }, "restrictArticleAccess": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "restrictOnlyPdf": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "restrictReviewerFileAccess": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "restrictSiteAccess": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "reviewGuidelines": { "$ref": "#/components/schemas/LocaleObject" }, "reviewerAccessKeysEnabled": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "rights": { "type": "string", "description": "Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "searchDescription": { "$ref": "#/components/schemas/LocaleObject" @@ -5460,41 +5099,28 @@ "seq": { "type": "integer", "apiSummary": true, - "validation": [ - "min:0" - ] + "validation": ["min:0"] }, "showEnsuringLink": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "sidebar": { "type": "array", - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string", - "validation": [ - "alpha_dash" - ] + "validation": ["alpha_dash"] } }, "source": { "type": "string", "description": "Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "styleSheet": { "type": "object", - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "name": { "type": "string" @@ -5510,26 +5136,18 @@ "subjects": { "type": "string", "description": "Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "submissionChecklist": { "type": "array", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "object", "properties": { "order": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "content": { "type": "string" @@ -5574,10 +5192,7 @@ "properties": { "order": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "content": { "type": "string" @@ -5589,10 +5204,7 @@ "properties": { "order": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "content": { "type": "string" @@ -5603,9 +5215,7 @@ }, "submissionFee": { "type": "number", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "submissionFeeDescription": { "$ref": "#/components/schemas/LocaleObject" @@ -5618,79 +5228,55 @@ }, "subscriptionEmail": { "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] + "validation": ["nullable", "email_or_localhost"] }, "subscriptionExpiryPartial": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "subscriptionMailingAddress": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "subscriptionName": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "subscriptionPhone": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "supportEmail": { "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] + "validation": ["nullable", "email_or_localhost"] }, "supportName": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "supportPhone": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "supportedFormLocales": { "type": "array", "items": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] } }, "supportedLocales": { "type": "array", "items": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] } }, "supportedSubmissionLocales": { "type": "array", "items": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] } }, "themePluginPath": { @@ -5703,10 +5289,7 @@ "type": { "type": "string", "description": "Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "url": { "type": "string", @@ -5715,9 +5298,7 @@ }, "urlPath": { "type": "string", - "validation": [ - "regex:/^[a-zA-Z0-9]+([\\-_][a-zA-Z0-9]+)*$/" - ], + "validation": ["regex:/^[a-zA-Z0-9]+([\\-_][a-zA-Z0-9]+)*$/"], "apiSummary": true } } @@ -5762,10 +5343,7 @@ "type": "integer", "description": "The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`.", "apiSummary": "true", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "description": { "$ref": "#/components/schemas/LocaleObject" @@ -5791,9 +5369,7 @@ "type": "string", "description": "A unique key for this email template.", "apiSummary": true, - "validation": [ - "alpha_dash" - ] + "validation": ["alpha_dash"] }, "stageId": { "type": "integer", @@ -5836,9 +5412,7 @@ "type": "string", "description": "The primary locale of this galley.", "apiSummary": true, - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] }, "pub-id::publisher-id": { "type": "string", @@ -5857,17 +5431,12 @@ "submissionFileId": { "type": "integer", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "urlPath": { "type": "string", "description": "An optional path to use in the URL instead of the ID.", - "validation": [ - "nullable", - "regex:/^[-_a-z0-9]*$/" - ] + "validation": ["nullable", "regex:/^[-_a-z0-9]*$/"] }, "urlPublished": { "type": "string", @@ -5879,9 +5448,7 @@ "type": "string", "description": "An optional URL where the galley can be viewed or downloaded.", "apiSummary": true, - "validation": [ - "url" - ] + "validation": ["url"] } } }, @@ -5889,12 +5456,8 @@ "type": "object", "description": "A response object that will be returned when there are validation errors for the request parameters. Typically used with forms.", "example": { - "name": [ - "You must provide a name to create a new user." - ], - "roles": [ - "You must assign the user to one or more roles." - ] + "name": ["You must provide a name to create a new user."], + "roles": ["You must assign the user to one or more roles."] } }, "Issue": { @@ -5920,16 +5483,12 @@ }, "dateNotified": { "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "datePublished": { "type": "string", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "description": { "$ref": "#/components/schemas/LocaleObject" @@ -5960,9 +5519,7 @@ }, "lastModified": { "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "number": { "type": "string", @@ -5971,9 +5528,7 @@ "publishedUrl": { "type": "string", "apiSummary": true, - "validation": [ - "url" - ] + "validation": ["url"] }, "sections": { "type": "array", @@ -5988,10 +5543,7 @@ "urlPath": { "type": "string", "description": "An optional path to use in the URL instead of the ID.", - "validation": [ - "nullable", - "regex:/^[-_a-z0-9]*$/" - ] + "validation": ["nullable", "regex:/^[-_a-z0-9]*$/"] }, "volume": { "type": "integer", @@ -6026,9 +5578,7 @@ "accessStatus": { "type": "integer", "default": 0, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "authors": { "type": "array", @@ -6068,9 +5618,7 @@ "citationsRaw": { "type": "string", "description": "Optional metadata that contains references for works cited in this submission as raw text.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "copyrightHolder": { "$ref": "#/components/schemas/LocaleObject" @@ -6078,17 +5626,13 @@ "copyrightYear": { "type": "integer", "description": "The copyright year for this publication.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "coverImage": { "type": "object", "multilingual": true, "apiSummary": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -6126,18 +5670,13 @@ "datePublished": { "type": "string", "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d" - ] + "validation": ["nullable", "date_format:Y-m-d"] }, "disciplines": { "type": "array", "description": "Optional metadata that describes the submission's types of study or branches of knowledge.", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string" }, @@ -6165,9 +5704,7 @@ "type": "boolean", "description": "Whether the contributor details should be displayed for this publication. Commonly used for editorial statements without individual authorship.", "default": false, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "id": { "type": "integer", @@ -6176,17 +5713,13 @@ }, "issueId": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "keywords": { "type": "array", "description": "Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission.", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string" }, @@ -6203,9 +5736,7 @@ "type": "array", "description": "Optional metadata that identifies the submission's primary language.", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string" }, @@ -6220,17 +5751,12 @@ }, "lastModified": { "type": "string", - "validation": [ - "date_format:Y-m-d H:i:s" - ] + "validation": ["date_format:Y-m-d H:i:s"] }, "licenseUrl": { "type": "string", "description": "A URL to a webpage describing the license terms for this publication.", - "validation": [ - "nullable", - "url" - ] + "validation": ["nullable", "url"] }, "locale": { "type": "string", @@ -6242,9 +5768,7 @@ "type": "string", "description": "The pages of the issue in which this article appears if it is published in a physical format.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "prefix": { "$ref": "#/components/schemas/LocaleObject" @@ -6258,9 +5782,7 @@ "type": "string", "description": "A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "rights": { "$ref": "#/components/schemas/LocaleObject" @@ -6272,9 +5794,7 @@ "seq": { "type": "integer", "default": 0, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "source": { "$ref": "#/components/schemas/LocaleObject" @@ -6284,17 +5804,13 @@ "description": "Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`.", "apiSummary": true, "default": 1, - "validation": [ - "in:1,3,4,5" - ] + "validation": ["in:1,3,4,5"] }, "subjects": { "type": "array", "description": "Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics.", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string" }, @@ -6318,9 +5834,7 @@ "type": "array", "description": "Optional metadata that indicates the source of research funding or other institutional support.", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string" }, @@ -6342,10 +5856,7 @@ "urlPath": { "type": "string", "description": "An optional path to use in the URL instead of the ID.", - "validation": [ - "nullable", - "regex:/^[-_a-z0-9]*$/" - ] + "validation": ["nullable", "regex:/^[-_a-z0-9]*$/"] }, "urlPublished": { "type": "string", @@ -6357,9 +5868,7 @@ "type": "integer", "description": "The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them.", "apiSummary": true, - "validation": [ - "min:1" - ] + "validation": ["min:1"] } } }, @@ -6527,16 +6036,12 @@ "type": "array", "items": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] } }, "minPasswordLength": { "type": "integer", - "validation": [ - "min:4" - ] + "validation": ["min:4"] }, "pageFooter": { "$ref": "#/components/schemas/LocaleObject" @@ -6544,9 +6049,7 @@ "pageHeaderTitleImage": { "type": "object", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -6598,33 +6101,25 @@ }, "primaryLocale": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] }, "privacyStatement": { "$ref": "#/components/schemas/LocaleObject" }, "redirect": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "sidebar": { "type": "array", "items": { "type": "string", - "validation": [ - "alpha_num" - ] + "validation": ["alpha_num"] } }, "styleSheet": { "type": "object", - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "name": { "type": "string" @@ -6641,9 +6136,7 @@ "type": "array", "items": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] } }, "themePluginPath": { @@ -6676,16 +6169,12 @@ "type": "string", "description": "The last time activity was recorded related to this submission.", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "dateSubmitted": { "type": "string", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "id": { "type": "integer", @@ -6695,17 +6184,13 @@ "type": "string", "description": "The last time a modification was made to this submission or any of its associated objects.", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "locale": { "type": "string", "description": "The primary language of this submission.", "apiSummary": true, - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] }, "publications": { "type": "array", @@ -6740,15 +6225,11 @@ }, "dateDue": { "type": "integer", - "validation": [ - "date|Y-m-d H:i:s" - ] + "validation": ["date|Y-m-d H:i:s"] }, "dateResponseDue": { "type": "integer", - "validation": [ - "date|Y-m-d H:i:s" - ] + "validation": ["date|Y-m-d H:i:s"] }, "round": { "type": "integer" @@ -6772,10 +6253,7 @@ "description": "The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`.", "apiSummary": true, "default": 1, - "validation": [ - "min:1", - "max:5" - ] + "validation": ["min:1", "max:5"] }, "stages": { "type": "array", @@ -6844,9 +6322,7 @@ "description": "Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`.", "apiSummary": true, "default": 1, - "validation": [ - "in:1,2,3,4,5" - ] + "validation": ["in:1,2,3,4,5"] }, "statusLabel": { "type": "string", @@ -6859,9 +6335,7 @@ "description": "This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration.", "apiSummary": true, "default": 1, - "validation": [ - "in:0,1,2,3,4" - ] + "validation": ["in:0,1,2,3,4"] }, "urlAuthorWorkflow": { "type": "string", @@ -6902,41 +6376,31 @@ "type": "integer", "apiSummary": true, "description": "Used with `assocType` to associate this file with an object such as a galley.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "assocType": { "type": "integer", "apiSummary": true, "description": "Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round).", - "validation": [ - "in:515,517,520,521,523" - ] + "validation": ["in:515,517,520,521,523"] }, "caption": { "type": "string", "apiSummary": true, "description": "A caption for this file. Used with artwork such as images.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "copyrightOwner": { "type": "string", "apiSummary": true, "description": "The copyright owner of this file. Used with artwork such as images.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "createdAt": { "type": "string", "apiSummary": true, "description": "The date this submission file object was created in the system. Set automatically by the software.", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "creator": { "$ref": "#/components/schemas/LocaleObject" @@ -6945,17 +6409,13 @@ "type": "string", "description": "An attribution for this file, such as a photographer's name. Used with artwork such as images.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "dateCreated": { "type": "string", "description": "Public metadata about when this content was created. Used with supplementary files.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "dependentFiles": { "type": "array", @@ -6980,9 +6440,7 @@ "fileStage": { "type": "integer", "apiSummary": true, - "validation": [ - "in:2,3,4,5,6,7,8,9,10,11,13,15,17,18" - ] + "validation": ["in:2,3,4,5,6,7,8,9,10,11,13,15,17,18"] }, "genreId": { "type": "integer", @@ -6997,9 +6455,7 @@ "type": "string", "apiSummary": true, "description": "The language of this file if it contains text. Used with supplementary files.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "locale": { "type": "string", @@ -7075,9 +6531,7 @@ "type": "string", "apiSummary": true, "description": "When this object was last updated.", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "uploaderUserId": { "type": "integer", @@ -7148,21 +6602,15 @@ }, "dateLastRegistered": { "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "dateRegistered": { "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "dateValidated": { "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "disabled": { "type": "boolean", @@ -7174,9 +6622,7 @@ "email": { "type": "string", "apiSummary": true, - "validation": [ - "email_or_localhost" - ] + "validation": ["email_or_localhost"] }, "familyName": { "$ref": "#/components/schemas/LocaleObject" @@ -7221,9 +6667,7 @@ "orcid": { "type": "string", "apiSummary": true, - "validation": [ - "orcid" - ] + "validation": ["orcid"] }, "phone": { "type": "string" @@ -7233,9 +6677,7 @@ }, "url": { "type": "string", - "validation": [ - "url" - ] + "validation": ["url"] }, "userName": { "type": "string", @@ -7263,9 +6705,7 @@ }, "roleId": { "type": "integer", - "validation": [ - "in:16,1,17,65536,4096,4097,1048576,209715" - ] + "validation": ["in:16,1,17,65536,4096,4097,1048576,209715"] }, "showTitle": { "type": "boolean" @@ -7301,19 +6741,13 @@ "type": "string", "description": "(Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers.", "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d" - ] + "validation": ["nullable", "date_format:Y-m-d"] }, "datePosted": { "type": "string", "description": "The date this announcement was posted.", "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d H:i:s" - ] + "validation": ["nullable", "date_format:Y-m-d H:i:s"] }, "description": { "$ref": "#/components/schemas/LocaleObject" @@ -7332,9 +6766,7 @@ "type": "integer", "description": "(Optional) One of the announcement type ids.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] } } }, @@ -7362,19 +6794,13 @@ "type": "string", "description": "(Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers.", "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d" - ] + "validation": ["nullable", "date_format:Y-m-d"] }, "datePosted": { "type": "string", "description": "The date this announcement was posted.", "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d H:i:s" - ] + "validation": ["nullable", "date_format:Y-m-d H:i:s"] }, "description": { "$ref": "#/components/schemas/LocaleObject" @@ -7393,9 +6819,7 @@ "type": "integer", "description": "(Optional) One of the announcement type ids.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] } } }, @@ -7414,9 +6838,7 @@ "email": { "type": "string", "apiSummary": true, - "validation": [ - "email_or_localhost" - ] + "validation": ["email_or_localhost"] }, "familyName": { "$ref": "#/components/schemas/LocaleObject" @@ -7438,9 +6860,7 @@ "type": "string", "description": "The ORCID of this contributor. See: https://orcid.org/", "apiSummary": true, - "validation": [ - "orcid" - ] + "validation": ["orcid"] }, "preferredPublicName": { "$ref": "#/components/schemas/LocaleObject" @@ -7457,9 +6877,7 @@ "url": { "type": "string", "description": "An optional URL to this contributor's webpage.", - "validation": [ - "url" - ] + "validation": ["url"] }, "userGroupId": { "type": "integer", @@ -7477,9 +6895,7 @@ "email": { "type": "string", "apiSummary": true, - "validation": [ - "email_or_localhost" - ] + "validation": ["email_or_localhost"] }, "familyName": { "$ref": "#/components/schemas/LocaleObject" @@ -7501,9 +6917,7 @@ "type": "string", "description": "The ORCID of this contributor. See: https://orcid.org/", "apiSummary": true, - "validation": [ - "orcid" - ] + "validation": ["orcid"] }, "preferredPublicName": { "$ref": "#/components/schemas/LocaleObject" @@ -7548,10 +6962,7 @@ "agencies": { "type": "string", "description": "Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "announcementsIntroduction": { "$ref": "#/components/schemas/LocaleObject" @@ -7565,10 +6976,7 @@ "citations": { "type": "string", "description": "Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "clockssLicense": { "$ref": "#/components/schemas/LocaleObject" @@ -7581,32 +6989,22 @@ }, "contactEmail": { "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] + "validation": ["nullable", "email_or_localhost"] }, "contactName": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "contactPhone": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "copyrightHolderOther": { "$ref": "#/components/schemas/LocaleObject" }, "copyrightHolderType": { "type": "string", - "validation": [ - "nullable", - "in:author,context,other" - ] + "validation": ["nullable", "in:author,context,other"] }, "copyrightNotice": { "$ref": "#/components/schemas/LocaleObject" @@ -7614,24 +7012,16 @@ "copyrightYearBasis": { "type": "string", "default": "issue", - "validation": [ - "in:issue,submission" - ] + "validation": ["in:issue,submission"] }, "coverage": { "type": "string", "description": "Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "currency": { "type": "string", - "validation": [ - "nullable", - "currency" - ] + "validation": ["nullable", "currency"] }, "customHeaders": { "$ref": "#/components/schemas/LocaleObject" @@ -7650,23 +7040,16 @@ }, "defaultMetricType": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "defaultReviewMode": { "type": "integer", "default": 2, - "validation": [ - "nullable", - "in:1,2,3" - ] + "validation": ["nullable", "in:1,2,3"] }, "delayedOpenAccessDuration": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "delayedOpenAccessPolicy": { "$ref": "#/components/schemas/LocaleObject" @@ -7684,23 +7067,16 @@ "disableSubmissions": { "type": "boolean", "default": false, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "disableUserReg": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "disciplines": { "type": "string", "description": "Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "editorialTeam": { "$ref": "#/components/schemas/LocaleObject" @@ -7708,73 +7084,51 @@ "emailSignature": { "type": "string", "defaultLocaleKey": "default.contextSettings.emailSignature", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableAnnouncements": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableClockss": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableLockss": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableOai": { "type": "boolean", "default": 1, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableOpenAccessNotification": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enablePublisherId": { "type": "array", "items": { "type": "string", - "validation": [ - "in:publication,galley,issue,issueGalley" - ] + "validation": ["in:publication,galley,issue,issueGalley"] } }, "enableSubscriptionOnlinePaymentNotificationPurchaseIndividual": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableSubscriptionOnlinePaymentNotificationRenewIndividual": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enableSubscriptionOnlinePaymentNotificationRenewInstitutional": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "enabled": { "type": "boolean", @@ -7782,17 +7136,12 @@ }, "envelopeSender": { "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] + "validation": ["nullable", "email_or_localhost"] }, "favicon": { "type": "object", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -7853,9 +7202,7 @@ "homepageImage": { "type": "object", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -7916,18 +7263,13 @@ "itemsPerPage": { "type": "integer", "default": 25, - "validation": [ - "nullable", - "min:1" - ] + "validation": ["nullable", "min:1"] }, "journalThumbnail": { "type": "object", "multilingual": true, "apiSummary": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -7951,9 +7293,7 @@ }, "dateUploaded": { "type": "string", - "validation": [ - "date_format:Y-m-d H:i:s" - ] + "validation": ["date_format:Y-m-d H:i:s"] }, "altText": { "type": "string" @@ -7980,9 +7320,7 @@ }, "dateUploaded": { "type": "string", - "validation": [ - "date_format:Y-m-d H:i:s" - ] + "validation": ["date_format:Y-m-d H:i:s"] }, "altText": { "type": "string" @@ -7995,18 +7333,12 @@ "type": "string", "default": "request", "description": "Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "languages": { "type": "string", "description": "Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "librarianInformation": { "$ref": "#/components/schemas/LocaleObject" @@ -8016,26 +7348,19 @@ }, "licenseUrl": { "type": "string", - "validation": [ - "nullable", - "url" - ] + "validation": ["nullable", "url"] }, "lockssLicense": { "$ref": "#/components/schemas/LocaleObject" }, "mailingAddress": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "membershipFee": { "type": "number", "default": 0, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "membershipFeeDescription": { "$ref": "#/components/schemas/LocaleObject" @@ -8048,79 +7373,50 @@ }, "numAnnouncementsHomepage": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "numDaysBeforeInviteReminder": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "numDaysBeforeSubmitReminder": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "numMonthsAfterSubscriptionExpiryReminder": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "numMonthsBeforeSubscriptionExpiryReminder": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "numPageLinks": { "type": "integer", "default": 10, - "validation": [ - "nullable", - "min:1" - ] + "validation": ["nullable", "min:1"] }, "numWeeksAfterSubscriptionExpiryReminder": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "numWeeksBeforeSubscriptionExpiryReminder": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "numWeeksPerResponse": { "type": "integer", "default": 4, - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "numWeeksPerReview": { "type": "integer", "default": 4, - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "onlineIssn": { "type": "string", - "validation": [ - "nullable", - "issn" - ] + "validation": ["nullable", "issn"] }, "openAccessPolicy": { "$ref": "#/components/schemas/LocaleObject" @@ -8131,9 +7427,7 @@ "pageHeaderLogoImage": { "type": "object", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -8193,28 +7487,19 @@ }, "paymentPluginName": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "paymentsEnabled": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "primaryLocale": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] }, "printIssn": { "type": "string", - "validation": [ - "nullable", - "issn" - ] + "validation": ["nullable", "issn"] }, "privacyStatement": { "$ref": "#/components/schemas/LocaleObject" @@ -8222,9 +7507,7 @@ "publicationFee": { "type": "number", "default": 0, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "publicationFeeDescription": { "$ref": "#/components/schemas/LocaleObject" @@ -8234,97 +7517,69 @@ }, "publisherInstitution": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "publishingMode": { "type": "integer", - "validation": [ - "nullable", - "in:0,1,2" - ] + "validation": ["nullable", "in:0,1,2"] }, "purchaseArticleFee": { "type": "number", "default": 0, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "purchaseArticleFeeDescription": { "$ref": "#/components/schemas/LocaleObject" }, "purchaseArticleFeeEnabled": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "purchaseArticleFeeName": { "$ref": "#/components/schemas/LocaleObject" }, "purchaseIssueFee": { "type": "number", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "purchaseIssueFeeEnabled": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "rateReviewerOnQuality": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "readerInformation": { "$ref": "#/components/schemas/LocaleObject" }, "restrictArticleAccess": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "restrictOnlyPdf": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "restrictReviewerFileAccess": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "restrictSiteAccess": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "reviewGuidelines": { "$ref": "#/components/schemas/LocaleObject" }, "reviewerAccessKeysEnabled": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "rights": { "type": "string", "description": "Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "searchDescription": { "$ref": "#/components/schemas/LocaleObject" @@ -8332,41 +7587,28 @@ "seq": { "type": "integer", "apiSummary": true, - "validation": [ - "min:0" - ] + "validation": ["min:0"] }, "showEnsuringLink": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "sidebar": { "type": "array", - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string", - "validation": [ - "alpha_dash" - ] + "validation": ["alpha_dash"] } }, "source": { "type": "string", "description": "Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "styleSheet": { "type": "object", - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "temporaryFileId": { "type": "integer", @@ -8386,26 +7628,18 @@ "subjects": { "type": "string", "description": "Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "submissionChecklist": { "type": "array", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "object", "properties": { "order": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "content": { "type": "string" @@ -8450,10 +7684,7 @@ "properties": { "order": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "content": { "type": "string" @@ -8465,10 +7696,7 @@ "properties": { "order": { "type": "integer", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "content": { "type": "string" @@ -8479,9 +7707,7 @@ }, "submissionFee": { "type": "number", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "submissionFeeDescription": { "$ref": "#/components/schemas/LocaleObject" @@ -8494,79 +7720,55 @@ }, "subscriptionEmail": { "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] + "validation": ["nullable", "email_or_localhost"] }, "subscriptionExpiryPartial": { "type": "boolean", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "subscriptionMailingAddress": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "subscriptionName": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "subscriptionPhone": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "supportEmail": { "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] + "validation": ["nullable", "email_or_localhost"] }, "supportName": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "supportPhone": { "type": "string", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "supportedFormLocales": { "type": "array", "items": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] } }, "supportedLocales": { "type": "array", "items": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] } }, "supportedSubmissionLocales": { "type": "array", "items": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] } }, "themePluginPath": { @@ -8579,16 +7781,11 @@ "type": { "type": "string", "description": "Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] + "validation": ["nullable", "in:0,enable,request,require"] }, "urlPath": { "type": "string", - "validation": [ - "regex:/^[a-zA-Z0-9]+([\\-_][a-zA-Z0-9]+)*$/" - ], + "validation": ["regex:/^[a-zA-Z0-9]+([\\-_][a-zA-Z0-9]+)*$/"], "apiSummary": true } } @@ -8624,9 +7821,7 @@ "type": "object", "multilingual": true, "apiSummary": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -8644,9 +7839,7 @@ "seq": { "type": "integer", "apiSummary": true, - "validation": [ - "min:0" - ] + "validation": ["min:0"] }, "url": { "type": "string", @@ -8655,9 +7848,7 @@ }, "urlPath": { "type": "string", - "validation": [ - "regex:/^[a-zA-Z0-9]+([\\-_][a-zA-Z0-9]+)*$/" - ], + "validation": ["regex:/^[a-zA-Z0-9]+([\\-_][a-zA-Z0-9]+)*$/"], "apiSummary": true } } @@ -8672,10 +7863,7 @@ "type": "integer", "description": "The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`.", "apiSummary": "true", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "enabled": { "type": "boolean", @@ -8686,9 +7874,7 @@ "type": "string", "description": "A unique key for this email template.", "apiSummary": true, - "validation": [ - "alpha_dash" - ] + "validation": ["alpha_dash"] }, "subject": { "$ref": "#/components/schemas/LocaleObject" @@ -8723,10 +7909,7 @@ "type": "integer", "description": "The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`.", "apiSummary": "true", - "validation": [ - "nullable", - "min:0" - ] + "validation": ["nullable", "min:0"] }, "description": { "$ref": "#/components/schemas/LocaleObject" @@ -8752,9 +7935,7 @@ "type": "string", "description": "A unique key for this email template.", "apiSummary": true, - "validation": [ - "alpha_dash" - ] + "validation": ["alpha_dash"] }, "stageId": { "type": "integer", @@ -8789,9 +7970,7 @@ "type": "string", "description": "The primary locale of this galley.", "apiSummary": true, - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] }, "pub-id::publisher-id": { "type": "string", @@ -8810,25 +7989,18 @@ "submissionFileId": { "type": "integer", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "urlPath": { "type": "string", "description": "An optional path to use in the URL instead of the ID.", - "validation": [ - "nullable", - "regex:/^[-_a-z0-9]*$/" - ] + "validation": ["nullable", "regex:/^[-_a-z0-9]*$/"] }, "urlRemote": { "type": "string", "description": "An optional URL where the galley can be viewed or downloaded.", "apiSummary": true, - "validation": [ - "url" - ] + "validation": ["url"] } } }, @@ -8856,9 +8028,7 @@ "type": "string", "description": "The primary locale of this galley.", "apiSummary": true, - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] }, "pub-id::publisher-id": { "type": "string", @@ -8877,9 +8047,7 @@ "submissionFileId": { "type": "integer", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "urlPublished": { "type": "string", @@ -8891,9 +8059,7 @@ "type": "string", "description": "An optional URL where the galley can be viewed or downloaded.", "apiSummary": true, - "validation": [ - "url" - ] + "validation": ["url"] } } }, @@ -8908,16 +8074,12 @@ }, "dateNotified": { "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "datePublished": { "type": "string", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "description": { "$ref": "#/components/schemas/LocaleObject" @@ -8931,9 +8093,7 @@ }, "lastModified": { "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "number": { "type": "string", @@ -8942,9 +8102,7 @@ "publishedUrl": { "type": "string", "apiSummary": true, - "validation": [ - "url" - ] + "validation": ["url"] }, "title": { "$ref": "#/components/schemas/LocaleObject" @@ -8952,10 +8110,7 @@ "urlPath": { "type": "string", "description": "An optional path to use in the URL instead of the ID.", - "validation": [ - "nullable", - "regex:/^[-_a-z0-9]*$/" - ] + "validation": ["nullable", "regex:/^[-_a-z0-9]*$/"] }, "volume": { "type": "integer", @@ -8984,9 +8139,7 @@ "datePublished": { "type": "string", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "description": { "$ref": "#/components/schemas/LocaleObject" @@ -9015,9 +8168,7 @@ "publishedUrl": { "type": "string", "apiSummary": true, - "validation": [ - "url" - ] + "validation": ["url"] }, "title": { "$ref": "#/components/schemas/LocaleObject" @@ -9041,9 +8192,7 @@ "accessStatus": { "type": "integer", "default": 0, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "categoryIds": { "type": "array", @@ -9055,9 +8204,7 @@ "citationsRaw": { "type": "string", "description": "Optional metadata that contains references for works cited in this submission as raw text.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "copyrightHolder": { "$ref": "#/components/schemas/LocaleObject" @@ -9065,17 +8212,13 @@ "copyrightYear": { "type": "integer", "description": "The copyright year for this publication.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "coverImage": { "type": "object", "multilingual": true, "apiSummary": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -9121,18 +8264,13 @@ "datePublished": { "type": "string", "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d" - ] + "validation": ["nullable", "date_format:Y-m-d"] }, "disciplines": { "type": "array", "description": "Optional metadata that describes the submission's types of study or branches of knowledge.", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string" }, @@ -9149,23 +8287,17 @@ "type": "boolean", "description": "Whether the contributor details should be displayed for this publication. Commonly used for editorial statements without individual authorship.", "default": false, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "issueId": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "keywords": { "type": "array", "description": "Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission.", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string" }, @@ -9182,9 +8314,7 @@ "type": "array", "description": "Optional metadata that identifies the submission's primary language.", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string" }, @@ -9199,25 +8329,18 @@ }, "lastModified": { "type": "string", - "validation": [ - "date_format:Y-m-d H:i:s" - ] + "validation": ["date_format:Y-m-d H:i:s"] }, "licenseUrl": { "type": "string", "description": "A URL to a webpage describing the license terms for this publication.", - "validation": [ - "nullable", - "url" - ] + "validation": ["nullable", "url"] }, "pages": { "type": "string", "description": "The pages of the issue in which this article appears if it is published in a physical format.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "prefix": { "$ref": "#/components/schemas/LocaleObject" @@ -9231,9 +8354,7 @@ "type": "string", "description": "A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "rights": { "$ref": "#/components/schemas/LocaleObject" @@ -9245,9 +8366,7 @@ "seq": { "type": "integer", "default": 0, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "source": { "$ref": "#/components/schemas/LocaleObject" @@ -9257,17 +8376,13 @@ "description": "Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`.", "apiSummary": true, "default": 1, - "validation": [ - "in:1,3,4,5" - ] + "validation": ["in:1,3,4,5"] }, "subjects": { "type": "array", "description": "Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics.", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string" }, @@ -9291,9 +8406,7 @@ "type": "array", "description": "Optional metadata that indicates the source of research funding or other institutional support.", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "items": { "type": "string" }, @@ -9315,18 +8428,13 @@ "urlPath": { "type": "string", "description": "An optional path to use in the URL instead of the ID.", - "validation": [ - "nullable", - "regex:/^[-_a-z0-9]*$/" - ] + "validation": ["nullable", "regex:/^[-_a-z0-9]*$/"] }, "version": { "type": "integer", "description": "The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them.", "apiSummary": true, - "validation": [ - "min:1" - ] + "validation": ["min:1"] } } }, @@ -9362,9 +8470,7 @@ "type": "object", "multilingual": true, "apiSummary": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -9379,10 +8485,7 @@ "datePublished": { "type": "string", "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d" - ] + "validation": ["nullable", "date_format:Y-m-d"] }, "fullTitle": { "$ref": "#/components/schemas/LocaleObject" @@ -9410,9 +8513,7 @@ "type": "string", "description": "The pages of the issue in which this article appears if it is published in a physical format.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "prefix": { "$ref": "#/components/schemas/LocaleObject" @@ -9426,9 +8527,7 @@ "type": "string", "description": "A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "sectionId": { "type": "integer", @@ -9439,9 +8538,7 @@ "description": "Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`.", "apiSummary": true, "default": 1, - "validation": [ - "in:1,3,4,5" - ] + "validation": ["in:1,3,4,5"] }, "submissionId": { "type": "integer", @@ -9463,9 +8560,7 @@ "type": "integer", "description": "The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them.", "apiSummary": true, - "validation": [ - "min:1" - ] + "validation": ["min:1"] } } }, @@ -9547,16 +8642,12 @@ "type": "array", "items": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] } }, "minPasswordLength": { "type": "integer", - "validation": [ - "min:4" - ] + "validation": ["min:4"] }, "pageFooter": { "$ref": "#/components/schemas/LocaleObject" @@ -9564,9 +8655,7 @@ "pageHeaderTitleImage": { "type": "object", "multilingual": true, - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "type": "object", "properties": [], @@ -9626,33 +8715,25 @@ }, "primaryLocale": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] }, "privacyStatement": { "$ref": "#/components/schemas/LocaleObject" }, "redirect": { "type": "integer", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "sidebar": { "type": "array", "items": { "type": "string", - "validation": [ - "alpha_num" - ] + "validation": ["alpha_num"] } }, "styleSheet": { "type": "object", - "validation": [ - "nullable" - ], + "validation": ["nullable"], "properties": { "temporaryFileId": { "type": "integer", @@ -9673,9 +8754,7 @@ "type": "array", "items": { "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] } }, "themePluginPath": { @@ -9703,16 +8782,12 @@ "type": "string", "description": "The last time activity was recorded related to this submission.", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "dateSubmitted": { "type": "string", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "id": { "type": "integer", @@ -9722,45 +8797,34 @@ "type": "string", "description": "The last time a modification was made to this submission or any of its associated objects.", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "locale": { "type": "string", "description": "The primary language of this submission.", "apiSummary": true, - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] }, "stageId": { "type": "integer", "description": "The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`.", "apiSummary": true, "default": 1, - "validation": [ - "min:1", - "max:5" - ] + "validation": ["min:1", "max:5"] }, "status": { "type": "integer", "description": "Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`.", "apiSummary": true, "default": 1, - "validation": [ - "in:1,2,3,4,5" - ] + "validation": ["in:1,2,3,4,5"] }, "submissionProgress": { "type": "integer", "description": "This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration.", "apiSummary": true, "default": 1, - "validation": [ - "in:0,1,2,3,4" - ] + "validation": ["in:0,1,2,3,4"] } } }, @@ -9785,16 +8849,12 @@ "type": "string", "description": "The last time activity was recorded related to this submission.", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "dateSubmitted": { "type": "string", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "id": { "type": "integer", @@ -9804,17 +8864,13 @@ "type": "string", "description": "The last time a modification was made to this submission or any of its associated objects.", "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "locale": { "type": "string", "description": "The primary language of this submission.", "apiSummary": true, - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] }, "publications": { "type": "array", @@ -9830,19 +8886,14 @@ "description": "The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`.", "apiSummary": true, "default": 1, - "validation": [ - "min:1", - "max:5" - ] + "validation": ["min:1", "max:5"] }, "status": { "type": "integer", "description": "Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `STATUS_*` constants. Default is `STATUS_QUEUED`.", "apiSummary": true, "default": 1, - "validation": [ - "in:1,2,3,4,5" - ] + "validation": ["in:1,2,3,4,5"] }, "statusLabel": { "type": "string", @@ -9855,9 +8906,7 @@ "description": "This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration.", "apiSummary": true, "default": 1, - "validation": [ - "in:0,1,2,3,4" - ] + "validation": ["in:0,1,2,3,4"] }, "urlAuthorWorkflow": { "type": "string", @@ -9892,41 +8941,31 @@ "type": "integer", "apiSummary": true, "description": "Used with `assocType` to associate this file with an object such as a galley.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "assocType": { "type": "integer", "apiSummary": true, "description": "Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round).", - "validation": [ - "in:515,517,520,521,523" - ] + "validation": ["in:515,517,520,521,523"] }, "caption": { "type": "string", "apiSummary": true, "description": "A caption for this file. Used with artwork such as images.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "copyrightOwner": { "type": "string", "apiSummary": true, "description": "The copyright owner of this file. Used with artwork such as images.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "createdAt": { "type": "string", "apiSummary": true, "description": "The date this submission file object was created in the system. Set automatically by the software.", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "creator": { "$ref": "#/components/schemas/LocaleObject" @@ -9935,17 +8974,13 @@ "type": "string", "description": "An attribution for this file, such as a photographer's name. Used with artwork such as images.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "dateCreated": { "type": "string", "description": "Public metadata about when this content was created. Used with supplementary files.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "description": { "$ref": "#/components/schemas/LocaleObject" @@ -9962,9 +8997,7 @@ "fileStage": { "type": "integer", "apiSummary": true, - "validation": [ - "in:2,3,4,5,6,7,8,9,10,11,13,15,17,18" - ] + "validation": ["in:2,3,4,5,6,7,8,9,10,11,13,15,17,18"] }, "genreId": { "type": "integer", @@ -9974,9 +9007,7 @@ "type": "string", "apiSummary": true, "description": "The language of this file if it contains text. Used with supplementary files.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "name": { "$ref": "#/components/schemas/LocaleObject" @@ -10011,9 +9042,7 @@ "type": "string", "apiSummary": true, "description": "When this object was last updated.", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "uploaderUserId": { "type": "integer", @@ -10038,41 +9067,31 @@ "type": "integer", "apiSummary": true, "description": "Used with `assocType` to associate this file with an object such as a galley.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "assocType": { "type": "integer", "apiSummary": true, "description": "Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round).", - "validation": [ - "in:515,517,520,521,523" - ] + "validation": ["in:515,517,520,521,523"] }, "caption": { "type": "string", "apiSummary": true, "description": "A caption for this file. Used with artwork such as images.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "copyrightOwner": { "type": "string", "apiSummary": true, "description": "The copyright owner of this file. Used with artwork such as images.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "createdAt": { "type": "string", "apiSummary": true, "description": "The date this submission file object was created in the system. Set automatically by the software.", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "creator": { "$ref": "#/components/schemas/LocaleObject" @@ -10081,17 +9100,13 @@ "type": "string", "description": "An attribution for this file, such as a photographer's name. Used with artwork such as images.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "dateCreated": { "type": "string", "description": "Public metadata about when this content was created. Used with supplementary files.", "apiSummary": true, - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "description": { "$ref": "#/components/schemas/LocaleObject" @@ -10108,9 +9123,7 @@ "fileStage": { "type": "integer", "apiSummary": true, - "validation": [ - "in:2,3,4,5,6,7,8,9,10,11,13,15,17,18" - ] + "validation": ["in:2,3,4,5,6,7,8,9,10,11,13,15,17,18"] }, "genreId": { "type": "integer", @@ -10125,9 +9138,7 @@ "type": "string", "apiSummary": true, "description": "The language of this file if it contains text. Used with supplementary files.", - "validation": [ - "nullable" - ] + "validation": ["nullable"] }, "locale": { "type": "string", @@ -10178,9 +9189,7 @@ "type": "string", "apiSummary": true, "description": "When this object was last updated.", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "uploaderUserId": { "type": "integer", @@ -10220,21 +9229,15 @@ }, "dateLastRegistered": { "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "dateRegistered": { "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "dateValidated": { "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] + "validation": ["date:Y-m-d H:i:s"] }, "disabled": { "type": "boolean", @@ -10246,9 +9249,7 @@ "email": { "type": "string", "apiSummary": true, - "validation": [ - "email_or_localhost" - ] + "validation": ["email_or_localhost"] }, "familyName": { "$ref": "#/components/schemas/LocaleObject" @@ -10268,9 +9269,7 @@ "orcid": { "type": "string", "apiSummary": true, - "validation": [ - "orcid" - ] + "validation": ["orcid"] }, "phone": { "type": "string" @@ -10280,9 +9279,7 @@ }, "url": { "type": "string", - "validation": [ - "url" - ] + "validation": ["url"] }, "userName": { "type": "string", @@ -10305,9 +9302,7 @@ "email": { "type": "string", "apiSummary": true, - "validation": [ - "email_or_localhost" - ] + "validation": ["email_or_localhost"] }, "fullName": { "type": "string", @@ -10330,9 +9325,7 @@ "orcid": { "type": "string", "apiSummary": true, - "validation": [ - "orcid" - ] + "validation": ["orcid"] }, "userName": { "type": "string", @@ -10360,9 +9353,7 @@ }, "roleId": { "type": "integer", - "validation": [ - "in:16,1,17,65536,4096,4097,1048576,209715" - ] + "validation": ["in:16,1,17,65536,4096,4097,1048576,209715"] }, "showTitle": { "type": "boolean" @@ -10371,4 +9362,4 @@ } } } -} \ No newline at end of file +} diff --git a/libs/citations/parse-text-cite/CHANGELOG.md b/libs/citations/parse-text-cite/CHANGELOG.md index 028318d1..ec2742df 100644 --- a/libs/citations/parse-text-cite/CHANGELOG.md +++ b/libs/citations/parse-text-cite/CHANGELOG.md @@ -4,37 +4,32 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.2.3](https://github.com/TrialAndErrorOrg/parsers/compare/parse-text-cite-0.2.2...parse-text-cite-0.2.3) (2023-09-21) - ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* make typecheck work sort of ([d6a2eb6](https://github.com/TrialAndErrorOrg/parsers/commit/d6a2eb690a06d376043309f8bea6f418a4ff16ec)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- make typecheck work sort of ([d6a2eb6](https://github.com/TrialAndErrorOrg/parsers/commit/d6a2eb690a06d376043309f8bea6f418a4ff16ec)) ## [0.2.2](https://github.com/TrialAndErrorOrg/parsers/compare/parse-text-cite-0.2.1...parse-text-cite-0.2.2) (2023-05-30) - ### Bug Fixes -* add support for abbreviated last names ([04ec487](https://github.com/TrialAndErrorOrg/parsers/commit/04ec4879a0bdf80fcac29c21070b1a264b227698)) +- add support for abbreviated last names ([04ec487](https://github.com/TrialAndErrorOrg/parsers/commit/04ec4879a0bdf80fcac29c21070b1a264b227698)) ## [0.2.1](https://github.com/TrialAndErrorOrg/parsers/compare/parse-text-cite-0.2.0...parse-text-cite-0.2.1) (2023-03-29) - ### Bug Fixes -* **parse-text-cite:** fix output types ([5162696](https://github.com/TrialAndErrorOrg/parsers/commit/516269614c5a0be853f262af371409f3b6ab1bd8)) +- **parse-text-cite:** fix output types ([5162696](https://github.com/TrialAndErrorOrg/parsers/commit/516269614c5a0be853f262af371409f3b6ab1bd8)) ## [0.2.0](https://github.com/TrialAndErrorOrg/parsers/compare/parse-text-cite-0.1.3...parse-text-cite-0.2.0) (2023-03-29) - ### Features -* **parse-text-cite:** big improvement, less crashes, and can recognize possessives ([6db3f88](https://github.com/TrialAndErrorOrg/parsers/commit/6db3f882b72455d90f9f805d30057cfdbeab2422)) - +- **parse-text-cite:** big improvement, less crashes, and can recognize possessives ([6db3f88](https://github.com/TrialAndErrorOrg/parsers/commit/6db3f882b72455d90f9f805d30057cfdbeab2422)) ### Bug Fixes -* **parse-text-cite:** allow implicit any ([0c28a2f](https://github.com/TrialAndErrorOrg/parsers/commit/0c28a2ffcdeba6c4776525a29cbb4c7ccfd6582d)) +- **parse-text-cite:** allow implicit any ([0c28a2f](https://github.com/TrialAndErrorOrg/parsers/commit/0c28a2ffcdeba6c4776525a29cbb4c7ccfd6582d)) ## [0.1.3](https://github.com/TrialAndErrorOrg/parsers/compare/parse-text-cite-0.1.2...parse-text-cite-0.1.3) (2023-03-14) @@ -44,18 +39,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## 0.1.0 (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) -* **citations:** infer plugin type, don't break as often ([fd6a8af](https://github.com/TrialAndErrorOrg/parsers/commit/fd6a8af17f5900025cb2c23f3626113e617ba6bb)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) -* she builds! ([9b49c2d](https://github.com/TrialAndErrorOrg/parsers/commit/9b49c2d7ff401fe32d6d7a99919dd50cfdb4f0a1)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) +- **citations:** infer plugin type, don't break as often ([fd6a8af](https://github.com/TrialAndErrorOrg/parsers/commit/fd6a8af17f5900025cb2c23f3626113e617ba6bb)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) +- she builds! ([9b49c2d](https://github.com/TrialAndErrorOrg/parsers/commit/9b49c2d7ff401fe32d6d7a99919dd50cfdb4f0a1)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) diff --git a/libs/citations/parse-text-cite/README.md b/libs/citations/parse-text-cite/README.md index 6848dfc1..5bc23f0b 100755 --- a/libs/citations/parse-text-cite/README.md +++ b/libs/citations/parse-text-cite/README.md @@ -24,7 +24,7 @@ pnpm add parse-text-cite ## API -*** +--- ### `parseTextCite()` @@ -36,26 +36,26 @@ parseTextCite(string: string, options?: Options): (string | Citation)[] | (strin #### Parameters -| Name | Type | -| :------ | :------ | -| `string` | `string` | +| Name | Type | +| :--------- | :-------- | +| `string` | `string` | | `options?` | `Options` | #### Returns (`string` | [`Citation`](modules.md#citation))[] | (`string` | [`Citation`](modules.md#citation))[][] -Defined in: [lib/parse-text-cite.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L34) +Defined in: [lib/parse-text-cite.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L34) -*** +--- ### `parser` > **`Const`** `Parser` -Defined in: [lib/parse-text-cite.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L32) +Defined in: [lib/parse-text-cite.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L32) -*** +--- ### `Citation` @@ -65,27 +65,27 @@ Defined in: [lib/parse-text-cite.ts:32](https://github.com/TrialAndErrorOrg/par > `string` -Defined in: [lib/parse-text-cite.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L6) +Defined in: [lib/parse-text-cite.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L6) ##### `citationItems` > [`CitationItem`](modules.md#citationitem)[] -Defined in: [lib/parse-text-cite.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L7) +Defined in: [lib/parse-text-cite.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L7) ##### `originalText?` > `string` -Defined in: [lib/parse-text-cite.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L9) +Defined in: [lib/parse-text-cite.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L9) ##### `properties` > [`Properties`](modules.md#properties) -Defined in: [lib/parse-text-cite.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L8) +Defined in: [lib/parse-text-cite.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L8) -*** +--- ### `CitationItem` @@ -95,45 +95,45 @@ Defined in: [lib/parse-text-cite.ts:8](https://github.com/TrialAndErrorOrg/pars > `string` -Defined in: [lib/parse-text-cite.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L19) +Defined in: [lib/parse-text-cite.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L19) ##### `infix?` > `string` -Defined in: [lib/parse-text-cite.ts:22](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L22) +Defined in: [lib/parse-text-cite.ts:22](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L22) ##### `itemData` > `Data` -Defined in: [lib/parse-text-cite.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L18) +Defined in: [lib/parse-text-cite.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L18) ##### `label?` > `string` -Defined in: [lib/parse-text-cite.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L23) +Defined in: [lib/parse-text-cite.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L23) ##### `locator?` > `string` -Defined in: [lib/parse-text-cite.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L24) +Defined in: [lib/parse-text-cite.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L24) ##### `prefix?` > `string` -Defined in: [lib/parse-text-cite.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L20) +Defined in: [lib/parse-text-cite.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L20) ##### `suffix?` > `string` -Defined in: [lib/parse-text-cite.ts:21](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L21) +Defined in: [lib/parse-text-cite.ts:21](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L21) -*** +--- ### `Properties` @@ -143,13 +143,13 @@ Defined in: [lib/parse-text-cite.ts:21](https://github.com/TrialAndErrorOrg/par > `string` -Defined in: [lib/parse-text-cite.ts:14](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L14) +Defined in: [lib/parse-text-cite.ts:14](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L14) ##### `noteIndex` > `number` -Defined in: [lib/parse-text-cite.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L13) +Defined in: [lib/parse-text-cite.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/citations/parse-text-cite/src/lib/parse-text-cite.ts#L13) ## License diff --git a/libs/citations/parse-text-cite/package.json b/libs/citations/parse-text-cite/package.json index e7049db5..9c3acf75 100755 --- a/libs/citations/parse-text-cite/package.json +++ b/libs/citations/parse-text-cite/package.json @@ -32,5 +32,10 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "moo": "^0.5.1", + "nearley": "^2.20.1", + "csl-json": "0.1.0" + } } diff --git a/libs/citations/parse-text-cite/project.json b/libs/citations/parse-text-cite/project.json index 16ee89b5..744c3a50 100755 --- a/libs/citations/parse-text-cite/project.json +++ b/libs/citations/parse-text-cite/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/citations/parse-text-cite/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/citations/parse-text-cite/src/lib/grammar.html b/libs/citations/parse-text-cite/src/lib/grammar.html index 49e40ebc..10a4cca3 100755 --- a/libs/citations/parse-text-cite/src/lib/grammar.html +++ b/libs/citations/parse-text-cite/src/lib/grammar.html @@ -1,3154 +1,3120 @@ - - - - - -

Input

-
- - - - - - - - - - - - - - - - - - - -InputContent - - - - - - - - - - - - - - - - -
-

InputContent

-
- - - - - - - - - - - - - - - -ParenCite - - - - - - - - - - - - - -NarrCite - - - - - - - - - - - - - -NonCiteContent - - - - - - - - - -
-

NonCiteContent

-
- - - - - - - - - - - - - - - -Year - - - - - - - - - - - - - -NonYearParenContent - - - - - - - - - - - - - -Lp - - - - - - - - - - - -NonYearParenContent - - - - - - - - - - - - - - - - - - - - - - -Rp - - - - - - - - - - - - - - - - - - - - - - -Lp - - - - - - - - - - - - -NonYearParenContent - - - - - - - - - - - - - - -Rp - - - - - - - - - - - - - -Lp - - - - - - - -Year - - - - - - - - - - - - - -Year - - - - - - - -Rp - - - - - - - - - -
-

NonYearParenContent

-
- - - - - - - - - - - - - - - -__ - - - - - - - - - - - - - -Number - - - - - - - - - - - - - -Com - - - - - - - - - - - - - -Dot - - - - - - - - - - - - - -Sem - - - - - - - - - - - - - -Col - - - - - - - - - - - - - -Amp - - - - - - - - - - - - - -And - - - - - - - - - - - - - -Ca - - - - - - - - - - - - - -Quote - - - - - - - - - - - - - -Apo - - - - - - - - - - - - - -Slash - - - - - - - - - - - - - -Dash - - - - - - - - - - - - - -Punct - - - - - - - - - - - - - -Mc - - - - - - - - - - - - - -DutchPref - - - - - - - - - - - - - -Cap - - - - - - - - - - - - - -Lowword - - - - - - - - - - - - - -NL - - - - - - - - - - - - - -Misc - - - - - - - - - - - - - -End - - - - - - - - - -
-

NarrCite

-
- - - - - - - - - - - - - - - -NameList - - - - - - - -__ - - - - - - - -Lp - - - - - - - -YearList - - - - - - - - - - - - - - - -Loc - - - - - - - - -Rp - - - - - - - - - -
-

ParenCite

-
- - - - - - - - - - - - - - - -Lp - - - - - - - -ParenContent - - - - - - - -Rp - - - - - - - - - -
-

ParenContent

-
- - - - - - - - - - - - - - - -SingleParenEntry - - - - - - - - - - - - - -ParenContent - - - - - - - -Sem - - - - - - - -__ - - - - - - - -SingleParenEntry - - - - - - - - - - - - - -ParenContent - - - - - - - -PreAuthsMiddle - - - - - - - -SingleParenEntry - - - - - - - - - -
-

SingleParenEntry

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -PreAuthsPre - - - - - - - - - - - - - - - -ParenCiteAuthYear - - - - - - - - - - - - - - - -Loc - - - - - - - - - - -
-

PreAuthsPre

-
- - - - - - - - - - - - - - - - - - - -GenericContent - - - - - - - - - - - - - - -Sem - - - - - - - -__ - - - - - - - - - - - - - - - - - -GenericContent - - - - - - - - - - - - - - -Com - - - - - - - -__ - - - - - - - - - - - - - - - - - -GenericContent - - - - - - - - - - - - - - -__ - - - - - - - - - -
-

PreAuthsMiddle

-
- - - - - - - - - - - - - - - -Sem - - - - - - - -__ - - - - - - - - - - - -GenericContent - - - - - - - - - - - - - - - - -
-

Loc

-
- - - - - - - - - - - - - - - -Com - - - - - - - -__ - - - - - - - -LocContent - - - - - - - - - -
-

LocContent

-
- - - - - - - - - - - - - - - - - - - -GenericContent - - - - - - - - - - - - - - -__ - - - - - - - - - - - -GenericContent - - - - - - - - - - - - - - - - - - - - - - - - -GenericContent - - - - - - - - - - - - - - - - -
-

GenericContent

-
- - - - - - - - - - - - - - - -Lowword - - - - - - - - - - - - - -Cap - - - - - - - - - - - -Cap - - - - - - - - - - - - - - - - - - - - -Cap - - - - - - - -__ - - - - - - - - - - - - - -Cap - - - - - - - -Lowword - - - - - - - - - - - - - -Cap - - - - - - - -Dot - - - - - - - - - - - - - - - - - - - -Cap - - - - - - - -Dot - - - - - - - - - - - - - - - - - - - - - - - - -Col - - - - - - - - - - - - - -Number - - - - - - - - - - - - - -Dot - - - - - - - - - - - - - -Dash - - - - - - - - - - - - - -Com - - - - - - - - - - - - - -__ - - - - - - - - - -
-

ParenCiteAuthYear

-
- - - - - - - - - - - - - - - -ParenNameMaybeList - - - - - - - -Com - - - - - - - -__ - - - - - - - -YearList - - - - - - - - - -
-

YearList

-
- - - - - - - - - - - - - - - -Year - - - - - - - - - - - - - -YearList - - - - - - - -Com - - - - - - - - - - - -__ - - - - - - - - - - - - - - -Year - - - - - - - - - -
-

NameList

-
- - - - - - - - - - - - - - - -Name - - - - - - - - - - - - - -NameList - - - - - - - -Com - - - - - - - -__ - - - - - - - -Name - - - - - - - - - - - - - -NameList - - - - - - - -Com - - - - - - - -__ - - - - - - - -NameList - - - - - - - - - - - - - -NameList - - - - - - - -Com - - - - - - - -__ - - - - - - - -Comp - - - - - - - -__ - - - - - - - -NameList - - - - - - - - - - - - - -NameList - - - - - - - -Com - - - - - - - -__ - - - - - - - -Comp - - - - - - - -__ - - - - - - - - - - - - - -NameList - - - - - - - -__ - - - - - - - -Comp - - - - - - - -__ - - - - - - - -NameList - - - - - - - - - - - - - -NameList - - - - - - - -__ - - - - - - - -Comp - - - - - - - -__ - - - - - - - - - - - - - -NameList - - - - - - - -Com - - - - - - - -__ - - - - - - - -Etal - - - - - - - - - - - - - -NameList - - - - - - - -Etal - - - - - - - - - -
-

ParenNameMaybeList

-
- - - - - - - - - - - - - - - -ParenNameMaybe - - - - - - - - - - - - - -ParenNameMaybeList - - - - - - - -Com - - - - - - - -__ - - - - - - - -Name - - - - - - - - - - - - - -ParenNameMaybeList - - - - - - - -Com - - - - - - - -__ - - - - - - - -NameList - - - - - - - - - - - - - -ParenNameMaybeList - - - - - - - -Com - - - - - - - -__ - - - - - - - -Comp - - - - - - - -__ - - - - - - - -NameList - - - - - - - - - - - - - -ParenNameMaybeList - - - - - - - -Com - - - - - - - -__ - - - - - - - -Comp - - - - - - - -__ - - - - - - - - - - - - - -ParenNameMaybeList - - - - - - - -__ - - - - - - - -Comp - - - - - - - -__ - - - - - - - -NameList - - - - - - - - - - - - - -ParenNameMaybeList - - - - - - - -__ - - - - - - - -Comp - - - - - - - -__ - - - - - - - - - - - - - -ParenNameMaybeList - - - - - - - -__ - - - - - - - -Etal - - - - - - - - - -
-

ParenNameMaybe

-
- - - - - - - - - - - - - - - -Name - - - - - - - - - - - - - -ParenNameMaybe - - - - - - - -__ - - - - - - - -ParenNameMaybe - - - - - - - - - - - - - -ParenNameMaybe - - - - - - - -__ - - - - - - - -Lowword - - - - - - - - - -
-

Etal

-
- - - - - - - - - - - - - - - - - - - - - - - -__ - - - - - - - - -Et - - - - - - - - - -
-

Name

-
- - - - - - - - - - - - - - - -Initials - - - - - - - -__ - - - - - - - -LastName - - - - - - - - - - - - - -LastName - - - - - - - - - -
-

LastName

-
- - - - - - - - - - - - - - - -SingleName - - - - - - - - - - - - - -HyphenName - - - - - - - - - -
-

Comp

-
- - - - - - - - - - - - - - - -And - - - - - - - - - - - - - -Amp - - - - - - - - - -
-

HyphenName

-
- - - - - - - - - - - - - - - -SingleName - - - - - - - -Dash - - - - - - - -SingleName - - - - - - - - - -
-

SingleName

-
- - - - - - - - - - - - - - - -BoringNameMaybe - - - - - - - - - - - - - -DutchName - - - - - - - - - - - - - -OReilly - - - - - - - - - - - - - -McConnel - - - - - - - - - -
-

Initials

-
- - - - - - - - - - - - - - - -Initial - - - - - - - - - - - - - -Initials - - - - - - - - - - - - - - - - - - - -__ - - - - - - - - - - - - - - - -Initial - - - - - - - - - -
-

Initial

-
- - - - - - - - - - - - - - - -Cap - - - - - - - -Dot - - - - - - - - - -
-

DutchName

-
- - - - - - - - - - - - - - - -DutchPrefix - - - - - - - -__ - - - - - - - -BoringNameMaybe - - - - - - - - - -
-

OReilly

-
- - - - - - - - - - - - - - - -BoringNameMaybe - - - - - - - -"'" - - - - - - - -BoringNameMaybe - - - - - - - - - -
-

McConnel

-
- - - - - - - - - - - - - - - -Mc - - - - - - - -BoringNameMaybe - - - - - - - - - -
-

BoringNameMaybe

-
- - - - - - - - - - - - - - - -Cap - - - - - - - - - - - - - - - - - - - -Lowword - - - - - - - - - - - - - - - - - -
-

BoringWord

-
- - - - - - - - - - - - - - - - - - - -Low - - - - - - - - - - - - - - - - -
-

DutchPrefix

-
- - - - - - - - - - - - - - - -DutchPref - - - - - - - - - - - - - -DutchPrefix - - - - - - - -__ - - - - - - - -DutchPref - - - - - - - - - -
-

Year

-
- - - - - - - - - - - - - - - -Year - - - - - - - - - - - - - -Year - - - - - - - - - - - - - - - -Dash - - - - - - - - -Lowword - - - - - - - - - - - - - -Year - - - - - - - -Slash - - - - - - - -Year - - - - - - - - - -
- - \ No newline at end of file + + + + + +

Input

+
+ + + + + + + + + + + + + + + + + + + + InputContent + + + + + + + + + + + + + + + +
+

InputContent

+
+ + + + + + + + + + + + + + + + ParenCite + + + + + + + + + + + + + + NarrCite + + + + + + + + + + + + + + NonCiteContent + + + + + + + + +
+

NonCiteContent

+
+ + + + + + + + + + + + + + + + Year + + + + + + + + + + + + + + NonYearParenContent + + + + + + + + + + + + + + Lp + + + + + + + + + + + + NonYearParenContent + + + + + + + + + + + + + + + + + + + + + + + Rp + + + + + + + + + + + + + + + + + + + + + + + Lp + + + + + + + + + + + + + NonYearParenContent + + + + + + + + + + + + + + + Rp + + + + + + + + + + + + + + Lp + + + + + + + + Year + + + + + + + + + + + + + + Year + + + + + + + + Rp + + + + + + + + +
+

NonYearParenContent

+
+ + + + + + + + + + + + + + + + __ + + + + + + + + + + + + + + Number + + + + + + + + + + + + + + Com + + + + + + + + + + + + + + Dot + + + + + + + + + + + + + + Sem + + + + + + + + + + + + + + Col + + + + + + + + + + + + + + Amp + + + + + + + + + + + + + + And + + + + + + + + + + + + + + Ca + + + + + + + + + + + + + + Quote + + + + + + + + + + + + + + Apo + + + + + + + + + + + + + + Slash + + + + + + + + + + + + + + Dash + + + + + + + + + + + + + + Punct + + + + + + + + + + + + + + Mc + + + + + + + + + + + + + + DutchPref + + + + + + + + + + + + + + Cap + + + + + + + + + + + + + + Lowword + + + + + + + + + + + + + + NL + + + + + + + + + + + + + + Misc + + + + + + + + + + + + + + End + + + + + + + + +
+

NarrCite

+
+ + + + + + + + + + + + + + + + NameList + + + + + + + + __ + + + + + + + + Lp + + + + + + + + YearList + + + + + + + + + + + + + + + + Loc + + + + + + + + + Rp + + + + + + + + +
+

ParenCite

+
+ + + + + + + + + + + + + + + + Lp + + + + + + + + ParenContent + + + + + + + + Rp + + + + + + + + +
+

ParenContent

+
+ + + + + + + + + + + + + + + + SingleParenEntry + + + + + + + + + + + + + + ParenContent + + + + + + + + Sem + + + + + + + + __ + + + + + + + + SingleParenEntry + + + + + + + + + + + + + + ParenContent + + + + + + + + PreAuthsMiddle + + + + + + + + SingleParenEntry + + + + + + + + +
+

SingleParenEntry

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + PreAuthsPre + + + + + + + + + + + + + + + + ParenCiteAuthYear + + + + + + + + + + + + + + + + Loc + + + + + + + + + +
+

PreAuthsPre

+
+ + + + + + + + + + + + + + + + + + + + GenericContent + + + + + + + + + + + + + + + Sem + + + + + + + + __ + + + + + + + + + + + + + + + + + + GenericContent + + + + + + + + + + + + + + + Com + + + + + + + + __ + + + + + + + + + + + + + + + + + + GenericContent + + + + + + + + + + + + + + + __ + + + + + + + + +
+

PreAuthsMiddle

+
+ + + + + + + + + + + + + + + + Sem + + + + + + + + __ + + + + + + + + + + + + GenericContent + + + + + + + + + + + + + + + +
+

Loc

+
+ + + + + + + + + + + + + + + + Com + + + + + + + + __ + + + + + + + + LocContent + + + + + + + + +
+

LocContent

+
+ + + + + + + + + + + + + + + + + + + + GenericContent + + + + + + + + + + + + + + + __ + + + + + + + + + + + + GenericContent + + + + + + + + + + + + + + + + + + + + + + + + + GenericContent + + + + + + + + + + + + + + + +
+

GenericContent

+
+ + + + + + + + + + + + + + + + Lowword + + + + + + + + + + + + + + Cap + + + + + + + + + + + + Cap + + + + + + + + + + + + + + + + + + + + + Cap + + + + + + + + __ + + + + + + + + + + + + + + Cap + + + + + + + + Lowword + + + + + + + + + + + + + + Cap + + + + + + + + Dot + + + + + + + + + + + + + + + + + + + + Cap + + + + + + + + Dot + + + + + + + + + + + + + + + + + + + + + + + + + Col + + + + + + + + + + + + + + Number + + + + + + + + + + + + + + Dot + + + + + + + + + + + + + + Dash + + + + + + + + + + + + + + Com + + + + + + + + + + + + + + __ + + + + + + + + +
+

ParenCiteAuthYear

+
+ + + + + + + + + + + + + + + + ParenNameMaybeList + + + + + + + + Com + + + + + + + + __ + + + + + + + + YearList + + + + + + + + +
+

YearList

+
+ + + + + + + + + + + + + + + + Year + + + + + + + + + + + + + + YearList + + + + + + + + Com + + + + + + + + + + + + __ + + + + + + + + + + + + + + + Year + + + + + + + + +
+

NameList

+
+ + + + + + + + + + + + + + + + Name + + + + + + + + + + + + + + NameList + + + + + + + + Com + + + + + + + + __ + + + + + + + + Name + + + + + + + + + + + + + + NameList + + + + + + + + Com + + + + + + + + __ + + + + + + + + NameList + + + + + + + + + + + + + + NameList + + + + + + + + Com + + + + + + + + __ + + + + + + + + Comp + + + + + + + + __ + + + + + + + + NameList + + + + + + + + + + + + + + NameList + + + + + + + + Com + + + + + + + + __ + + + + + + + + Comp + + + + + + + + __ + + + + + + + + + + + + + + NameList + + + + + + + + __ + + + + + + + + Comp + + + + + + + + __ + + + + + + + + NameList + + + + + + + + + + + + + + NameList + + + + + + + + __ + + + + + + + + Comp + + + + + + + + __ + + + + + + + + + + + + + + NameList + + + + + + + + Com + + + + + + + + __ + + + + + + + + Etal + + + + + + + + + + + + + + NameList + + + + + + + + Etal + + + + + + + + +
+

ParenNameMaybeList

+
+ + + + + + + + + + + + + + + + ParenNameMaybe + + + + + + + + + + + + + + ParenNameMaybeList + + + + + + + + Com + + + + + + + + __ + + + + + + + + Name + + + + + + + + + + + + + + ParenNameMaybeList + + + + + + + + Com + + + + + + + + __ + + + + + + + + NameList + + + + + + + + + + + + + + ParenNameMaybeList + + + + + + + + Com + + + + + + + + __ + + + + + + + + Comp + + + + + + + + __ + + + + + + + + NameList + + + + + + + + + + + + + + ParenNameMaybeList + + + + + + + + Com + + + + + + + + __ + + + + + + + + Comp + + + + + + + + __ + + + + + + + + + + + + + + ParenNameMaybeList + + + + + + + + __ + + + + + + + + Comp + + + + + + + + __ + + + + + + + + NameList + + + + + + + + + + + + + + ParenNameMaybeList + + + + + + + + __ + + + + + + + + Comp + + + + + + + + __ + + + + + + + + + + + + + + ParenNameMaybeList + + + + + + + + __ + + + + + + + + Etal + + + + + + + + +
+

ParenNameMaybe

+
+ + + + + + + + + + + + + + + + Name + + + + + + + + + + + + + + ParenNameMaybe + + + + + + + + __ + + + + + + + + ParenNameMaybe + + + + + + + + + + + + + + ParenNameMaybe + + + + + + + + __ + + + + + + + + Lowword + + + + + + + + +
+

Etal

+
+ + + + + + + + + + + + + + + + + + + + + + + + __ + + + + + + + + + Et + + + + + + + + +
+

Name

+
+ + + + + + + + + + + + + + + + Initials + + + + + + + + __ + + + + + + + + LastName + + + + + + + + + + + + + + LastName + + + + + + + + +
+

LastName

+
+ + + + + + + + + + + + + + + + SingleName + + + + + + + + + + + + + + HyphenName + + + + + + + + +
+

Comp

+
+ + + + + + + + + + + + + + + + And + + + + + + + + + + + + + + Amp + + + + + + + + +
+

HyphenName

+
+ + + + + + + + + + + + + + + + SingleName + + + + + + + + Dash + + + + + + + + SingleName + + + + + + + + +
+

SingleName

+
+ + + + + + + + + + + + + + + + BoringNameMaybe + + + + + + + + + + + + + + DutchName + + + + + + + + + + + + + + OReilly + + + + + + + + + + + + + + McConnel + + + + + + + + +
+

Initials

+
+ + + + + + + + + + + + + + + + Initial + + + + + + + + + + + + + + Initials + + + + + + + + + + + + + + + + + + + + __ + + + + + + + + + + + + + + + + Initial + + + + + + + + +
+

Initial

+
+ + + + + + + + + + + + + + + + Cap + + + + + + + + Dot + + + + + + + + +
+

DutchName

+
+ + + + + + + + + + + + + + + + DutchPrefix + + + + + + + + __ + + + + + + + + BoringNameMaybe + + + + + + + + +
+

OReilly

+
+ + + + + + + + + + + + + + + + BoringNameMaybe + + + + + + + + "'" + + + + + + + + BoringNameMaybe + + + + + + + + +
+

McConnel

+
+ + + + + + + + + + + + + + + + Mc + + + + + + + + BoringNameMaybe + + + + + + + + +
+

BoringNameMaybe

+
+ + + + + + + + + + + + + + + + Cap + + + + + + + + + + + + + + + + + + + + Lowword + + + + + + + + + + + + + + + + +
+

BoringWord

+
+ + + + + + + + + + + + + + + + + + + + Low + + + + + + + + + + + + + + + +
+

DutchPrefix

+
+ + + + + + + + + + + + + + + + DutchPref + + + + + + + + + + + + + + DutchPrefix + + + + + + + + __ + + + + + + + + DutchPref + + + + + + + + +
+

Year

+
+ + + + + + + + + + + + + + + + Year + + + + + + + + + + + + + + Year + + + + + + + + + + + + + + + + Dash + + + + + + + + + Lowword + + + + + + + + + + + + + + Year + + + + + + + + Slash + + + + + + + + Year + + + + + + + + +
+ + diff --git a/libs/citations/parse-text-cite/src/lib/names.ts b/libs/citations/parse-text-cite/src/lib/names.ts index eac0cfff..9004394b 100755 --- a/libs/citations/parse-text-cite/src/lib/names.ts +++ b/libs/citations/parse-text-cite/src/lib/names.ts @@ -3,17 +3,11 @@ const parencite = [ '(see Koehler, 2016, for more detail)', '(e.g., falsely balanced news coverage; Koehler, 2016)', ] -const narrCiteWParen = [ - 'Koehler (2016) noted the dangers of falsely balanced news coverage.', -] -const narrCiteWOParen = [ - 'In 2016, Koehler noted the dangers of falsely balanced news coverage.', -] +const narrCiteWParen = ['Koehler (2016) noted the dangers of falsely balanced news coverage.'] +const narrCiteWOParen = ['In 2016, Koehler noted the dangers of falsely balanced news coverage.'] // 8.12 Citing multiple works -const multipleWorks = [ - '(Adams et al., 2019; Shumway & Shulman, 2015; Westinghouse, 2017)', -] +const multipleWorks = ['(Adams et al., 2019; Shumway & Shulman, 2015; Westinghouse, 2017)'] const multipleWorksSameauthor = [ '(Department of Veterans Affairs, n.d., 2017a, 2017b, 2019)', 'Zhou (n.d., 2000, 2016, in press)', @@ -24,9 +18,7 @@ const multipleWorksHighlight = [ 'Sampson & Hughes, 2020; see also Augustine, 2017; Melara et al., 2018; Pérez, 2014)', ] -const multipleWorksNarr = [ - 'Suliman (2018), Gutiérrez (2012, 2017), and Medina and Reyes (2019)', -] +const multipleWorksNarr = ['Suliman (2018), Gutiérrez (2012, 2017), and Medina and Reyes (2019)'] const specificPart = [ '(Centers for Disease Control and Prevention, 2019, p. 10)', diff --git a/libs/citations/reference-parser-chatgpt/package.json b/libs/citations/reference-parser-chatgpt/package.json index 4d55c407..5adf36d8 100644 --- a/libs/citations/reference-parser-chatgpt/package.json +++ b/libs/citations/reference-parser-chatgpt/package.json @@ -32,5 +32,9 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "openai": "^3.2.1", + "eventsource-parser": "^1.0.0" + } } diff --git a/libs/citations/reference-parser-chatgpt/project.json b/libs/citations/reference-parser-chatgpt/project.json index dd6cb160..b066215c 100644 --- a/libs/citations/reference-parser-chatgpt/project.json +++ b/libs/citations/reference-parser-chatgpt/project.json @@ -94,10 +94,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/citations/reference-parser-chatgpt/**/*.ts"] - } + "outputs": ["{options.outputFile}"] } }, "tags": [] diff --git a/libs/citations/reference-parser-chatgpt/tsconfig.spec.json b/libs/citations/reference-parser-chatgpt/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/citations/reference-parser-chatgpt/tsconfig.spec.json +++ b/libs/citations/reference-parser-chatgpt/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/hybrid-builder/package.json b/libs/hybrid-builder/package.json index 893183dc..0effec4f 100644 --- a/libs/hybrid-builder/package.json +++ b/libs/hybrid-builder/package.json @@ -3,5 +3,10 @@ "version": "0.0.1", "main": "src/index.js", "generators": "./generators.json", - "executors": "./executors.json" + "executors": "./executors.json", + "dependencies": { + "@nx/js": "16.8.1", + "@nx/devkit": "16.8.1", + "@swc/core": "~1.3.51" + } } diff --git a/libs/hybrid-builder/src/executors/build/schema.json b/libs/hybrid-builder/src/executors/build/schema.json index 22292cd9..a0dfc9dc 100644 --- a/libs/hybrid-builder/src/executors/build/schema.json +++ b/libs/hybrid-builder/src/executors/build/schema.json @@ -77,10 +77,7 @@ "buildableProjectDepsInPackageJsonType": { "type": "string", "description": "When `updateBuildableProjectDepsInPackageJson` is `true`, this adds dependencies to either `peerDependencies` or `dependencies`.", - "enum": [ - "dependencies", - "peerDependencies" - ], + "enum": ["dependencies", "peerDependencies"], "default": "peerDependencies" }, "external": { @@ -88,10 +85,7 @@ "oneOf": [ { "type": "string", - "enum": [ - "all", - "none" - ] + "enum": ["all", "none"] }, { "type": "array", @@ -107,16 +101,10 @@ "type": "string" }, "description": "List of target names that annotate a build target for a project", - "default": [ - "build" - ] + "default": ["build"] } }, - "required": [ - "main", - "outputPath", - "tsConfig" - ], + "required": ["main", "outputPath", "tsConfig"], "definitions": { "assetPattern": { "oneOf": [ @@ -144,11 +132,7 @@ } }, "additionalProperties": false, - "required": [ - "glob", - "input", - "output" - ] + "required": ["glob", "input", "output"] }, { "type": "string" diff --git a/libs/hybrid-builder/src/generators/hybrid-builder/schema.json b/libs/hybrid-builder/src/generators/hybrid-builder/schema.json index cbfe7ac6..a97c925a 100644 --- a/libs/hybrid-builder/src/generators/hybrid-builder/schema.json +++ b/libs/hybrid-builder/src/generators/hybrid-builder/schema.json @@ -23,7 +23,5 @@ "description": "A directory where the project is placed" } }, - "required": [ - "name" - ] + "required": ["name"] } diff --git a/libs/hybrid-builder/tsconfig.spec.json b/libs/hybrid-builder/tsconfig.spec.json index 9b2a121d..f6d8ffcc 100644 --- a/libs/hybrid-builder/tsconfig.spec.json +++ b/libs/hybrid-builder/tsconfig.spec.json @@ -5,10 +5,5 @@ "module": "commonjs", "types": ["jest", "node"] }, - "include": [ - "jest.config.ts", - "src/**/*.test.ts", - "src/**/*.spec.ts", - "src/**/*.d.ts" - ] + "include": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts", "src/**/*.d.ts"] } diff --git a/libs/jast/jast-util-from-csl/CHANGELOG.md b/libs/jast/jast-util-from-csl/CHANGELOG.md index 9bfead63..49e8e1b2 100644 --- a/libs/jast/jast-util-from-csl/CHANGELOG.md +++ b/libs/jast/jast-util-from-csl/CHANGELOG.md @@ -6,20 +6,20 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `jast-types` updated to version `0.1.2` +- `jast-types` updated to version `0.1.2` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `jast-types` updated to version `0.1.0` +- `jast-types` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/jast/jast-util-from-csl/README.md b/libs/jast/jast-util-from-csl/README.md index 8dbe5f1b..e5b55493 100755 --- a/libs/jast/jast-util-from-csl/README.md +++ b/libs/jast/jast-util-from-csl/README.md @@ -3,7 +3,7 @@ ## API -*** +--- ### `cslToFront()` @@ -15,17 +15,17 @@ cslToFront(data: Data): void; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :----- | | `data` | `Data` | #### Returns `void` -Defined in: [lib/csl-to-jast.ts:27](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts#L27) +Defined in: [lib/csl-to-jast.ts:27](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts#L27) -*** +--- ### `cslToJats()` @@ -37,17 +37,17 @@ cslToJats(data: Data | Data[]): void | RefList; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :----- | -------- | | `data` | `Data` | `Data`[] | #### Returns `void` | `RefList` -Defined in: [lib/csl-to-jast.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts#L19) +Defined in: [lib/csl-to-jast.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts#L19) -*** +--- ### `cslToRef()` @@ -59,18 +59,18 @@ cslToRef(data: Data, index: string | number): Ref; #### Parameters -| Name | Type | -| :------ | :------ | -| `data` | `Data` | +| Name | Type | +| :------ | :------- | -------- | +| `data` | `Data` | | `index` | `string` | `number` | #### Returns `Ref` -Defined in: [lib/csl-to-jast.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts#L44) +Defined in: [lib/csl-to-jast.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts#L44) -*** +--- ### `cslToRefList()` @@ -84,15 +84,15 @@ cslToRefList(data: Data[] | { #### Parameters -| Name | Type | -| :------ | :------ | -| `data` | `Data`[] | { } | +| Name | Type | +| :----- | :------- | --- | +| `data` | `Data`[] | { } | #### Returns `RefList` -Defined in: [lib/csl-to-jast.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts#L31) +Defined in: [lib/csl-to-jast.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts#L31) ## Install diff --git a/libs/jast/jast-util-from-csl/package.json b/libs/jast/jast-util-from-csl/package.json index 346519fc..8a3cd380 100755 --- a/libs/jast/jast-util-from-csl/package.json +++ b/libs/jast/jast-util-from-csl/package.json @@ -3,8 +3,8 @@ "version": "0.1.1", "dependencies": { "csl-json": "^0.1.0", - "unist-util-is": "^5.1.1", - "xast-util-to-string": "^2.0.0" + "jast-types": "*", + "xastscript": "^3.1.1" }, "license": "GPL-3.0-or-later", "repository": "https://github.com/TrialAndErrorOrg/parsers", diff --git a/libs/jast/jast-util-from-csl/project.json b/libs/jast/jast-util-from-csl/project.json index b7c2c778..312c309b 100755 --- a/libs/jast/jast-util-from-csl/project.json +++ b/libs/jast/jast-util-from-csl/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/jast/jast-util-from-csl/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts b/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts index e6353e14..7f28de28 100755 --- a/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts +++ b/libs/jast/jast-util-from-csl/src/lib/csl-to-jast.ts @@ -28,16 +28,12 @@ export function cslToFront(data: CSL) { //TODO: [csl-to-jast] write a function that converts CSL to JAST frontmatter } -export function cslToRefList( - data: CSL[] | { [key: string | number]: CSL } -): RefList { +export function cslToRefList(data: CSL[] | { [key: string | number]: CSL }): RefList { if (Array.isArray(data)) { const reflist = data.map((csl, index) => cslToRef(csl, index)) return x('refList', reflist) as RefList } - const reflist = Object.entries(data).map(([index, csl]) => - cslToRef(csl, index) - ) + const reflist = Object.entries(data).map(([index, csl]) => cslToRef(csl, index)) return x('refList', reflist) as RefList } @@ -53,30 +49,28 @@ export function cslToRef(data: CSL, index: number | string): Ref { (x('pubId', { pubIdType: id.toLowerCase() }, [ { type: 'text', value: data[id] }, ]) as PubId) - : [] + : [], ) const names = data.author?.map((person) => { return x( 'name', - Object.entries(person).flatMap( - ([name, val]: [name: string, val: string]) => { - switch (name) { - case 'family': - return nameMap('surname', val) - case 'given': - return nameMap('givenNames', val) - case 'suffix': - return nameMap('suffix', val) - case 'dropping-particle': - return nameMap('prefix', val) - case 'non-dropping-particle': - return nameMap('prefix', val) - default: - return [] - } + Object.entries(person).flatMap(([name, val]: [name: string, val: string]) => { + switch (name) { + case 'family': + return nameMap('surname', val) + case 'given': + return nameMap('givenNames', val) + case 'suffix': + return nameMap('suffix', val) + case 'dropping-particle': + return nameMap('prefix', val) + case 'non-dropping-particle': + return nameMap('prefix', val) + default: + return [] } - ) + }), ) }) @@ -112,11 +106,7 @@ export function cslToRef(data: CSL, index: number | string): Ref { ].flat() return x('ref', { id: typeof index === 'string' ? index : `bib${index}` }, [ - x( - 'elementCitation', - { publicationType: getPublicationType(data) }, - elementCitationChildren - ), + x('elementCitation', { publicationType: getPublicationType(data) }, elementCitationChildren), ]) as Ref } function nameMap(name: string, value: string | undefined) { diff --git a/libs/jast/jast-util-from-csl/src/lib/test-jast.json b/libs/jast/jast-util-from-csl/src/lib/test-jast.json index 300aa4bd..fd382b0f 100755 --- a/libs/jast/jast-util-from-csl/src/lib/test-jast.json +++ b/libs/jast/jast-util-from-csl/src/lib/test-jast.json @@ -5161,4 +5161,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/jast/jast-util-to-csl/CHANGELOG.md b/libs/jast/jast-util-to-csl/CHANGELOG.md index 6dcaae3d..971807bd 100644 --- a/libs/jast/jast-util-to-csl/CHANGELOG.md +++ b/libs/jast/jast-util-to-csl/CHANGELOG.md @@ -6,33 +6,32 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `rejour-parse` updated to version `0.1.1` -* `jast-types` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.2` -* `xast-util-select` updated to version `0.1.1` -## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/jast-util-to-csl-0.1.0...jast-util-to-csl-0.1.1) (2023-03-09) +- `rejour-parse` updated to version `0.1.1` +- `jast-types` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.2` +- `xast-util-select` updated to version `0.1.1` +## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/jast-util-to-csl-0.1.0...jast-util-to-csl-0.1.1) (2023-03-09) ### Bug Fixes -* **jast-util-to-csl:** remove slow visit dependency ([936345f](https://github.com/TrialAndErrorOrg/parsers/commit/936345f4baf354bc676d9c005378720699b53eb9)) +- **jast-util-to-csl:** remove slow visit dependency ([936345f](https://github.com/TrialAndErrorOrg/parsers/commit/936345f4baf354bc676d9c005378720699b53eb9)) ## 0.1.0 (2023-03-09) ### Dependency Updates -* `rejour-parse` updated to version `0.1.0` -* `jast-types` updated to version `0.1.0` -* `utils-misc` updated to version `0.1.0` +- `rejour-parse` updated to version `0.1.0` +- `jast-types` updated to version `0.1.0` +- `utils-misc` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) diff --git a/libs/jast/jast-util-to-csl/README.md b/libs/jast/jast-util-to-csl/README.md index a686310c..9091773b 100755 --- a/libs/jast/jast-util-to-csl/README.md +++ b/libs/jast/jast-util-to-csl/README.md @@ -3,7 +3,7 @@ ## API -*** +--- ### `all()` @@ -15,17 +15,17 @@ all(node: Bold | FixedCase | Italic | Monospace | NamedContent | Overline | Roma #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :----- | ----------- | -------- | ----------- | -------------- | ---------- | ------- | ------ | ----------- | ---- | -------- | --------------- | ----- | ----- | ----------- | -------------------- | -------- | ----- | ---------- | ------- | ---------- | --- | ----- | ------- | ------------ | ----- | ---------- | --------- | ----------- | --------- | ---------- | ------ | --------- | ------- | --------- | ----- | ------------- | ----------------- | ------- | ------------ | ------- | ----- | -------------- | ------------ | ----------- | ------------------- | --------------- | --------------- | ------------- | -------------- | ---------------- | ------------- | ----------------- | ----- | ------- | ---- | ----------------------------- | ---------------- | --------------- | -------- | ------ | ------- | ------ | --------- | ------- | ----------- | ----------------------- | ------- | --------- | ------------- | --------- | ---------- | ------------ | ----------- | ----------- | -------- | ------------- | ---------- | ------------------- | ----------- | ---------------- | --------- | ------------- | ------------------ | ----------- | ----- | ---------- | --------- | ---------- | ------ | ---------- | -------------- | ------------------- | -------- | ----------- | ----------- | ---------------- | ------------ | ---------- | ----- | ------------- | --------- | -------- | ---------- | ------- | ------------------- | ------------ | ------------- | ----------- | ------------- | ------ | ---------------- | ---------------------------- | ------------- | ------------ | -------------- | -------- | ----------------- | ------------- | ------- | -------------- | --------- | ------- | --------- | ----------- | -------------- | ------------ | ----------------- | ------- | ----------- | --------- | --------- | --------------------- | ------------ | --------- | ------------ | -------------- | ------------ | --------------- | -------- | ---------- | ------------------ | -------------- | -------------- | --------- | ------ | ------ | ------------- | ------- | ---------------- | ---------- | ------------ | --------------- | --------- | ----------- | ------------ | --------- | ----------- | --------------- | ------------------------- | ----------------------- | --------------- | ----- | ------- | ---------- | --------- | -------------- | ---------------------- | ----------------- | --------------- | ------------- | ---------- | ----- | -------------------- | -------- | ------------ | ------ | --------- | ----------------- | ------------- | --------------------- | ----------------- | ------------- | ---------- | --------- | ---------- | --------- | ------------- | ----------- | --------- | ----------- | --------- | ------ | ------------------ | ------------ | -------------------------- | --------------- | -------------------- | ----------------- | -------------------- | --------------- | ------- | --------------- | ---------- | ----------- | ---------- | ------------ | ----------- | ------------ | ---------- | ----------- | ----------- | ---------------- | ----- | ----- | ------- | -------- | ------ | ------ | --------- | --------- | ------ | ---------- | --------- | ------ | ----- | ------ | ------- | ----------- | -------- | ------------- | ------- | -------------- | --------------- | -------- | ------ | -------- | ----- | ------------ | ------------- | ------------ | --------- | ----------- | ------- | ------------ | ----------- | ------------- | ------------------ | ------------ | ------------ | ----------- | ---------- | ---- | ----- | --------- | --------------- | --------------- | ----------------- | ----------- | ------------------- | ----------- | ----------------- | -------------- | ----- | ----------- | ---------- | ------- | --------- | ---------- | -------- | -------- | --------- | ----------- | ------ | -------- | ------------- | --------------- | -------------- | ------------------ | ---- | ----- | -------------- | -------------- | ------------ | ---- | ---- | ----- | --------- | ----------------- | ------------ | --------- | ------- | ------- | ---- | --------------- | ---- | ---- | --------------- | -------------- | ---------------- | ---------------------- | ----------- | --- | | `node` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `Label` | `ObjectId` | `P` | `Sec` | `Title` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `AddrLine` | `City` | `Country` | `Email` | `ExtLink` | `Fax` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Array` | `Code` | `Graphic` | `Media` | `Preformat` | `SupplementaryMaterial` | `Table` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `Attrib` | `LongDesc` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Back` | `Body` | `FloatsGroup` | `Front` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Degrees` | `Name` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Series` | `Size` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tfoot` | `Thead` | `Tr` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X` | #### Returns `any`[] -Defined in: [lib/jast-util-to-csl.ts:252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L252) +Defined in: [lib/jast-util-to-csl.ts:252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L252) -*** +--- ### `one()` @@ -37,17 +37,17 @@ one(node: Text | Bold | FixedCase | Italic | Monospace | NamedContent | Overline #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :----- | ------ | ----------- | -------- | ----------- | -------------- | ---------- | ------- | ------ | ----------- | ---- | -------- | --------------- | ----- | ----- | ----------- | -------------------- | -------- | ----- | ---------- | ------- | ---------- | --- | ----- | ------- | ------------ | ----- | ---------- | --------- | ----------- | --------- | ---------- | ------ | --------- | ------- | --------- | ----- | ------------- | ----------------- | ------- | ------------ | ------- | ----- | -------------- | ------------ | ----------- | ------------------- | --------------- | --------------- | ------------- | -------------- | ---------------- | ------------- | ----------------- | ----- | ------- | ---- | ----------------------------- | ---------------- | --------------- | -------- | ------ | ------- | ------ | --------- | ------- | ----------- | ----------------------- | ------- | --------- | ------------- | --------- | ---------- | ------------ | ----------- | ----------- | -------- | ------------- | ---------- | ------------------- | ----------- | ---------------- | --------- | ------------- | ------------------ | ----------- | ----- | ---------- | --------- | ---------- | ------ | ---------- | -------------- | ------------------- | -------- | ----------- | ----------- | ---------------- | ------------ | ---------- | ----- | ------------- | --------- | -------- | ---------- | ------- | ------------------- | ------------ | ------------- | ----------- | ------------- | ------ | ---------------- | ---------------------------- | ------------- | ------------ | -------------- | -------- | ----------------- | ------------- | ------- | -------------- | --------- | ------- | --------- | ----------- | -------------- | ------------ | ----------------- | ------- | ----------- | --------- | --------- | --------------------- | ------------ | --------- | ------------ | -------------- | ------------ | --------------- | -------- | ---------- | ------------------ | -------------- | -------------- | --------- | ------ | ------ | ------------- | ------- | ---------------- | ---------- | ------------ | --------------- | --------- | ----------- | ------------ | --------- | ----------- | --------------- | ------------------------- | ----------------------- | --------------- | ----- | ------- | ---------- | --------- | -------------- | ---------------------- | ----------------- | --------------- | ------------- | ---------- | ----- | -------------------- | -------- | ------------ | ------ | --------- | ----------------- | ------------- | --------------------- | ----------------- | ------------- | ---------- | --------- | ---------- | --------- | ------------- | ----------- | --------- | ----------- | --------- | ------ | ------------------ | ------------ | -------------------------- | --------------- | -------------------- | ----------------- | -------------------- | --------------- | ------- | --------------- | ---------- | ----------- | ---------- | ------------ | ----------- | ------------ | ---------- | ----------- | ----------- | ---------------- | ----- | ----- | ------- | -------- | ------ | ------ | --------- | --------- | ------ | ---------- | --------- | ------ | ----- | ------ | ------- | ----------- | -------- | ------------- | ------- | -------------- | --------------- | -------- | ------ | -------- | ----- | ------------ | ------------- | ------------ | --------- | ----------- | ------- | ------------ | ----------- | ------------- | ------------------ | ------------ | ------------ | ----------- | ---------- | ---- | ----- | --------- | --------------- | --------------- | ----------------- | ----------- | ------------------- | ----------- | ----------------- | -------------- | ----- | ----------- | ---------- | ------- | --------- | ---------- | -------- | -------- | --------- | ----------- | ------ | -------- | ------------- | --------------- | -------------- | ------------------ | ---- | ----- | -------------- | -------------- | ------------ | ---- | ---- | ----- | --------- | ----------------- | ------------ | --------- | ------- | ------- | ---- | --------------- | ---- | ---- | --------------- | -------------- | ---------------- | ---------------------- | ----------- | --- | | `node` | `Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `Label` | `ObjectId` | `P` | `Sec` | `Title` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `AddrLine` | `City` | `Country` | `Email` | `ExtLink` | `Fax` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Array` | `Code` | `Graphic` | `Media` | `Preformat` | `SupplementaryMaterial` | `Table` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `Attrib` | `LongDesc` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Back` | `Body` | `FloatsGroup` | `Front` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Degrees` | `Name` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Series` | `Size` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tfoot` | `Thead` | `Tr` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X` | #### Returns `any` -Defined in: [lib/jast-util-to-csl.ts:266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L266) +Defined in: [lib/jast-util-to-csl.ts:266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L266) -*** +--- ### `refListToCSL()` @@ -59,17 +59,17 @@ refListToCSL(list: RefList): CSL[]; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :-------- | | `list` | `RefList` | #### Returns `CSL`[] -Defined in: [lib/jast-util-to-csl.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L31) +Defined in: [lib/jast-util-to-csl.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L31) -*** +--- ### `refToCSL()` @@ -81,18 +81,18 @@ refToCSL(citation: ElementCitation, id: string): CSL; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :--------- | :---------------- | | `citation` | `ElementCitation` | -| `id` | `string` | +| `id` | `string` | #### Returns `CSL` -Defined in: [lib/jast-util-to-csl.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L45) +Defined in: [lib/jast-util-to-csl.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L45) -*** +--- ### `toCSL()` @@ -106,21 +106,21 @@ toCSL(root: T): CSLConditional; #### Type parameters -* `T` *extends* `Back` | `Front` | `Root` +- `T` _extends_ `Back` | `Front` | `Root` #### Parameters -| Name | Type | -| :------ | :------ | -| `root` | `T` | +| Name | Type | +| :----- | :--- | +| `root` | `T` | #### Returns `CSLConditional`<`T`> -Defined in: [lib/jast-util-to-csl.ts:220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L220) +Defined in: [lib/jast-util-to-csl.ts:220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L220) -*** +--- ### `toCSLBack()` @@ -132,17 +132,17 @@ toCSLBack(node: Back): CSL[] | undefined; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :----- | | `node` | `Back` | #### Returns `CSL`[] | `undefined` -Defined in: [lib/jast-util-to-csl.ts:192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L192) +Defined in: [lib/jast-util-to-csl.ts:192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L192) -*** +--- ### `toCSLFront()` @@ -154,15 +154,15 @@ toCSLFront(node: Front): CSL | undefined; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :------ | | `node` | `Front` | #### Returns `CSL` | `undefined` -Defined in: [lib/jast-util-to-csl.ts:184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L184) +Defined in: [lib/jast-util-to-csl.ts:184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-csl/src/lib/jast-util-to-csl.ts#L184) ## Install diff --git a/libs/jast/jast-util-to-csl/package.json b/libs/jast/jast-util-to-csl/package.json index f0ba00de..539ee186 100755 --- a/libs/jast/jast-util-to-csl/package.json +++ b/libs/jast/jast-util-to-csl/package.json @@ -33,5 +33,13 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "jast-types": "*", + "xast-util-is-element": "*", + "xast-util-select": "*", + "csl-json": "0.1.0", + "xast-util-to-string": "^2.0.1", + "unist-util-is": "^5.2.1" + } } diff --git a/libs/jast/jast-util-to-csl/project.json b/libs/jast/jast-util-to-csl/project.json index cb2b899b..042e7969 100755 --- a/libs/jast/jast-util-to-csl/project.json +++ b/libs/jast/jast-util-to-csl/project.json @@ -41,10 +41,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/jast/jast-util-to-csl/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/jast/jast-util-to-texast/CHANGELOG.md b/libs/jast/jast-util-to-texast/CHANGELOG.md index 8bfaee68..bcbc6807 100644 --- a/libs/jast/jast-util-to-texast/CHANGELOG.md +++ b/libs/jast/jast-util-to-texast/CHANGELOG.md @@ -6,26 +6,25 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `jast-types` updated to version `0.1.0` -* `xast-util-select` updated to version `0.1.0` -* `texast` updated to version `0.1.0` -* `jast-util-to-csl` updated to version `0.1.0` -* `csl-to-biblatex` updated to version `0.1.0` -* `rejour-parse` updated to version `0.1.0` -* `relatex-stringify` updated to version `0.1.0` -* `texast-util-to-latex` updated to version `0.1.0` +- `jast-types` updated to version `0.1.0` +- `xast-util-select` updated to version `0.1.0` +- `texast` updated to version `0.1.0` +- `jast-util-to-csl` updated to version `0.1.0` +- `csl-to-biblatex` updated to version `0.1.0` +- `rejour-parse` updated to version `0.1.0` +- `relatex-stringify` updated to version `0.1.0` +- `texast-util-to-latex` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) -* **ooxast-unified:** add lists ([9727206](https://github.com/TrialAndErrorOrg/parsers/commit/9727206eb6f84790e20a4dc19b5070f0309d7ebc)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) +- **ooxast-unified:** add lists ([9727206](https://github.com/TrialAndErrorOrg/parsers/commit/9727206eb6f84790e20a4dc19b5070f0309d7ebc)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) diff --git a/libs/jast/jast-util-to-texast/README.md b/libs/jast/jast-util-to-texast/README.md index 90bbe80b..15dc571b 100755 --- a/libs/jast/jast-util-to-texast/README.md +++ b/libs/jast/jast-util-to-texast/README.md @@ -9,18 +9,18 @@ Utility to convert a [jast][jast] tree to a [texast][texast] tree. ## Contents -* [What is this?](#what-is-this) -* [When should I use this?](#when-should-i-use-this) -* [Install](#install) -* [Use](#use) -* [API](#api) -* [Syntax tree](#syntax-tree) -* [Types](#types) -* [Compatibility](#compatibility) -* [Security](#security) -* [Related](#related) -* [Contribute](#contribute) -* [License](#license) +- [What is this?](#what-is-this) +- [When should I use this?](#when-should-i-use-this) +- [Install](#install) +- [Use](#use) +- [API](#api) +- [Syntax tree](#syntax-tree) +- [Types](#types) +- [Compatibility](#compatibility) +- [Security](#security) +- [Related](#related) +- [Contribute](#contribute) +- [License](#license) ## What is this? @@ -42,7 +42,7 @@ pnpm add jast-util-to-texast ## API -*** +--- ### `all()` @@ -56,18 +56,18 @@ all(j: J, parent: Node): TexastContent[]; #### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `j` | [`J`](modules.md#j) | jast constructor function | -| `parent` | [`Node`](modules.md#node) | | +| Name | Type | Description | +| :------- | :------------------------ | :------------------------ | +| `j` | [`J`](modules.md#j) | jast constructor function | +| `parent` | [`Node`](modules.md#node) | | #### Returns [`TexastContent`](modules.md#texastcontent)[] -Defined in: [src/lib/all.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/all.ts#L10) +Defined in: [src/lib/all.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/all.ts#L10) -*** +--- ### `one()` @@ -79,19 +79,19 @@ one(j: J, node: Node, parent: Parent): TexastContent | TexastContent[] | void; #### Parameters -| Name | Type | -| :------ | :------ | -| `j` | [`J`](modules.md#j) | -| `node` | [`Node`](modules.md#node) | +| Name | Type | +| :------- | :---------------------------- | +| `j` | [`J`](modules.md#j) | +| `node` | [`Node`](modules.md#node) | | `parent` | [`Parent`](modules.md#parent) | #### Returns [`TexastContent`](modules.md#texastcontent) | [`TexastContent`](modules.md#texastcontent)[] | `void` -Defined in: [src/lib/one.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/one.ts#L7) +Defined in: [src/lib/one.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/one.ts#L7) -*** +--- ### `toTexast()` @@ -103,18 +103,18 @@ toTexast(tree: TexastContent | TexastRoot, options: Options = ...): TexastConten #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | [`TexastContent`](modules.md#texastcontent) | [`TexastRoot`](modules.md#texastroot) | -| `options` | [`Options`](modules.md#options) | +| Name | Type | +| :-------- | :------------------------------------------ | ------------------------------------- | +| `tree` | [`TexastContent`](modules.md#texastcontent) | [`TexastRoot`](modules.md#texastroot) | +| `options` | [`Options`](modules.md#options) | #### Returns [`TexastContent`](modules.md#texastcontent) | [`TexastRoot`](modules.md#texastroot) -Defined in: [src/lib/jast-util-to-texast.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/jast-util-to-texast.ts#L24) +Defined in: [src/lib/jast-util-to-texast.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/jast-util-to-texast.ts#L24) -*** +--- ### `defaultHandlers` @@ -465,320 +465,320 @@ Defined in: [src/lib/jast-util-to-texast.ts:24](https://github.com/TrialAndErro #### Type declaration -| Member | Type | -| :------ | :------ | -| `abbrev` | () => `void` | -| `abbrevJournaltitle` | () => `void` | -| `abstract` | () => `void` | -| `accessDate` | () => `void` | -| `ack` | () => `void` | -| `addrLine` | () => `void` | -| `address` | () => `void` | -| `aff` | () => `void` | -| `affAlternatives` | () => `void` | -| `altText` | () => `void` | -| `altTitle` | () => `void` | -| `alternatives` | () => `void` | -| `annotation` | () => `void` | -| `anonymous` | () => `void` | -| `answer` | () => `void` | -| `answerSet` | () => `void` | -| `app` | () => `void` | -| `appGroup` | () => `void` | -| `array` | () => `void` | -| `article` | (`j`: [`J`](modules.md#j), `node`: [`Root`](modules.md#root)) => [`TexastContent`](modules.md#texastcontent) | -| `articleCategories` | () => `void` | -| `articleId` | () => `void` | -| `articleMeta` | () => `void` | -| `articleTitle` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `articleVersion` | () => `void` | -| `articleVersionalternatives` | () => `void` | -| `attrib` | () => `void` | -| `authorComment` | () => `void` | -| `authorNotes` | () => `void` | -| `awardDesc` | () => `void` | -| `awardGroup` | () => `void` | -| `awardId` | () => `void` | -| `awardName` | () => `void` | -| `back` | (`j`: [`J`](modules.md#j), `parent`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | -| `bio` | () => `void` | -| `blockAlternatives` | () => `void` | -| `body` | (`j`: [`J`](modules.md#j), `node`: [`Root`](modules.md#root)) => [`TexastContent`](modules.md#texastcontent) | -| `bold` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `boxedText` | () => `void` | -| `break` | () => `void` | -| `caption` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `chapterTitle` | () => `void` | -| `chemStruct` | () => `void` | -| `chemStructwrap` | () => `void` | -| `citationAlternatives` | () => `void` | -| `city` | () => `void` | -| `code` | () => `void` | -| `col` | () => `void` | -| `colgroup` | () => `void` | -| `collab` | () => `void` | -| `collabAlternatives` | () => `void` | -| `command` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `comment` | () => `void` | -| `compoundKwd` | () => `void` | -| `compoundKwdpart` | () => `void` | -| `compoundSubject` | () => `void` | -| `compoundSubjectpart` | () => `void` | -| `confAcronym` | () => `void` | -| `confDate` | () => `void` | -| `confLoc` | () => `void` | -| `confName` | () => `void` | -| `confNum` | () => `void` | -| `confSponsor` | () => `void` | -| `confTheme` | () => `void` | -| `conference` | () => `void` | -| `contrib` | () => `void` | -| `contribGroup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | -| `contribId` | () => `void` | -| `contributedResourcegroup` | () => `void` | -| `copyrightHolder` | () => `void` | -| `copyrightStatement` | () => `void` | -| `copyrightYear` | () => `void` | -| `corresp` | () => `void` | -| `count` | () => `void` | -| `country` | () => `void` | -| `counts` | () => `void` | -| `customMeta` | () => `void` | -| `customMetagroup` | () => `void` | -| `dataTitle` | () => `void` | -| `date` | () => `void` | -| `dateIncitation` | () => `void` | -| `day` | () => `void` | -| `def` | () => `void` | -| `defHead` | () => `void` | -| `defItem` | () => `void` | -| `defList` | () => `void` | -| `degrees` | () => `void` | -| `disp-quote` | (`j`: [`J`](modules.md#j), `node`: `DispQuote`) => `Environment` | -| `dispFormula` | () => `void` | -| `dispFormulagroup` | () => `void` | -| `dispQuote` | () => `void` | -| `edition` | () => `void` | -| `elementCitation` | () => `void` | -| `elocationId` | () => `void` | -| `email` | () => `void` | -| `equationCount` | () => `void` | -| `era` | () => `void` | -| `etal` | () => `void` | -| `event` | () => `void` | -| `eventDesc` | () => `void` | -| `explanation` | () => `void` | -| `extLink` | (`j`: [`J`](modules.md#j), `node`: `ExtLink`) => { `children`: `CommandArg`[]; `name`: `string`; `type`: `string`; } | -| `extendedBy` | () => `void` | -| `fax` | () => `void` | -| `fig` | (`j`: [`J`](modules.md#j), `fig`: `Fig`) => { `children`: [`TexastContent`](modules.md#texastcontent)[]; `name`: `string`; `type`: `string`; } | -| `figCount` | () => `void` | -| `figGroup` | () => `void` | -| `fixedCase` | () => `void` | -| `floatsGroup` | () => `void` | -| `fn` | (`j`: [`J`](modules.md#j), `parent`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | -| `fnGroup` | (`j`: [`J`](modules.md#j), `parent`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | -| `fpage` | () => `void` | -| `front` | (`j`: [`J`](modules.md#j), `node`: [`Root`](modules.md#root)) => [`TexastContent`](modules.md#texastcontent) | -| `frontStub` | () => `void` | -| `fundingGroup` | () => `void` | -| `fundingSource` | () => `void` | -| `fundingStatement` | () => `void` | -| `givenNames` | () => `void` | -| `glossary` | () => `void` | -| `glyphData` | () => `void` | -| `glyphRef` | () => `void` | -| `gov` | () => `void` | -| `graphic` | (`j`: [`J`](modules.md#j), `node`: `Graphic`) => { `children`: (`CommandArg` | { `type`: `string`; `value`: `string`; })[]; `name`: `string`; `type`: `string`; } | -| `history` | () => `void` | -| `hr` | () => `void` | -| `indexTerm` | () => `void` | -| `indexTermrangeend` | () => `void` | -| `inlineFormula` | () => `void` | -| `inlineGraphic` | (`j`: [`J`](modules.md#j), `node`: `Graphic`) => { `children`: (`CommandArg` | { `type`: `string`; `value`: `string`; })[]; `name`: `string`; `type`: `string`; } | -| `inlineMedia` | () => `void` | -| `inlineSupplementarymaterial` | () => `void` | -| `institution` | () => `void` | -| `institutionId` | () => `void` | -| `institutionWrap` | () => `void` | -| `instruction` | () => `void` | -| `isbn` | () => `void` | -| `issn` | () => `void` | -| `issnL` | () => `void` | -| `issue` | () => `void` | -| `issueId` | () => `void` | -| `issuePart` | () => `void` | -| `issueSponsor` | () => `void` | -| `issueSubtitle` | () => `void` | -| `issueTitle` | () => `void` | -| `issueTitlegroup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | -| `italic` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent) | -| `journalId` | () => `void` | -| `journalMeta` | () => `void` | -| `journalSubtitle` | () => `void` | -| `journalTitle` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `journalTitlegroup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | -| `kwd` | () => `void` | -| `kwdGroup` | () => `void` | -| `label` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `license` | () => `void` | -| `licenseP` | () => `void` | -| `list` | (`j`: [`J`](modules.md#j), `list`: `List`) => { `children`: [`TexastContent`](modules.md#texastcontent)[]; `name`: `string`; `type`: `string`; } | -| `listItem` | (`j`: [`J`](modules.md#j), `item`: `ListItem`) => [`TexastContent`](modules.md#texastcontent) | -| `longDesc` | () => `void` | -| `lpage` | () => `void` | -| `media` | () => `void` | -| `metaName` | () => `void` | -| `metaValue` | () => `void` | -| `milestoneEnd` | () => `void` | -| `milestoneStart` | () => `void` | -| `mixedCitation` | () => `void` | -| `monospace` | () => `void` | -| `month` | () => `void` | -| `name` | () => `void` | -| `nameAlternatives` | () => `void` | -| `namedContent` | () => `void` | -| `nestedKwd` | () => `void` | -| `nlmCitation` | () => `void` | -| `note` | () => `void` | -| `notes` | () => `void` | -| `objectId` | () => `void` | -| `onBehalfof` | () => `void` | -| `openAccess` | () => `void` | -| `option` | () => `void` | -| `overline` | () => `void` | -| `overlineEnd` | () => `void` | -| `overlineStart` | () => `void` | -| `p` | (`j`: [`J`](modules.md#j), `p`: `P`) => [`TexastContent`](modules.md#texastcontent) | -| `pageCount` | () => `void` | -| `pageRange` | () => `void` | -| `partTitle` | () => `void` | -| `patent` | () => `void` | -| `permissions` | () => `void` | -| `personGroup` | () => `void` | -| `phone` | () => `void` | -| `postalCode` | () => `void` | -| `prefix` | () => `void` | -| `preformat` | () => `void` | -| `price` | () => `void` | -| `principalAwardrecipient` | () => `void` | -| `principalInvestigator` | () => `void` | -| `privateChar` | () => `void` | -| `processingMeta` | () => `void` | -| `product` | () => `void` | -| `pubDate` | () => `void` | -| `pubDatenotavailable` | () => `void` | -| `pubHistory` | () => `void` | -| `pubId` | () => `void` | -| `publisher` | () => `void` | -| `publisherLoc` | () => `void` | -| `publisherName` | () => `void` | -| `question` | () => `void` | -| `questionPreamble` | () => `void` | -| `questionWrap` | () => `void` | -| `questionWrapgroup` | () => `void` | -| `rb` | () => `void` | -| `ref` | () => `void` | -| `refCount` | () => `void` | -| `refList` | (`j`: [`J`](modules.md#j), `list`: `RefList`) => `Environment` | `undefined` | -| `relatedArticle` | () => `void` | -| `relatedObject` | () => `void` | -| `resourceId` | () => `void` | -| `resourceName` | () => `void` | -| `resourceWrap` | () => `void` | -| `response` | () => `void` | -| `restrictedBy` | () => `void` | -| `role` | () => `void` | -| `roman` | () => `void` | -| `root` | (`j`: [`J`](modules.md#j), `node`: [`Root`](modules.md#root)) => [`TexastContent`](modules.md#texastcontent) | -| `rp` | () => `void` | -| `rt` | () => `void` | -| `ruby` | () => `void` | -| `sansSerif` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `sc` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `season` | () => `void` | -| `sec` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents)) => [`TexastContent`](modules.md#texastcontent)[] | -| `secMeta` | () => `void` | -| `see` | () => `void` | -| `seeAlso` | () => `void` | -| `selfUri` | () => `void` | -| `series` | () => `void` | -| `seriesText` | () => `void` | -| `seriesTitle` | () => `void` | -| `sig` | () => `void` | -| `sigBlock` | () => `void` | -| `size` | () => `void` | -| `source` | () => `void` | -| `speaker` | () => `void` | -| `speech` | () => `void` | -| `state` | () => `void` | -| `statement` | () => `void` | -| `std` | () => `void` | -| `stdOrganization` | () => `void` | -| `strike` | () => `void` | -| `stringConf` | () => `void` | -| `stringDate` | () => `void` | -| `stringName` | () => `void` | -| `styledContent` | () => `void` | -| `sub` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent) | -| `subArticle` | () => `void` | -| `subjGroup` | () => `void` | -| `subject` | () => `void` | -| `subtitle` | () => `void` | -| `suffix` | () => `void` | -| `sup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent) | -| `supplement` | () => `void` | -| `supplementaryMaterial` | () => `void` | -| `supportDescription` | () => `void` | -| `supportGroup` | () => `void` | -| `supportSource` | () => `void` | -| `surname` | () => `void` | -| `table` | (`j`: [`J`](modules.md#j), `table`: `Table`) => { `children`: [`TexastContent`](modules.md#texastcontent)[]; `name`: `string`; `type`: `string`; } | -| `tableCount` | () => `void` | -| `tableWrap` | (`j`: [`J`](modules.md#j), `node`: `TableWrap`) => [`TexastContent`](modules.md#texastcontent) | -| `tableWrapfoot` | () => `void` | -| `tableWrapgroup` | () => `void` | -| `target` | () => `void` | -| `tbody` | (`j`: [`J`](modules.md#j), `parent`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | -| `td` | (`j`: [`J`](modules.md#j), `node`: `Td`) => `TableCell` | -| `term` | () => `void` | -| `termHead` | () => `void` | -| `texMath` | () => `void` | -| `text` | (`j`: [`J`](modules.md#j), `node`: [`Text`](modules.md#text)) => [`TexastContent`](modules.md#texastcontent) | -| `textualForm` | () => `void` | -| `tfoot` | () => `void` | -| `th` | () => `void` | -| `thead` | () => `void` | -| `timeStamp` | () => `void` | -| `title` | (`j`: [`J`](modules.md#j), `parent`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | -| `titleGroup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | -| `tr` | (`j`: [`J`](modules.md#j), `node`: `Tr`) => [`TexastContent`](modules.md#texastcontent) | -| `transAbstract` | () => `void` | -| `transSource` | () => `void` | -| `transSubtitle` | () => `void` | -| `transTitle` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `transTitlegroup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | -| `underline` | () => `void` | -| `underlineEnd` | () => `void` | -| `underlineStart` | () => `void` | -| `unstructuredKwdgroup` | () => `void` | -| `uri` | () => `void` | -| `verseGroup` | () => `void` | -| `verseLine` | () => `void` | -| `version` | () => `void` | -| `volume` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `volumeId` | () => `void` | -| `volumeIssuegroup` | () => `void` | -| `volumeSeries` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | -| `wordCount` | () => `void` | -| `x` | () => `void` | -| `xml` | () => `void` | -| `xref` | (`j`: [`J`](modules.md#j), `node`: `Xref`) => [`TexastContent`](modules.md#texastcontent) | -| `year` | () => `void` | - -Defined in: [src/lib/handlers/index.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/handlers/index.ts#L29) - -*** +| Member | Type | +| :---------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| `abbrev` | () => `void` | +| `abbrevJournaltitle` | () => `void` | +| `abstract` | () => `void` | +| `accessDate` | () => `void` | +| `ack` | () => `void` | +| `addrLine` | () => `void` | +| `address` | () => `void` | +| `aff` | () => `void` | +| `affAlternatives` | () => `void` | +| `altText` | () => `void` | +| `altTitle` | () => `void` | +| `alternatives` | () => `void` | +| `annotation` | () => `void` | +| `anonymous` | () => `void` | +| `answer` | () => `void` | +| `answerSet` | () => `void` | +| `app` | () => `void` | +| `appGroup` | () => `void` | +| `array` | () => `void` | +| `article` | (`j`: [`J`](modules.md#j), `node`: [`Root`](modules.md#root)) => [`TexastContent`](modules.md#texastcontent) | +| `articleCategories` | () => `void` | +| `articleId` | () => `void` | +| `articleMeta` | () => `void` | +| `articleTitle` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `articleVersion` | () => `void` | +| `articleVersionalternatives` | () => `void` | +| `attrib` | () => `void` | +| `authorComment` | () => `void` | +| `authorNotes` | () => `void` | +| `awardDesc` | () => `void` | +| `awardGroup` | () => `void` | +| `awardId` | () => `void` | +| `awardName` | () => `void` | +| `back` | (`j`: [`J`](modules.md#j), `parent`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | +| `bio` | () => `void` | +| `blockAlternatives` | () => `void` | +| `body` | (`j`: [`J`](modules.md#j), `node`: [`Root`](modules.md#root)) => [`TexastContent`](modules.md#texastcontent) | +| `bold` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `boxedText` | () => `void` | +| `break` | () => `void` | +| `caption` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `chapterTitle` | () => `void` | +| `chemStruct` | () => `void` | +| `chemStructwrap` | () => `void` | +| `citationAlternatives` | () => `void` | +| `city` | () => `void` | +| `code` | () => `void` | +| `col` | () => `void` | +| `colgroup` | () => `void` | +| `collab` | () => `void` | +| `collabAlternatives` | () => `void` | +| `command` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `comment` | () => `void` | +| `compoundKwd` | () => `void` | +| `compoundKwdpart` | () => `void` | +| `compoundSubject` | () => `void` | +| `compoundSubjectpart` | () => `void` | +| `confAcronym` | () => `void` | +| `confDate` | () => `void` | +| `confLoc` | () => `void` | +| `confName` | () => `void` | +| `confNum` | () => `void` | +| `confSponsor` | () => `void` | +| `confTheme` | () => `void` | +| `conference` | () => `void` | +| `contrib` | () => `void` | +| `contribGroup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | +| `contribId` | () => `void` | +| `contributedResourcegroup` | () => `void` | +| `copyrightHolder` | () => `void` | +| `copyrightStatement` | () => `void` | +| `copyrightYear` | () => `void` | +| `corresp` | () => `void` | +| `count` | () => `void` | +| `country` | () => `void` | +| `counts` | () => `void` | +| `customMeta` | () => `void` | +| `customMetagroup` | () => `void` | +| `dataTitle` | () => `void` | +| `date` | () => `void` | +| `dateIncitation` | () => `void` | +| `day` | () => `void` | +| `def` | () => `void` | +| `defHead` | () => `void` | +| `defItem` | () => `void` | +| `defList` | () => `void` | +| `degrees` | () => `void` | +| `disp-quote` | (`j`: [`J`](modules.md#j), `node`: `DispQuote`) => `Environment` | +| `dispFormula` | () => `void` | +| `dispFormulagroup` | () => `void` | +| `dispQuote` | () => `void` | +| `edition` | () => `void` | +| `elementCitation` | () => `void` | +| `elocationId` | () => `void` | +| `email` | () => `void` | +| `equationCount` | () => `void` | +| `era` | () => `void` | +| `etal` | () => `void` | +| `event` | () => `void` | +| `eventDesc` | () => `void` | +| `explanation` | () => `void` | +| `extLink` | (`j`: [`J`](modules.md#j), `node`: `ExtLink`) => { `children`: `CommandArg`[]; `name`: `string`; `type`: `string`; } | +| `extendedBy` | () => `void` | +| `fax` | () => `void` | +| `fig` | (`j`: [`J`](modules.md#j), `fig`: `Fig`) => { `children`: [`TexastContent`](modules.md#texastcontent)[]; `name`: `string`; `type`: `string`; } | +| `figCount` | () => `void` | +| `figGroup` | () => `void` | +| `fixedCase` | () => `void` | +| `floatsGroup` | () => `void` | +| `fn` | (`j`: [`J`](modules.md#j), `parent`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | +| `fnGroup` | (`j`: [`J`](modules.md#j), `parent`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | +| `fpage` | () => `void` | +| `front` | (`j`: [`J`](modules.md#j), `node`: [`Root`](modules.md#root)) => [`TexastContent`](modules.md#texastcontent) | +| `frontStub` | () => `void` | +| `fundingGroup` | () => `void` | +| `fundingSource` | () => `void` | +| `fundingStatement` | () => `void` | +| `givenNames` | () => `void` | +| `glossary` | () => `void` | +| `glyphData` | () => `void` | +| `glyphRef` | () => `void` | +| `gov` | () => `void` | +| `graphic` | (`j`: [`J`](modules.md#j), `node`: `Graphic`) => { `children`: (`CommandArg` | { `type`: `string`; `value`: `string`; })[]; `name`: `string`; `type`: `string`; } | +| `history` | () => `void` | +| `hr` | () => `void` | +| `indexTerm` | () => `void` | +| `indexTermrangeend` | () => `void` | +| `inlineFormula` | () => `void` | +| `inlineGraphic` | (`j`: [`J`](modules.md#j), `node`: `Graphic`) => { `children`: (`CommandArg` | { `type`: `string`; `value`: `string`; })[]; `name`: `string`; `type`: `string`; } | +| `inlineMedia` | () => `void` | +| `inlineSupplementarymaterial` | () => `void` | +| `institution` | () => `void` | +| `institutionId` | () => `void` | +| `institutionWrap` | () => `void` | +| `instruction` | () => `void` | +| `isbn` | () => `void` | +| `issn` | () => `void` | +| `issnL` | () => `void` | +| `issue` | () => `void` | +| `issueId` | () => `void` | +| `issuePart` | () => `void` | +| `issueSponsor` | () => `void` | +| `issueSubtitle` | () => `void` | +| `issueTitle` | () => `void` | +| `issueTitlegroup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | +| `italic` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent) | +| `journalId` | () => `void` | +| `journalMeta` | () => `void` | +| `journalSubtitle` | () => `void` | +| `journalTitle` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `journalTitlegroup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | +| `kwd` | () => `void` | +| `kwdGroup` | () => `void` | +| `label` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `license` | () => `void` | +| `licenseP` | () => `void` | +| `list` | (`j`: [`J`](modules.md#j), `list`: `List`) => { `children`: [`TexastContent`](modules.md#texastcontent)[]; `name`: `string`; `type`: `string`; } | +| `listItem` | (`j`: [`J`](modules.md#j), `item`: `ListItem`) => [`TexastContent`](modules.md#texastcontent) | +| `longDesc` | () => `void` | +| `lpage` | () => `void` | +| `media` | () => `void` | +| `metaName` | () => `void` | +| `metaValue` | () => `void` | +| `milestoneEnd` | () => `void` | +| `milestoneStart` | () => `void` | +| `mixedCitation` | () => `void` | +| `monospace` | () => `void` | +| `month` | () => `void` | +| `name` | () => `void` | +| `nameAlternatives` | () => `void` | +| `namedContent` | () => `void` | +| `nestedKwd` | () => `void` | +| `nlmCitation` | () => `void` | +| `note` | () => `void` | +| `notes` | () => `void` | +| `objectId` | () => `void` | +| `onBehalfof` | () => `void` | +| `openAccess` | () => `void` | +| `option` | () => `void` | +| `overline` | () => `void` | +| `overlineEnd` | () => `void` | +| `overlineStart` | () => `void` | +| `p` | (`j`: [`J`](modules.md#j), `p`: `P`) => [`TexastContent`](modules.md#texastcontent) | +| `pageCount` | () => `void` | +| `pageRange` | () => `void` | +| `partTitle` | () => `void` | +| `patent` | () => `void` | +| `permissions` | () => `void` | +| `personGroup` | () => `void` | +| `phone` | () => `void` | +| `postalCode` | () => `void` | +| `prefix` | () => `void` | +| `preformat` | () => `void` | +| `price` | () => `void` | +| `principalAwardrecipient` | () => `void` | +| `principalInvestigator` | () => `void` | +| `privateChar` | () => `void` | +| `processingMeta` | () => `void` | +| `product` | () => `void` | +| `pubDate` | () => `void` | +| `pubDatenotavailable` | () => `void` | +| `pubHistory` | () => `void` | +| `pubId` | () => `void` | +| `publisher` | () => `void` | +| `publisherLoc` | () => `void` | +| `publisherName` | () => `void` | +| `question` | () => `void` | +| `questionPreamble` | () => `void` | +| `questionWrap` | () => `void` | +| `questionWrapgroup` | () => `void` | +| `rb` | () => `void` | +| `ref` | () => `void` | +| `refCount` | () => `void` | +| `refList` | (`j`: [`J`](modules.md#j), `list`: `RefList`) => `Environment` | `undefined` | +| `relatedArticle` | () => `void` | +| `relatedObject` | () => `void` | +| `resourceId` | () => `void` | +| `resourceName` | () => `void` | +| `resourceWrap` | () => `void` | +| `response` | () => `void` | +| `restrictedBy` | () => `void` | +| `role` | () => `void` | +| `roman` | () => `void` | +| `root` | (`j`: [`J`](modules.md#j), `node`: [`Root`](modules.md#root)) => [`TexastContent`](modules.md#texastcontent) | +| `rp` | () => `void` | +| `rt` | () => `void` | +| `ruby` | () => `void` | +| `sansSerif` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `sc` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `season` | () => `void` | +| `sec` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents)) => [`TexastContent`](modules.md#texastcontent)[] | +| `secMeta` | () => `void` | +| `see` | () => `void` | +| `seeAlso` | () => `void` | +| `selfUri` | () => `void` | +| `series` | () => `void` | +| `seriesText` | () => `void` | +| `seriesTitle` | () => `void` | +| `sig` | () => `void` | +| `sigBlock` | () => `void` | +| `size` | () => `void` | +| `source` | () => `void` | +| `speaker` | () => `void` | +| `speech` | () => `void` | +| `state` | () => `void` | +| `statement` | () => `void` | +| `std` | () => `void` | +| `stdOrganization` | () => `void` | +| `strike` | () => `void` | +| `stringConf` | () => `void` | +| `stringDate` | () => `void` | +| `stringName` | () => `void` | +| `styledContent` | () => `void` | +| `sub` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent) | +| `subArticle` | () => `void` | +| `subjGroup` | () => `void` | +| `subject` | () => `void` | +| `subtitle` | () => `void` | +| `suffix` | () => `void` | +| `sup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent) | +| `supplement` | () => `void` | +| `supplementaryMaterial` | () => `void` | +| `supportDescription` | () => `void` | +| `supportGroup` | () => `void` | +| `supportSource` | () => `void` | +| `surname` | () => `void` | +| `table` | (`j`: [`J`](modules.md#j), `table`: `Table`) => { `children`: [`TexastContent`](modules.md#texastcontent)[]; `name`: `string`; `type`: `string`; } | +| `tableCount` | () => `void` | +| `tableWrap` | (`j`: [`J`](modules.md#j), `node`: `TableWrap`) => [`TexastContent`](modules.md#texastcontent) | +| `tableWrapfoot` | () => `void` | +| `tableWrapgroup` | () => `void` | +| `target` | () => `void` | +| `tbody` | (`j`: [`J`](modules.md#j), `parent`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | +| `td` | (`j`: [`J`](modules.md#j), `node`: `Td`) => `TableCell` | +| `term` | () => `void` | +| `termHead` | () => `void` | +| `texMath` | () => `void` | +| `text` | (`j`: [`J`](modules.md#j), `node`: [`Text`](modules.md#text)) => [`TexastContent`](modules.md#texastcontent) | +| `textualForm` | () => `void` | +| `tfoot` | () => `void` | +| `th` | () => `void` | +| `thead` | () => `void` | +| `timeStamp` | () => `void` | +| `title` | (`j`: [`J`](modules.md#j), `parent`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | +| `titleGroup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | +| `tr` | (`j`: [`J`](modules.md#j), `node`: `Tr`) => [`TexastContent`](modules.md#texastcontent) | +| `transAbstract` | () => `void` | +| `transSource` | () => `void` | +| `transSubtitle` | () => `void` | +| `transTitle` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `transTitlegroup` | (`j`: [`J`](modules.md#j), `node`: [`Node`](modules.md#node)) => [`TexastContent`](modules.md#texastcontent)[] | +| `underline` | () => `void` | +| `underlineEnd` | () => `void` | +| `underlineStart` | () => `void` | +| `unstructuredKwdgroup` | () => `void` | +| `uri` | () => `void` | +| `verseGroup` | () => `void` | +| `verseLine` | () => `void` | +| `version` | () => `void` | +| `volume` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `volumeId` | () => `void` | +| `volumeIssuegroup` | () => `void` | +| `volumeSeries` | (`j`: [`J`](modules.md#j), `node`: [`Parents`](modules.md#parents), `parent`: [`Parent`](modules.md#parent)) => [`TexastContent`](modules.md#texastcontent) | +| `wordCount` | () => `void` | +| `x` | () => `void` | +| `xml` | () => `void` | +| `xref` | (`j`: [`J`](modules.md#j), `node`: `Xref`) => [`TexastContent`](modules.md#texastcontent) | +| `year` | () => `void` | + +Defined in: [src/lib/handlers/index.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/handlers/index.ts#L29) + +--- ### `Context` @@ -788,25 +788,25 @@ Defined in: [src/lib/handlers/index.ts:29](https://github.com/TrialAndErrorOrg/ > `boolean` -Defined in: [src/lib/types.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L59) +Defined in: [src/lib/types.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L59) ##### `bibname` > `string` -Defined in: [src/lib/types.ts:76](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L76) +Defined in: [src/lib/types.ts:76](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L76) ##### `booktabs` > `boolean` -Defined in: [src/lib/types.ts:68](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L68) +Defined in: [src/lib/types.ts:68](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L68) ##### `checked` > `string` -Defined in: [src/lib/types.ts:66](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L66) +Defined in: [src/lib/types.ts:66](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L66) ##### `citationAnalyzer` @@ -814,35 +814,35 @@ Defined in: [src/lib/types.ts:66](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (node: Node): string; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :------------------------ | | `node` | [`Node`](modules.md#node) | -*Returns\`* +_Returns\`_ `string` -Defined in: [src/lib/types.ts:81](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L81) +Defined in: [src/lib/types.ts:81](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L81) ##### `columnSeparator` > `boolean` -Defined in: [src/lib/types.ts:77](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L77) +Defined in: [src/lib/types.ts:77](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L77) ##### `document` > `undefined` | `boolean` -Defined in: [src/lib/types.ts:65](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L65) +Defined in: [src/lib/types.ts:65](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L65) ##### `documentClass` @@ -857,24 +857,24 @@ Defined in: [src/lib/types.ts:65](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -| Member | Type | -| :------ | :------ | -| `name` | `string` | +| Member | Type | +| :--------- | :--------- | +| `name` | `string` | | `options`? | `string`[] | -Defined in: [src/lib/types.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L71) +Defined in: [src/lib/types.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L71) ##### `footnotes` > `Record`<`string`, [`TexastContent`](modules.md#texastcontent)[]> -Defined in: [src/lib/types.ts:78](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L78) +Defined in: [src/lib/types.ts:78](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L78) ##### `frozenBaseUrl` > `null` | `string` -Defined in: [src/lib/types.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L60) +Defined in: [src/lib/types.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L60) ##### `handlers` @@ -886,19 +886,19 @@ Defined in: [src/lib/types.ts:60](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -Defined in: [src/lib/types.ts:64](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L64) +Defined in: [src/lib/types.ts:64](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L64) ##### `inTable` > `boolean` -Defined in: [src/lib/types.ts:62](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L62) +Defined in: [src/lib/types.ts:62](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L62) ##### `italics` > `string` -Defined in: [src/lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L70) +Defined in: [src/lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L70) ##### `nodeById?` @@ -910,57 +910,57 @@ Defined in: [src/lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -Defined in: [src/lib/types.ts:56](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L56) +Defined in: [src/lib/types.ts:56](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L56) ##### `numberOfRows` > `number` -Defined in: [src/lib/types.ts:80](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L80) +Defined in: [src/lib/types.ts:80](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L80) ##### `qNesting` > `number` -Defined in: [src/lib/types.ts:63](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L63) +Defined in: [src/lib/types.ts:63](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L63) ##### `quotes` > `string`[] -Defined in: [src/lib/types.ts:69](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L69) +Defined in: [src/lib/types.ts:69](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L69) ##### `rowNumber` > `number` -Defined in: [src/lib/types.ts:79](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L79) +Defined in: [src/lib/types.ts:79](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L79) ##### `sectionDepth` > `number` -Defined in: [src/lib/types.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L75) +Defined in: [src/lib/types.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L75) ##### `unchecked` > `string` -Defined in: [src/lib/types.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L67) +Defined in: [src/lib/types.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L67) ##### `wrapText` > `boolean` -Defined in: [src/lib/types.ts:61](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L61) +Defined in: [src/lib/types.ts:61](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L61) -*** +--- ### `Name` #### Hierarchy -* `Node`.**Name** +- `Node`.**Name** #### Properties @@ -978,19 +978,19 @@ Defined in: [src/lib/types.ts:61](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `nameStyle`? | `NameTypeNameStyle` | -| `specificUse`? | `string` | +| Member | Type | +| :------------- | :------------------ | +| `id`? | `string` | +| `nameStyle`? | `NameTypeNameStyle` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6790) +Defined in: [libs/jast/jast/src/lib/jats.ts:6790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6790) ##### `children` > ([`Text`](modules.md#text) | `GivenNames` | `Prefix` | `Suffix` | `Surname`)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6796) +Defined in: [libs/jast/jast/src/lib/jats.ts:6796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6796) ##### `data?` @@ -1000,13 +1000,13 @@ Information from the ecosystem. Inherited from: UnistNode.data -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"name"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6789](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6789) +Defined in: [libs/jast/jast/src/lib/jats.ts:6789](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6789) ##### `position?` @@ -1017,7 +1017,7 @@ Must not be present if a node is generated. Inherited from: UnistNode.position -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1025,9 +1025,9 @@ Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/ Overrides: UnistNode.type -Defined in: [libs/jast/jast/src/lib/jats.ts:6788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6788) +Defined in: [libs/jast/jast/src/lib/jats.ts:6788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6788) -*** +--- ### `Options` @@ -1037,19 +1037,19 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6788](https://github.com/TrialAndEr > `string` -Defined in: [src/lib/types.ts:39](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L39) +Defined in: [src/lib/types.ts:39](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L39) ##### `booktabs?` > `boolean` -Defined in: [src/lib/types.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L41) +Defined in: [src/lib/types.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L41) ##### `checked?` > `string` -Defined in: [src/lib/types.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L34) +Defined in: [src/lib/types.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L34) ##### `citationAnalyzer?` @@ -1057,35 +1057,35 @@ Defined in: [src/lib/types.ts:34](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (node: Node): string; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :------------------------ | | `node` | [`Node`](modules.md#node) | -*Returns\`* +_Returns\`_ `string` -Defined in: [src/lib/types.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L46) +Defined in: [src/lib/types.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L46) ##### `columnSeparator?` > `boolean` -Defined in: [src/lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L40) +Defined in: [src/lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L40) ##### `document?` > `boolean` -Defined in: [src/lib/types.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L32) +Defined in: [src/lib/types.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L32) ##### `documentClass?` @@ -1100,12 +1100,12 @@ Defined in: [src/lib/types.ts:32](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -| Member | Type | -| :------ | :------ | -| `name` | `string` | +| Member | Type | +| :--------- | :--------- | +| `name` | `string` | | `options`? | `string`[] | -Defined in: [src/lib/types.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L42) +Defined in: [src/lib/types.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L42) ##### `handlers?` @@ -1117,45 +1117,45 @@ Defined in: [src/lib/types.ts:42](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -Defined in: [src/lib/types.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L31) +Defined in: [src/lib/types.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L31) ##### `italics?` > `"emph"` | `"textit"` -Defined in: [src/lib/types.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L38) +Defined in: [src/lib/types.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L38) ##### `newLines?` > `boolean` -Defined in: [src/lib/types.ts:33](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L33) +Defined in: [src/lib/types.ts:33](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L33) ##### `quotes?` > `string`[] -Defined in: [src/lib/types.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L36) +Defined in: [src/lib/types.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L36) ##### `topSection?` > `number` -Defined in: [src/lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L37) +Defined in: [src/lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L37) ##### `unchecked?` > `string` -Defined in: [src/lib/types.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L35) +Defined in: [src/lib/types.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L35) -*** +--- ### `Parent` #### Hierarchy -* `Parent`.**Parent** +- `Parent`.**Parent** #### Properties @@ -1165,7 +1165,7 @@ Defined in: [src/lib/types.ts:35](https://github.com/TrialAndErrorOrg/parsers/b Overrides: UnistParent.children -Defined in: [libs/jast/jast/src/lib/rejour.ts:25](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L25) +Defined in: [libs/jast/jast/src/lib/rejour.ts:25](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L25) ##### `data?` @@ -1175,7 +1175,7 @@ Information from the ecosystem. Inherited from: UnistParent.data -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `position?` @@ -1186,7 +1186,7 @@ Must not be present if a node is generated. Inherited from: UnistParent.position -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1196,15 +1196,15 @@ The variant of a node. Inherited from: UnistParent.type -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:22 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:22 -*** +--- ### `Root` #### Hierarchy -* `Parent`.**Root** +- `Parent`.**Root** #### Properties @@ -1214,7 +1214,7 @@ Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/ Overrides: UnistParent.children -Defined in: [libs/jast/jast/src/lib/rejour.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L20) +Defined in: [libs/jast/jast/src/lib/rejour.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L20) ##### `data?` @@ -1224,7 +1224,7 @@ Information from the ecosystem. Inherited from: UnistParent.data -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `position?` @@ -1235,7 +1235,7 @@ Must not be present if a node is generated. Inherited from: UnistParent.position -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1243,9 +1243,9 @@ Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/ Overrides: UnistParent.type -Defined in: [libs/jast/jast/src/lib/rejour.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L19) +Defined in: [libs/jast/jast/src/lib/rejour.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L19) -*** +--- ### `TexastLiteral` @@ -1253,12 +1253,12 @@ Nodes containing a value. #### Type parameters -* `Value` = `unknown`Specific value type of Literal.value such as `string` for `Text` node -* `TData` *extends* `object` = `Data` +- `Value` = `unknown`Specific value type of Literal.value such as `string` for `Text` node +- `TData` _extends_ `object` = `Data` #### Hierarchy -* `Node`<`TData`>.**TexastLiteral** +- `Node`<`TData`>.**TexastLiteral** #### Properties @@ -1270,7 +1270,7 @@ Information from the ecosystem. Inherited from: Node.data -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `position?` @@ -1281,7 +1281,7 @@ Must not be present if a node is generated. Inherited from: Node.position -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1291,21 +1291,21 @@ The variant of a node. Inherited from: Node.type -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:22 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:22 ##### `value` > `Value` -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:113 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:113 -*** +--- ### `TexastParent` #### Hierarchy -* `Parent`.**TexastParent** +- `Parent`.**TexastParent** #### Properties @@ -1315,7 +1315,7 @@ Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/ Overrides: UnistParent.children -Defined in: [libs/texast/texast/src/lib/texast.ts:106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/texast/texast/src/lib/texast.ts#L106) +Defined in: [libs/texast/texast/src/lib/texast.ts:106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/texast/texast/src/lib/texast.ts#L106) ##### `data?` @@ -1325,7 +1325,7 @@ Information from the ecosystem. Inherited from: UnistParent.data -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `position?` @@ -1336,7 +1336,7 @@ Must not be present if a node is generated. Inherited from: UnistParent.position -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1346,15 +1346,15 @@ The variant of a node. Inherited from: UnistParent.type -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:22 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:22 -*** +--- ### `TexastRoot` #### Hierarchy -* [`TexastParent`](modules.md#texastparent).**TexastRoot** +- [`TexastParent`](modules.md#texastparent).**TexastRoot** #### Properties @@ -1364,7 +1364,7 @@ Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/ Inherited from: [TexastParent](modules.md#texastparent).[children](modules.md#children) -Defined in: [libs/texast/texast/src/lib/texast.ts:106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/texast/texast/src/lib/texast.ts#L106) +Defined in: [libs/texast/texast/src/lib/texast.ts:106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/texast/texast/src/lib/texast.ts#L106) ##### `data?` @@ -1374,7 +1374,7 @@ Information from the ecosystem. Inherited from: [TexastParent](modules.md#texastparent).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `position?` @@ -1385,7 +1385,7 @@ Must not be present if a node is generated. Inherited from: [TexastParent](modules.md#texastparent).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1395,9 +1395,9 @@ The variant of a node. Overrides: [TexastParent](modules.md#texastparent).[type](modules.md#type) -Defined in: [libs/texast/texast/src/lib/texast.ts:86](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/texast/texast/src/lib/texast.ts#L86) +Defined in: [libs/texast/texast/src/lib/texast.ts:86](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/texast/texast/src/lib/texast.ts#L86) -*** +--- ### `Text` @@ -1405,7 +1405,7 @@ Nodes containing a value. #### Hierarchy -* [`TexastLiteral`](modules.md#texastliteral).**Text** +- [`TexastLiteral`](modules.md#texastliteral).**Text** #### Properties @@ -1417,7 +1417,7 @@ Information from the ecosystem. Inherited from: [TexastLiteral](modules.md#texastliteral).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `position?` @@ -1428,7 +1428,7 @@ Must not be present if a node is generated. Inherited from: [TexastLiteral](modules.md#texastliteral).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1438,7 +1438,7 @@ The variant of a node. Overrides: [TexastLiteral](modules.md#texastliteral).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L43) +Defined in: [libs/jast/jast/src/lib/jats.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L43) ##### `value` @@ -1446,25 +1446,25 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:43](https://github.com/TrialAndErro Overrides: [TexastLiteral](modules.md#texastliteral).[value](modules.md#value) -Defined in: [libs/jast/jast/src/lib/jats.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L44) +Defined in: [libs/jast/jast/src/lib/jats.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L44) -*** +--- ### `Attributes` > `JastProperties` -Defined in: [src/lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L29) +Defined in: [src/lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L29) -*** +--- ### `Content` > `ValuesType`<`documentMap`> -Defined in: [libs/jast/jast/src/lib/jats.ts:13710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13710) +Defined in: [libs/jast/jast/src/lib/jats.ts:13710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13710) -*** +--- ### `Element` @@ -1472,9 +1472,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:13710](https://github.com/TrialAndE > `type`: `"element"`; > }> -Defined in: [libs/jast/jast/src/lib/jats.ts:13711](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13711) +Defined in: [libs/jast/jast/src/lib/jats.ts:13711](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13711) -*** +--- ### `Handle` @@ -1490,27 +1490,27 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:13711](https://github.com/TrialAndE ##### `Parameters` -| Name | Type | -| :------ | :------ | -| `j` | [`J`](modules.md#j) | -| `node` | `any` | +| Name | Type | +| :-------- | :---------------------------- | +| `j` | [`J`](modules.md#j) | +| `node` | `any` | | `parent?` | [`Parent`](modules.md#parent) | ##### `Returns` [`TexastContent`](modules.md#texastcontent) | [`TexastContent`](modules.md#texastcontent)[] | `void` -Defined in: [src/lib/types.ts:49](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L49) +Defined in: [src/lib/types.ts:49](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L49) -*** +--- ### `J` > [`JWithProps`](modules.md#jwithprops) & [`JWithoutProps`](modules.md#jwithoutprops) & [`Context`](modules.md#context) -Defined in: [src/lib/types.ts:106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L106) +Defined in: [src/lib/types.ts:106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L106) -*** +--- ### `JWithProps` @@ -1522,28 +1522,28 @@ Defined in: [src/lib/types.ts:106](https://github.com/TrialAndErrorOrg/parsers/ ```ts ( - node: Node, - type: string, - props?: Attributes, + node: Node, + type: string, + props?: Attributes, children?: string | TexastContent[]): TexastContent; ``` ##### `Parameters` -| Name | Type | -| :------ | :------ | -| `node` | [`Node`](modules.md#node) | -| `type` | `string` | -| `props?` | [`Attributes`](modules.md#attributes) | -| `children?` | `string` | [`TexastContent`](modules.md#texastcontent)[] | +| Name | Type | +| :---------- | :------------------------------------ | --------------------------------------------- | +| `node` | [`Node`](modules.md#node) | +| `type` | `string` | +| `props?` | [`Attributes`](modules.md#attributes) | +| `children?` | `string` | [`TexastContent`](modules.md#texastcontent)[] | ##### `Returns` [`TexastContent`](modules.md#texastcontent) -Defined in: [src/lib/types.ts:84](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L84) +Defined in: [src/lib/types.ts:84](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L84) -*** +--- ### `JWithPropsSpecific` @@ -1551,7 +1551,7 @@ Defined in: [src/lib/types.ts:84](https://github.com/TrialAndErrorOrg/parsers/b #### Type parameters -* `TNode` *extends* [`TexastContent`](modules.md#texastcontent) = [`TexastContent`](modules.md#texastcontent) +- `TNode` _extends_ [`TexastContent`](modules.md#texastcontent) = [`TexastContent`](modules.md#texastcontent) #### Type declaration @@ -1559,28 +1559,28 @@ Defined in: [src/lib/types.ts:84](https://github.com/TrialAndErrorOrg/parsers/b ```ts ( - node: Node, - type: Pick, - props?: Attributes, + node: Node, + type: Pick, + props?: Attributes, children?: Pick): TNode; ``` ##### `Parameters` -| Name | Type | -| :------ | :------ | -| `node` | [`Node`](modules.md#node) | -| `type` | `Pick`<`TNode`, `"type"`> | -| `props?` | [`Attributes`](modules.md#attributes) | -| `children?` | `Pick`<`TNode`, `"children"`> | +| Name | Type | +| :---------- | :------------------------------------ | +| `node` | [`Node`](modules.md#node) | +| `type` | `Pick`<`TNode`, `"type"`> | +| `props?` | [`Attributes`](modules.md#attributes) | +| `children?` | `Pick`<`TNode`, `"children"`> | ##### `Returns` `TNode` -Defined in: [src/lib/types.ts:97](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L97) +Defined in: [src/lib/types.ts:97](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L97) -*** +--- ### `JWithoutProps` @@ -1596,19 +1596,19 @@ Defined in: [src/lib/types.ts:97](https://github.com/TrialAndErrorOrg/parsers/b ##### `Parameters` -| Name | Type | -| :------ | :------ | -| `node` | [`Node`](modules.md#node) | -| `type` | `string` | -| `children?` | `string` | [`TexastContent`](modules.md#texastcontent)[] | +| Name | Type | +| :---------- | :------------------------ | --------------------------------------------- | +| `node` | [`Node`](modules.md#node) | +| `type` | `string` | +| `children?` | `string` | [`TexastContent`](modules.md#texastcontent)[] | ##### `Returns` [`TexastContent`](modules.md#texastcontent) -Defined in: [src/lib/types.ts:91](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L91) +Defined in: [src/lib/types.ts:91](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L91) -*** +--- ### `Node` @@ -1616,9 +1616,9 @@ Defined in: [src/lib/types.ts:91](https://github.com/TrialAndErrorOrg/parsers/b jast Node -Defined in: [src/lib/types.ts:26](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L26) +Defined in: [src/lib/types.ts:26](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L26) -*** +--- ### `Parents` @@ -1626,23 +1626,23 @@ Defined in: [src/lib/types.ts:26](https://github.com/TrialAndErrorOrg/parsers/b > `children`: `any`[]; > }> -Defined in: [src/lib/types.ts:122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L122) +Defined in: [src/lib/types.ts:122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast-util-to-texast/src/lib/types.ts#L122) -*** +--- ### `TexastContent` > `TopLevelDocumentContent` | `PreambleContent` | `AlignmentContent` | `MathContent` | `CommandContent` | [`TexastParagraphContent`](modules.md#texastparagraphcontent) | `CommandArg` | `ListContent` | `Text` | `Comment` | `TabularContent` | `TableRowContent` -Defined in: [libs/texast/texast/src/lib/texast.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/texast/texast/src/lib/texast.ts#L32) +Defined in: [libs/texast/texast/src/lib/texast.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/texast/texast/src/lib/texast.ts#L32) -*** +--- ### `TexastParagraphContent` > `Text` | `InlineMath` | `Command` | `Comment` -Defined in: [libs/texast/texast/src/lib/texast.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/texast/texast/src/lib/texast.ts#L75) +Defined in: [libs/texast/texast/src/lib/texast.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/texast/texast/src/lib/texast.ts#L75) ## Syntax tree @@ -1661,47 +1661,25 @@ Defined in: [libs/texast/texast/src/lib/texast.ts:75](https://github.com/TrialA [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-stringify - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs diff --git a/libs/jast/jast-util-to-texast/package.json b/libs/jast/jast-util-to-texast/package.json index 2a926967..4eb1ba31 100755 --- a/libs/jast/jast-util-to-texast/package.json +++ b/libs/jast/jast-util-to-texast/package.json @@ -2,12 +2,15 @@ "name": "jast-util-to-texast", "version": "0.1.0", "dependencies": { - "biblatex-csl-converter": "^2.0.4", - "hast-util-is-element": "^2.1.2", - "xast-util-to-string": "^2.0.0", - "rehype-minify-whitespace": "5.0.0", - "unist-util-is": "5.0.0", - "unist-util-visit": "4.0.0" + "rehype-minify-whitespace": "^5.0.0", + "unist-util-is": "^5.2.1", + "unist-util-visit": "^4.1.2", + "jast-types": "*", + "xast-util-select": "*", + "texast": "*", + "csl-json": "0.1.0", + "jast-util-to-csl": "*", + "csl-to-biblatex": "*" }, "license": "GPL-3.0-or-later", "repository": "https://github.com/TrialAndErrorOrg/parsers", diff --git a/libs/jast/jast-util-to-texast/project.json b/libs/jast/jast-util-to-texast/project.json index bf855900..9bb63ff8 100755 --- a/libs/jast/jast-util-to-texast/project.json +++ b/libs/jast/jast-util-to-texast/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/jast/jast-util-to-texast/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/jast/jast-util-to-texast/src/lib/types.ts b/libs/jast/jast-util-to-texast/src/lib/types.ts index 8d4634db..2acf0232 100755 --- a/libs/jast/jast-util-to-texast/src/lib/types.ts +++ b/libs/jast/jast-util-to-texast/src/lib/types.ts @@ -1,6 +1,3 @@ -import { Node as UnistNode, Parent as UnistParent } from 'unist' -import { Data as CSL } from 'csl-json' - import { Parent as TexastParent, TexastContent, @@ -49,7 +46,7 @@ export interface Options { export type Handle = ( j: J, node: any, - parent?: Parent + parent?: Parent, ) => TexastContent | Array | void export interface Context { @@ -85,13 +82,13 @@ export type JWithProps = ( node: Node, type: string, props?: Attributes, - children?: string | Array + children?: string | Array, ) => TexastContent export type JWithoutProps = ( node: Node, type: string, - children?: string | Array + children?: string | Array, ) => TexastContent export type JWithPropsSpecific = ( @@ -100,7 +97,7 @@ export type JWithPropsSpecific = ( props?: Attributes, //@ts-expect-error yeah i know butttt // TODO: Make this not error - children?: Pick + children?: Pick, ) => TNode export type J = JWithProps & JWithoutProps & Context diff --git a/libs/jast/jast/CHANGELOG.md b/libs/jast/jast/CHANGELOG.md index 50bfd73e..9f6bd9f6 100644 --- a/libs/jast/jast/CHANGELOG.md +++ b/libs/jast/jast/CHANGELOG.md @@ -6,37 +6,32 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/jast-types-0.1.0...jast-types-0.1.1) (2023-03-09) - ### Bug Fixes -* make small fixes ([3c87afc](https://github.com/TrialAndErrorOrg/parsers/commit/3c87afc5afd38971bba9157b41eb6ee83f7482c2)) +- make small fixes ([3c87afc](https://github.com/TrialAndErrorOrg/parsers/commit/3c87afc5afd38971bba9157b41eb6ee83f7482c2)) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/jast-types-0.1.0...jast-types-0.1.1) (2023-03-09) - ### Bug Fixes -* make small fixes ([3c87afc](https://github.com/TrialAndErrorOrg/parsers/commit/3c87afc5afd38971bba9157b41eb6ee83f7482c2)) +- make small fixes ([3c87afc](https://github.com/TrialAndErrorOrg/parsers/commit/3c87afc5afd38971bba9157b41eb6ee83f7482c2)) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/jast-types-0.1.0...jast-types-0.1.1) (2023-03-09) - ### Bug Fixes -* make small fixes ([3c87afc](https://github.com/TrialAndErrorOrg/parsers/commit/3c87afc5afd38971bba9157b41eb6ee83f7482c2)) +- make small fixes ([3c87afc](https://github.com/TrialAndErrorOrg/parsers/commit/3c87afc5afd38971bba9157b41eb6ee83f7482c2)) ## 0.1.0 (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) -* **ojs:** add more ojs stuff ([3c55a9d](https://github.com/TrialAndErrorOrg/parsers/commit/3c55a9d17cecef513085c55870728e53bee17194)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) +- **ojs:** add more ojs stuff ([3c55a9d](https://github.com/TrialAndErrorOrg/parsers/commit/3c55a9d17cecef513085c55870728e53bee17194)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/jast/jast/README.md b/libs/jast/jast/README.md index 806829a9..95c6d7f9 100755 --- a/libs/jast/jast/README.md +++ b/libs/jast/jast/README.md @@ -11,20 +11,20 @@ While it is generated by xast-util-from-xml, the syntax mimics that of hast rath ## Contents -* [jast](#jast) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [jast](#jast) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -46,7 +46,7 @@ pnpm add jast-types ## API -*** +--- ### `isElement()` @@ -58,17 +58,17 @@ isElement(node: Node): node is Element; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :-------------------------------- | | `node` | [`Node`](modules.md#node)<`Data`> | #### Returns `node is Element` -Defined in: [libs/jast/jast/src/lib/rejour.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L35) +Defined in: [libs/jast/jast/src/lib/rejour.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L35) -*** +--- ### `isParagraphContent()` @@ -80,17 +80,17 @@ isParagraphContent(node: Node): node is RequiredMap; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :-------------------------------- | | `node` | [`Node`](modules.md#node)<`Data`> | #### Returns `node is RequiredMap` -Defined in: [libs/jast/jast/src/lib/rejour.ts:39](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L39) +Defined in: [libs/jast/jast/src/lib/rejour.ts:39](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L39) -*** +--- ### `isValidJATSName()` @@ -102,33 +102,33 @@ isValidJATSName(tag: string): tag is Names; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :---- | :------- | | `tag` | `string` | #### Returns `tag is Names` -Defined in: [libs/jast/jast/src/lib/rejour.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L46) +Defined in: [libs/jast/jast/src/lib/rejour.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L46) -*** +--- ### `docMap` > [`documentMap`](modules.md#documentmap) -Defined in: [libs/jast/jast/src/lib/jats.ts:13709](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13709) +Defined in: [libs/jast/jast/src/lib/jats.ts:13709](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13709) -*** +--- ### `pMap` > [`PChildrenMap`](modules.md#pchildrenmap) -Defined in: [libs/jast/jast/src/lib/jats.ts:13713](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13713) +Defined in: [libs/jast/jast/src/lib/jats.ts:13713](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13713) -*** +--- ### `Abbrev` @@ -136,7 +136,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Abbrev** +- [`Node`](modules.md#node).**Abbrev** #### Properties @@ -155,20 +155,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `alt`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `alt`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L60) +Defined in: [libs/jast/jast/src/lib/jats.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L60) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AbbrevChildrenMap`](modules.md#abbrevchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L67) +Defined in: [libs/jast/jast/src/lib/jats.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L67) ##### `data?` @@ -178,13 +178,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"abbrev"` -Defined in: [libs/jast/jast/src/lib/jats.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L59) +Defined in: [libs/jast/jast/src/lib/jats.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L59) ##### `position?` @@ -195,7 +195,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -205,9 +205,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:58](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L58) +Defined in: [libs/jast/jast/src/lib/jats.ts:58](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L58) -*** +--- ### `AbbrevChildrenMap` @@ -217,15 +217,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:58](https://github.com/TrialAndErro > [`Def`](modules.md#def)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:73](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L73) +Defined in: [libs/jast/jast/src/lib/jats.ts:73](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L73) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L71) +Defined in: [libs/jast/jast/src/lib/jats.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L71) -*** +--- ### `AbbrevJournaltitle` @@ -233,7 +233,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AbbrevJournaltitle** +- [`Node`](modules.md#node).**AbbrevJournaltitle** #### Properties @@ -251,19 +251,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `abbrevType`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `abbrevType`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:49](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L49) +Defined in: [libs/jast/jast/src/lib/jats.ts:49](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L49) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L54) +Defined in: [libs/jast/jast/src/lib/jats.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L54) ##### `data?` @@ -273,13 +273,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"abbrevJournaltitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:48](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L48) +Defined in: [libs/jast/jast/src/lib/jats.ts:48](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L48) ##### `position?` @@ -290,7 +290,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -300,9 +300,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:47](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L47) +Defined in: [libs/jast/jast/src/lib/jats.ts:47](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L47) -*** +--- ### `Abstract` @@ -310,7 +310,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Abstract** +- [`Node`](modules.md#node).**Abstract** #### Properties @@ -328,19 +328,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------- | :------- | | `abstractType`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:79](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L79) +Defined in: [libs/jast/jast/src/lib/jats.ts:79](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L79) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AbstractChildrenMap`](modules.md#abstractchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:85](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L85) +Defined in: [libs/jast/jast/src/lib/jats.ts:85](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L85) ##### `data?` @@ -350,13 +350,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"abstract"` -Defined in: [libs/jast/jast/src/lib/jats.ts:78](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L78) +Defined in: [libs/jast/jast/src/lib/jats.ts:78](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L78) ##### `position?` @@ -367,7 +367,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -377,9 +377,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:77](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L77) +Defined in: [libs/jast/jast/src/lib/jats.ts:77](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L77) -*** +--- ### `AbstractChildrenMap` @@ -389,33 +389,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:77](https://github.com/TrialAndErro > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:89](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L89) +Defined in: [libs/jast/jast/src/lib/jats.ts:89](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L89) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:91](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L91) +Defined in: [libs/jast/jast/src/lib/jats.ts:91](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L91) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:93](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L93) +Defined in: [libs/jast/jast/src/lib/jats.ts:93](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L93) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:95](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L95) +Defined in: [libs/jast/jast/src/lib/jats.ts:95](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L95) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:97](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L97) +Defined in: [libs/jast/jast/src/lib/jats.ts:97](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L97) -*** +--- ### `AccessDate` @@ -423,7 +423,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AccessDate** +- [`Node`](modules.md#node).**AccessDate** #### Properties @@ -442,20 +442,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `calendar`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `calendar`? | `string` | +| `id`? | `string` | | `iso8601Date`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L103) +Defined in: [libs/jast/jast/src/lib/jats.ts:103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L103) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L110) +Defined in: [libs/jast/jast/src/lib/jats.ts:110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L110) ##### `data?` @@ -465,13 +465,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"accessDate"` -Defined in: [libs/jast/jast/src/lib/jats.ts:102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L102) +Defined in: [libs/jast/jast/src/lib/jats.ts:102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L102) ##### `position?` @@ -482,7 +482,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -492,9 +492,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:101](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L101) +Defined in: [libs/jast/jast/src/lib/jats.ts:101](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L101) -*** +--- ### `AccessDateChildrenMap` @@ -504,9 +504,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:101](https://github.com/TrialAndErr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L114) +Defined in: [libs/jast/jast/src/lib/jats.ts:114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L114) -*** +--- ### `Ack` @@ -514,7 +514,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Ack** +- [`Node`](modules.md#node).**Ack** #### Properties @@ -531,18 +531,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L120) +Defined in: [libs/jast/jast/src/lib/jats.ts:120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L120) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AckChildrenMap`](modules.md#ackchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L125) +Defined in: [libs/jast/jast/src/lib/jats.ts:125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L125) ##### `data?` @@ -552,13 +552,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"ack"` -Defined in: [libs/jast/jast/src/lib/jats.ts:119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L119) +Defined in: [libs/jast/jast/src/lib/jats.ts:119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L119) ##### `position?` @@ -569,7 +569,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -579,9 +579,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L118) +Defined in: [libs/jast/jast/src/lib/jats.ts:118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L118) -*** +--- ### `AckChildrenMap` @@ -591,63 +591,63 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:118](https://github.com/TrialAndErr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L131) +Defined in: [libs/jast/jast/src/lib/jats.ts:131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L131) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L133) +Defined in: [libs/jast/jast/src/lib/jats.ts:133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L133) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:135](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L135) +Defined in: [libs/jast/jast/src/lib/jats.ts:135](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L135) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L137) +Defined in: [libs/jast/jast/src/lib/jats.ts:137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L137) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:139](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L139) +Defined in: [libs/jast/jast/src/lib/jats.ts:139](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L139) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L141) +Defined in: [libs/jast/jast/src/lib/jats.ts:141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L141) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L143) +Defined in: [libs/jast/jast/src/lib/jats.ts:143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L143) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L144) +Defined in: [libs/jast/jast/src/lib/jats.ts:144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L144) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:129](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L129) +Defined in: [libs/jast/jast/src/lib/jats.ts:129](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L129) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L146) +Defined in: [libs/jast/jast/src/lib/jats.ts:146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L146) -*** +--- ### `AddrLine` @@ -655,7 +655,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AddrLine** +- [`Node`](modules.md#node).**AddrLine** #### Properties @@ -672,18 +672,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L191) +Defined in: [libs/jast/jast/src/lib/jats.ts:191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L191) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AddrLineChildrenMap`](modules.md#addrlinechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L196) +Defined in: [libs/jast/jast/src/lib/jats.ts:196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L196) ##### `data?` @@ -693,13 +693,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"addrLine"` -Defined in: [libs/jast/jast/src/lib/jats.ts:190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L190) +Defined in: [libs/jast/jast/src/lib/jats.ts:190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L190) ##### `position?` @@ -710,7 +710,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -720,9 +720,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L189) +Defined in: [libs/jast/jast/src/lib/jats.ts:189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L189) -*** +--- ### `AddrLineChildrenMap` @@ -732,213 +732,213 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:189](https://github.com/TrialAndErr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L202) +Defined in: [libs/jast/jast/src/lib/jats.ts:202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L202) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L204) +Defined in: [libs/jast/jast/src/lib/jats.ts:204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L204) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L206) +Defined in: [libs/jast/jast/src/lib/jats.ts:206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L206) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L208) +Defined in: [libs/jast/jast/src/lib/jats.ts:208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L208) ##### `city?` > [`City`](modules.md#city)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L210) +Defined in: [libs/jast/jast/src/lib/jats.ts:210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L210) ##### `country?` > [`Country`](modules.md#country)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:212](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L212) +Defined in: [libs/jast/jast/src/lib/jats.ts:212](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L212) ##### `fax?` > [`Fax`](modules.md#fax)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L214) +Defined in: [libs/jast/jast/src/lib/jats.ts:214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L214) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L216) +Defined in: [libs/jast/jast/src/lib/jats.ts:216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L216) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L218) +Defined in: [libs/jast/jast/src/lib/jats.ts:218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L218) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L220) +Defined in: [libs/jast/jast/src/lib/jats.ts:220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L220) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L222) +Defined in: [libs/jast/jast/src/lib/jats.ts:222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L222) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L224) +Defined in: [libs/jast/jast/src/lib/jats.ts:224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L224) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L226) +Defined in: [libs/jast/jast/src/lib/jats.ts:226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L226) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L228) +Defined in: [libs/jast/jast/src/lib/jats.ts:228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L228) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L230) +Defined in: [libs/jast/jast/src/lib/jats.ts:230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L230) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L232) +Defined in: [libs/jast/jast/src/lib/jats.ts:232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L232) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L234) +Defined in: [libs/jast/jast/src/lib/jats.ts:234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L234) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L236) +Defined in: [libs/jast/jast/src/lib/jats.ts:236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L236) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L238) +Defined in: [libs/jast/jast/src/lib/jats.ts:238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L238) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L240) +Defined in: [libs/jast/jast/src/lib/jats.ts:240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L240) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L242) +Defined in: [libs/jast/jast/src/lib/jats.ts:242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L242) ##### `phone?` > [`Phone`](modules.md#phone)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L244) +Defined in: [libs/jast/jast/src/lib/jats.ts:244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L244) ##### `postalCode?` > [`PostalCode`](modules.md#postalcode)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L246) +Defined in: [libs/jast/jast/src/lib/jats.ts:246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L246) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L248) +Defined in: [libs/jast/jast/src/lib/jats.ts:248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L248) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L250) +Defined in: [libs/jast/jast/src/lib/jats.ts:250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L250) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L252) +Defined in: [libs/jast/jast/src/lib/jats.ts:252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L252) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L254) +Defined in: [libs/jast/jast/src/lib/jats.ts:254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L254) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L256) +Defined in: [libs/jast/jast/src/lib/jats.ts:256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L256) ##### `state?` > [`State`](modules.md#state)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L258) +Defined in: [libs/jast/jast/src/lib/jats.ts:258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L258) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L260) +Defined in: [libs/jast/jast/src/lib/jats.ts:260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L260) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L262) +Defined in: [libs/jast/jast/src/lib/jats.ts:262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L262) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:264](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L264) +Defined in: [libs/jast/jast/src/lib/jats.ts:264](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L264) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L266) +Defined in: [libs/jast/jast/src/lib/jats.ts:266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L266) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L200) +Defined in: [libs/jast/jast/src/lib/jats.ts:200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L200) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L268) +Defined in: [libs/jast/jast/src/lib/jats.ts:268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L268) -*** +--- ### `Address` @@ -946,7 +946,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Address** +- [`Node`](modules.md#node).**Address** #### Properties @@ -963,18 +963,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L152) +Defined in: [libs/jast/jast/src/lib/jats.ts:152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L152) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AddressChildrenMap`](modules.md#addresschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:157](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L157) +Defined in: [libs/jast/jast/src/lib/jats.ts:157](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L157) ##### `data?` @@ -984,13 +984,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"address"` -Defined in: [libs/jast/jast/src/lib/jats.ts:151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L151) +Defined in: [libs/jast/jast/src/lib/jats.ts:151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L151) ##### `position?` @@ -1001,7 +1001,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1011,9 +1011,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L150) +Defined in: [libs/jast/jast/src/lib/jats.ts:150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L150) -*** +--- ### `AddressChildrenMap` @@ -1023,81 +1023,81 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:150](https://github.com/TrialAndErr > [`AddrLine`](modules.md#addrline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L163) +Defined in: [libs/jast/jast/src/lib/jats.ts:163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L163) ##### `city?` > [`City`](modules.md#city)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:165](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L165) +Defined in: [libs/jast/jast/src/lib/jats.ts:165](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L165) ##### `country?` > [`Country`](modules.md#country)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:167](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L167) +Defined in: [libs/jast/jast/src/lib/jats.ts:167](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L167) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:169](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L169) +Defined in: [libs/jast/jast/src/lib/jats.ts:169](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L169) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:171](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L171) +Defined in: [libs/jast/jast/src/lib/jats.ts:171](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L171) ##### `fax?` > [`Fax`](modules.md#fax)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:173](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L173) +Defined in: [libs/jast/jast/src/lib/jats.ts:173](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L173) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:175](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L175) +Defined in: [libs/jast/jast/src/lib/jats.ts:175](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L175) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:177](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L177) +Defined in: [libs/jast/jast/src/lib/jats.ts:177](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L177) ##### `phone?` > [`Phone`](modules.md#phone)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:179](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L179) +Defined in: [libs/jast/jast/src/lib/jats.ts:179](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L179) ##### `postalCode?` > [`PostalCode`](modules.md#postalcode)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:181](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L181) +Defined in: [libs/jast/jast/src/lib/jats.ts:181](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L181) ##### `state?` > [`State`](modules.md#state)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L183) +Defined in: [libs/jast/jast/src/lib/jats.ts:183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L183) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L161) +Defined in: [libs/jast/jast/src/lib/jats.ts:161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L161) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:185](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L185) +Defined in: [libs/jast/jast/src/lib/jats.ts:185](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L185) -*** +--- ### `Aff` @@ -1105,7 +1105,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Aff** +- [`Node`](modules.md#node).**Aff** #### Properties @@ -1123,19 +1123,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L288) +Defined in: [libs/jast/jast/src/lib/jats.ts:288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L288) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AffChildrenMap`](modules.md#affchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L294) +Defined in: [libs/jast/jast/src/lib/jats.ts:294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L294) ##### `data?` @@ -1145,13 +1145,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"aff"` -Defined in: [libs/jast/jast/src/lib/jats.ts:287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L287) +Defined in: [libs/jast/jast/src/lib/jats.ts:287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L287) ##### `position?` @@ -1162,7 +1162,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1172,9 +1172,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:286](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L286) +Defined in: [libs/jast/jast/src/lib/jats.ts:286](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L286) -*** +--- ### `AffAlternatives` @@ -1182,7 +1182,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AffAlternatives** +- [`Node`](modules.md#node).**AffAlternatives** #### Properties @@ -1198,17 +1198,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L274) +Defined in: [libs/jast/jast/src/lib/jats.ts:274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L274) ##### `children` > [`Aff`](modules.md#aff)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L278) +Defined in: [libs/jast/jast/src/lib/jats.ts:278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L278) ##### `data?` @@ -1218,13 +1218,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"affAlternatives"` -Defined in: [libs/jast/jast/src/lib/jats.ts:273](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L273) +Defined in: [libs/jast/jast/src/lib/jats.ts:273](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L273) ##### `position?` @@ -1235,7 +1235,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1245,9 +1245,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L272) +Defined in: [libs/jast/jast/src/lib/jats.ts:272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L272) -*** +--- ### `AffAlternativesChildrenMap` @@ -1257,9 +1257,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:272](https://github.com/TrialAndErr > [`Aff`](modules.md#aff)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L282) +Defined in: [libs/jast/jast/src/lib/jats.ts:282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L282) -*** +--- ### `AffChildrenMap` @@ -1269,207 +1269,207 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:282](https://github.com/TrialAndErr > [`AddrLine`](modules.md#addrline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L300) +Defined in: [libs/jast/jast/src/lib/jats.ts:300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L300) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L302) +Defined in: [libs/jast/jast/src/lib/jats.ts:302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L302) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:304](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L304) +Defined in: [libs/jast/jast/src/lib/jats.ts:304](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L304) ##### `city?` > [`City`](modules.md#city)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L306) +Defined in: [libs/jast/jast/src/lib/jats.ts:306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L306) ##### `country?` > [`Country`](modules.md#country)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L308) +Defined in: [libs/jast/jast/src/lib/jats.ts:308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L308) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L310) +Defined in: [libs/jast/jast/src/lib/jats.ts:310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L310) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L312) +Defined in: [libs/jast/jast/src/lib/jats.ts:312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L312) ##### `fax?` > [`Fax`](modules.md#fax)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L314) +Defined in: [libs/jast/jast/src/lib/jats.ts:314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L314) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L316) +Defined in: [libs/jast/jast/src/lib/jats.ts:316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L316) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L318) +Defined in: [libs/jast/jast/src/lib/jats.ts:318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L318) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L320) +Defined in: [libs/jast/jast/src/lib/jats.ts:320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L320) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L322) +Defined in: [libs/jast/jast/src/lib/jats.ts:322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L322) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L324) +Defined in: [libs/jast/jast/src/lib/jats.ts:324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L324) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L326) +Defined in: [libs/jast/jast/src/lib/jats.ts:326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L326) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L328) +Defined in: [libs/jast/jast/src/lib/jats.ts:328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L328) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L330) +Defined in: [libs/jast/jast/src/lib/jats.ts:330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L330) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L332) +Defined in: [libs/jast/jast/src/lib/jats.ts:332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L332) ##### `phone?` > [`Phone`](modules.md#phone)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L334) +Defined in: [libs/jast/jast/src/lib/jats.ts:334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L334) ##### `postalCode?` > [`PostalCode`](modules.md#postalcode)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L336) +Defined in: [libs/jast/jast/src/lib/jats.ts:336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L336) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L338) +Defined in: [libs/jast/jast/src/lib/jats.ts:338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L338) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L340) +Defined in: [libs/jast/jast/src/lib/jats.ts:340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L340) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L342) +Defined in: [libs/jast/jast/src/lib/jats.ts:342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L342) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L344) +Defined in: [libs/jast/jast/src/lib/jats.ts:344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L344) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L346) +Defined in: [libs/jast/jast/src/lib/jats.ts:346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L346) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L348) +Defined in: [libs/jast/jast/src/lib/jats.ts:348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L348) ##### `state?` > [`State`](modules.md#state)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L350) +Defined in: [libs/jast/jast/src/lib/jats.ts:350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L350) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L352) +Defined in: [libs/jast/jast/src/lib/jats.ts:352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L352) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L354) +Defined in: [libs/jast/jast/src/lib/jats.ts:354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L354) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L356) +Defined in: [libs/jast/jast/src/lib/jats.ts:356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L356) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L358) +Defined in: [libs/jast/jast/src/lib/jats.ts:358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L358) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:298](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L298) +Defined in: [libs/jast/jast/src/lib/jats.ts:298](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L298) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L360) +Defined in: [libs/jast/jast/src/lib/jats.ts:360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L360) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L362) +Defined in: [libs/jast/jast/src/lib/jats.ts:362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L362) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L364) +Defined in: [libs/jast/jast/src/lib/jats.ts:364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L364) -*** +--- ### `AltText` @@ -1477,7 +1477,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AltText** +- [`Node`](modules.md#node).**AltText** #### Properties @@ -1494,18 +1494,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L412) +Defined in: [libs/jast/jast/src/lib/jats.ts:412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L412) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:417](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L417) +Defined in: [libs/jast/jast/src/lib/jats.ts:417](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L417) ##### `data?` @@ -1515,13 +1515,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"altText"` -Defined in: [libs/jast/jast/src/lib/jats.ts:411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L411) +Defined in: [libs/jast/jast/src/lib/jats.ts:411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L411) ##### `position?` @@ -1532,7 +1532,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1542,9 +1542,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L410) +Defined in: [libs/jast/jast/src/lib/jats.ts:410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L410) -*** +--- ### `AltTextChildrenMap` @@ -1554,9 +1554,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:410](https://github.com/TrialAndErr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L421) +Defined in: [libs/jast/jast/src/lib/jats.ts:421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L421) -*** +--- ### `AltTitle` @@ -1564,7 +1564,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AltTitle** +- [`Node`](modules.md#node).**AltTitle** #### Properties @@ -1582,19 +1582,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------- | :------- | | `altTitletype`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L427) +Defined in: [libs/jast/jast/src/lib/jats.ts:427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L427) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AltTitleChildrenMap`](modules.md#alttitlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L433) +Defined in: [libs/jast/jast/src/lib/jats.ts:433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L433) ##### `data?` @@ -1604,13 +1604,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"altTitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L426) +Defined in: [libs/jast/jast/src/lib/jats.ts:426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L426) ##### `position?` @@ -1621,7 +1621,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1631,9 +1631,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:425](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L425) +Defined in: [libs/jast/jast/src/lib/jats.ts:425](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L425) -*** +--- ### `AltTitleChildrenMap` @@ -1643,225 +1643,225 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:425](https://github.com/TrialAndErr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L437) +Defined in: [libs/jast/jast/src/lib/jats.ts:437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L437) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:439](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L439) +Defined in: [libs/jast/jast/src/lib/jats.ts:439](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L439) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L441) +Defined in: [libs/jast/jast/src/lib/jats.ts:441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L441) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:443](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L443) +Defined in: [libs/jast/jast/src/lib/jats.ts:443](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L443) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L445) +Defined in: [libs/jast/jast/src/lib/jats.ts:445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L445) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L447) +Defined in: [libs/jast/jast/src/lib/jats.ts:447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L447) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L449) +Defined in: [libs/jast/jast/src/lib/jats.ts:449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L449) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L451) +Defined in: [libs/jast/jast/src/lib/jats.ts:451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L451) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:453](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L453) +Defined in: [libs/jast/jast/src/lib/jats.ts:453](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L453) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:455](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L455) +Defined in: [libs/jast/jast/src/lib/jats.ts:455](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L455) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:457](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L457) +Defined in: [libs/jast/jast/src/lib/jats.ts:457](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L457) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:459](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L459) +Defined in: [libs/jast/jast/src/lib/jats.ts:459](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L459) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:461](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L461) +Defined in: [libs/jast/jast/src/lib/jats.ts:461](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L461) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L463) +Defined in: [libs/jast/jast/src/lib/jats.ts:463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L463) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:465](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L465) +Defined in: [libs/jast/jast/src/lib/jats.ts:465](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L465) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L467) +Defined in: [libs/jast/jast/src/lib/jats.ts:467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L467) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:469](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L469) +Defined in: [libs/jast/jast/src/lib/jats.ts:469](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L469) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L471) +Defined in: [libs/jast/jast/src/lib/jats.ts:471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L471) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:473](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L473) +Defined in: [libs/jast/jast/src/lib/jats.ts:473](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L473) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L475) +Defined in: [libs/jast/jast/src/lib/jats.ts:475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L475) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:477](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L477) +Defined in: [libs/jast/jast/src/lib/jats.ts:477](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L477) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L479) +Defined in: [libs/jast/jast/src/lib/jats.ts:479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L479) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L481) +Defined in: [libs/jast/jast/src/lib/jats.ts:481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L481) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:483](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L483) +Defined in: [libs/jast/jast/src/lib/jats.ts:483](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L483) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L485) +Defined in: [libs/jast/jast/src/lib/jats.ts:485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L485) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L487) +Defined in: [libs/jast/jast/src/lib/jats.ts:487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L487) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:489](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L489) +Defined in: [libs/jast/jast/src/lib/jats.ts:489](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L489) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L491) +Defined in: [libs/jast/jast/src/lib/jats.ts:491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L491) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L493) +Defined in: [libs/jast/jast/src/lib/jats.ts:493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L493) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:495](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L495) +Defined in: [libs/jast/jast/src/lib/jats.ts:495](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L495) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L497) +Defined in: [libs/jast/jast/src/lib/jats.ts:497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L497) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L499) +Defined in: [libs/jast/jast/src/lib/jats.ts:499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L499) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L501) +Defined in: [libs/jast/jast/src/lib/jats.ts:501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L501) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:503](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L503) +Defined in: [libs/jast/jast/src/lib/jats.ts:503](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L503) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L505) +Defined in: [libs/jast/jast/src/lib/jats.ts:505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L505) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L507) +Defined in: [libs/jast/jast/src/lib/jats.ts:507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L507) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L509) +Defined in: [libs/jast/jast/src/lib/jats.ts:509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L509) -*** +--- ### `Alternatives` @@ -1869,7 +1869,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Alternatives** +- [`Node`](modules.md#node).**Alternatives** #### Properties @@ -1885,17 +1885,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L370) +Defined in: [libs/jast/jast/src/lib/jats.ts:370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L370) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AlternativesChildrenMap`](modules.md#alternativeschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L374) +Defined in: [libs/jast/jast/src/lib/jats.ts:374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L374) ##### `data?` @@ -1905,13 +1905,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"alternatives"` -Defined in: [libs/jast/jast/src/lib/jats.ts:369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L369) +Defined in: [libs/jast/jast/src/lib/jats.ts:369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L369) ##### `position?` @@ -1922,7 +1922,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -1932,9 +1932,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L368) +Defined in: [libs/jast/jast/src/lib/jats.ts:368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L368) -*** +--- ### `AlternativesChildrenMap` @@ -1944,93 +1944,93 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:368](https://github.com/TrialAndErr > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:378](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L378) +Defined in: [libs/jast/jast/src/lib/jats.ts:378](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L378) ##### `chemStruct` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L380) +Defined in: [libs/jast/jast/src/lib/jats.ts:380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L380) ##### `code` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:382](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L382) +Defined in: [libs/jast/jast/src/lib/jats.ts:382](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L382) ##### `graphic` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L384) +Defined in: [libs/jast/jast/src/lib/jats.ts:384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L384) ##### `inlineGraphic` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L386) +Defined in: [libs/jast/jast/src/lib/jats.ts:386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L386) ##### `inlineMedia` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L388) +Defined in: [libs/jast/jast/src/lib/jats.ts:388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L388) ##### `inlineSupplementarymaterial` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L390) +Defined in: [libs/jast/jast/src/lib/jats.ts:390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L390) ##### `media` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L392) +Defined in: [libs/jast/jast/src/lib/jats.ts:392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L392) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L394) +Defined in: [libs/jast/jast/src/lib/jats.ts:394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L394) ##### `preformat` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L396) +Defined in: [libs/jast/jast/src/lib/jats.ts:396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L396) ##### `privateChar` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L398) +Defined in: [libs/jast/jast/src/lib/jats.ts:398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L398) ##### `supplementaryMaterial` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L400) +Defined in: [libs/jast/jast/src/lib/jats.ts:400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L400) ##### `table` > [`Table`](modules.md#table)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L402) +Defined in: [libs/jast/jast/src/lib/jats.ts:402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L402) ##### `texMath` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L404) +Defined in: [libs/jast/jast/src/lib/jats.ts:404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L404) ##### `textualForm` > [`TextualForm`](modules.md#textualform)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L406) +Defined in: [libs/jast/jast/src/lib/jats.ts:406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L406) -*** +--- ### `Annotation` @@ -2038,7 +2038,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Annotation** +- [`Node`](modules.md#node).**Annotation** #### Properties @@ -2055,18 +2055,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L515) +Defined in: [libs/jast/jast/src/lib/jats.ts:515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L515) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AnnotationChildrenMap`](modules.md#annotationchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L520) +Defined in: [libs/jast/jast/src/lib/jats.ts:520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L520) ##### `data?` @@ -2076,13 +2076,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"annotation"` -Defined in: [libs/jast/jast/src/lib/jats.ts:514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L514) +Defined in: [libs/jast/jast/src/lib/jats.ts:514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L514) ##### `position?` @@ -2093,7 +2093,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -2103,9 +2103,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L513) +Defined in: [libs/jast/jast/src/lib/jats.ts:513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L513) -*** +--- ### `AnnotationChildrenMap` @@ -2115,15 +2115,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:513](https://github.com/TrialAndErr > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L526) +Defined in: [libs/jast/jast/src/lib/jats.ts:526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L526) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L524) +Defined in: [libs/jast/jast/src/lib/jats.ts:524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L524) -*** +--- ### `Anonymous` @@ -2131,7 +2131,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Anonymous** +- [`Node`](modules.md#node).**Anonymous** #### Properties @@ -2148,18 +2148,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L532) +Defined in: [libs/jast/jast/src/lib/jats.ts:532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L532) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L536) +Defined in: [libs/jast/jast/src/lib/jats.ts:536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L536) ##### `data?` @@ -2169,13 +2169,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"anonymous"` -Defined in: [libs/jast/jast/src/lib/jats.ts:531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L531) +Defined in: [libs/jast/jast/src/lib/jats.ts:531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L531) ##### `position?` @@ -2186,7 +2186,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -2196,9 +2196,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L530) +Defined in: [libs/jast/jast/src/lib/jats.ts:530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L530) -*** +--- ### `Answer` @@ -2206,7 +2206,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Answer** +- [`Node`](modules.md#node).**Answer** #### Properties @@ -2224,19 +2224,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------------ | :------- | +| `id`? | `string` | | `pointerToquestion` | `string` | -| `specificUse`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L573) +Defined in: [libs/jast/jast/src/lib/jats.ts:573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L573) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AnswerChildrenMap`](modules.md#answerchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L579) +Defined in: [libs/jast/jast/src/lib/jats.ts:579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L579) ##### `data?` @@ -2246,13 +2246,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"answer"` -Defined in: [libs/jast/jast/src/lib/jats.ts:572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L572) +Defined in: [libs/jast/jast/src/lib/jats.ts:572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L572) ##### `position?` @@ -2263,7 +2263,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -2273,9 +2273,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L571) +Defined in: [libs/jast/jast/src/lib/jats.ts:571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L571) -*** +--- ### `AnswerChildrenMap` @@ -2285,261 +2285,261 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:571](https://github.com/TrialAndErr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L585) +Defined in: [libs/jast/jast/src/lib/jats.ts:585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L585) ##### `altTitle?` > [`AltTitle`](modules.md#alttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:587](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L587) +Defined in: [libs/jast/jast/src/lib/jats.ts:587](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L587) ##### `alternatives` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L589) +Defined in: [libs/jast/jast/src/lib/jats.ts:589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L589) ##### `answer` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L591) +Defined in: [libs/jast/jast/src/lib/jats.ts:591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L591) ##### `answerSet` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L593) +Defined in: [libs/jast/jast/src/lib/jats.ts:593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L593) ##### `array` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L595) +Defined in: [libs/jast/jast/src/lib/jats.ts:595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L595) ##### `blockAlternatives` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L597) +Defined in: [libs/jast/jast/src/lib/jats.ts:597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L597) ##### `boxedText` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:599](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L599) +Defined in: [libs/jast/jast/src/lib/jats.ts:599](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L599) ##### `chemStructwrap` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L601) +Defined in: [libs/jast/jast/src/lib/jats.ts:601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L601) ##### `code` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L603) +Defined in: [libs/jast/jast/src/lib/jats.ts:603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L603) ##### `defList` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L605) +Defined in: [libs/jast/jast/src/lib/jats.ts:605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L605) ##### `dispFormula` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:607](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L607) +Defined in: [libs/jast/jast/src/lib/jats.ts:607](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L607) ##### `dispFormulagroup` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L609) +Defined in: [libs/jast/jast/src/lib/jats.ts:609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L609) ##### `dispQuote` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L611) +Defined in: [libs/jast/jast/src/lib/jats.ts:611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L611) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L613) +Defined in: [libs/jast/jast/src/lib/jats.ts:613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L613) ##### `fig` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L615) +Defined in: [libs/jast/jast/src/lib/jats.ts:615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L615) ##### `figGroup` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L617) +Defined in: [libs/jast/jast/src/lib/jats.ts:617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L617) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L619) +Defined in: [libs/jast/jast/src/lib/jats.ts:619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L619) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:621](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L621) +Defined in: [libs/jast/jast/src/lib/jats.ts:621](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L621) ##### `graphic` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L623) +Defined in: [libs/jast/jast/src/lib/jats.ts:623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L623) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L625) +Defined in: [libs/jast/jast/src/lib/jats.ts:625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L625) ##### `list` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:627](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L627) +Defined in: [libs/jast/jast/src/lib/jats.ts:627](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L627) ##### `media` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:629](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L629) +Defined in: [libs/jast/jast/src/lib/jats.ts:629](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L629) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:631](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L631) +Defined in: [libs/jast/jast/src/lib/jats.ts:631](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L631) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:633](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L633) +Defined in: [libs/jast/jast/src/lib/jats.ts:633](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L633) ##### `preformat` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:635](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L635) +Defined in: [libs/jast/jast/src/lib/jats.ts:635](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L635) ##### `question` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:637](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L637) +Defined in: [libs/jast/jast/src/lib/jats.ts:637](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L637) ##### `questionWrap` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:639](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L639) +Defined in: [libs/jast/jast/src/lib/jats.ts:639](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L639) ##### `questionWrapgroup` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L641) +Defined in: [libs/jast/jast/src/lib/jats.ts:641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L641) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:643](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L643) +Defined in: [libs/jast/jast/src/lib/jats.ts:643](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L643) ##### `relatedArticle` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:645](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L645) +Defined in: [libs/jast/jast/src/lib/jats.ts:645](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L645) ##### `relatedObject` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:647](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L647) +Defined in: [libs/jast/jast/src/lib/jats.ts:647](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L647) ##### `sec` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:649](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L649) +Defined in: [libs/jast/jast/src/lib/jats.ts:649](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L649) ##### `speech` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:651](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L651) +Defined in: [libs/jast/jast/src/lib/jats.ts:651](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L651) ##### `statement` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:653](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L653) +Defined in: [libs/jast/jast/src/lib/jats.ts:653](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L653) ##### `subtitle?` > [`Subtitle`](modules.md#subtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L655) +Defined in: [libs/jast/jast/src/lib/jats.ts:655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L655) ##### `supplementaryMaterial` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L657) +Defined in: [libs/jast/jast/src/lib/jats.ts:657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L657) ##### `tableWrap` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:659](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L659) +Defined in: [libs/jast/jast/src/lib/jats.ts:659](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L659) ##### `tableWrapgroup` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:661](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L661) +Defined in: [libs/jast/jast/src/lib/jats.ts:661](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L661) ##### `texMath` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:663](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L663) +Defined in: [libs/jast/jast/src/lib/jats.ts:663](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L663) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L583) +Defined in: [libs/jast/jast/src/lib/jats.ts:583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L583) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:665](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L665) +Defined in: [libs/jast/jast/src/lib/jats.ts:665](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L665) ##### `verseGroup` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:667](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L667) +Defined in: [libs/jast/jast/src/lib/jats.ts:667](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L667) -*** +--- ### `AnswerSet` @@ -2547,7 +2547,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AnswerSet** +- [`Node`](modules.md#node).**AnswerSet** #### Properties @@ -2564,18 +2564,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:542](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L542) +Defined in: [libs/jast/jast/src/lib/jats.ts:542](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L542) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AnswerSetChildrenMap`](modules.md#answersetchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L547) +Defined in: [libs/jast/jast/src/lib/jats.ts:547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L547) ##### `data?` @@ -2585,13 +2585,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"answerSet"` -Defined in: [libs/jast/jast/src/lib/jats.ts:541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L541) +Defined in: [libs/jast/jast/src/lib/jats.ts:541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L541) ##### `position?` @@ -2602,7 +2602,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -2612,9 +2612,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L540) +Defined in: [libs/jast/jast/src/lib/jats.ts:540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L540) -*** +--- ### `AnswerSetChildrenMap` @@ -2624,57 +2624,57 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:540](https://github.com/TrialAndErr > [`AltTitle`](modules.md#alttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L553) +Defined in: [libs/jast/jast/src/lib/jats.ts:553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L553) ##### `answer` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L555) +Defined in: [libs/jast/jast/src/lib/jats.ts:555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L555) ##### `explanation` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L557) +Defined in: [libs/jast/jast/src/lib/jats.ts:557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L557) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:559](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L559) +Defined in: [libs/jast/jast/src/lib/jats.ts:559](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L559) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L561) +Defined in: [libs/jast/jast/src/lib/jats.ts:561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L561) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L563) +Defined in: [libs/jast/jast/src/lib/jats.ts:563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L563) ##### `subtitle?` > [`Subtitle`](modules.md#subtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L565) +Defined in: [libs/jast/jast/src/lib/jats.ts:565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L565) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L551) +Defined in: [libs/jast/jast/src/lib/jats.ts:551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L551) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L567) +Defined in: [libs/jast/jast/src/lib/jats.ts:567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L567) -*** +--- ### `App` @@ -2682,7 +2682,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**App** +- [`Node`](modules.md#node).**App** #### Properties @@ -2699,18 +2699,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L769) +Defined in: [libs/jast/jast/src/lib/jats.ts:769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L769) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AppChildrenMap`](modules.md#appchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L774) +Defined in: [libs/jast/jast/src/lib/jats.ts:774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L774) ##### `data?` @@ -2720,13 +2720,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"app"` -Defined in: [libs/jast/jast/src/lib/jats.ts:768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L768) +Defined in: [libs/jast/jast/src/lib/jats.ts:768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L768) ##### `position?` @@ -2737,7 +2737,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -2747,9 +2747,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:767](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L767) +Defined in: [libs/jast/jast/src/lib/jats.ts:767](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L767) -*** +--- ### `AppChildrenMap` @@ -2759,255 +2759,255 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:767](https://github.com/TrialAndErr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L780) +Defined in: [libs/jast/jast/src/lib/jats.ts:780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L780) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L782) +Defined in: [libs/jast/jast/src/lib/jats.ts:782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L782) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L784) +Defined in: [libs/jast/jast/src/lib/jats.ts:784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L784) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L786) +Defined in: [libs/jast/jast/src/lib/jats.ts:786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L786) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L788) +Defined in: [libs/jast/jast/src/lib/jats.ts:788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L788) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L790) +Defined in: [libs/jast/jast/src/lib/jats.ts:790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L790) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L792) +Defined in: [libs/jast/jast/src/lib/jats.ts:792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L792) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L794) +Defined in: [libs/jast/jast/src/lib/jats.ts:794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L794) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L796) +Defined in: [libs/jast/jast/src/lib/jats.ts:796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L796) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L798) +Defined in: [libs/jast/jast/src/lib/jats.ts:798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L798) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L800) +Defined in: [libs/jast/jast/src/lib/jats.ts:800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L800) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L802) +Defined in: [libs/jast/jast/src/lib/jats.ts:802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L802) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L804) +Defined in: [libs/jast/jast/src/lib/jats.ts:804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L804) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L806) +Defined in: [libs/jast/jast/src/lib/jats.ts:806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L806) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L808) +Defined in: [libs/jast/jast/src/lib/jats.ts:808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L808) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L810) +Defined in: [libs/jast/jast/src/lib/jats.ts:810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L810) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L812) +Defined in: [libs/jast/jast/src/lib/jats.ts:812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L812) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L814) +Defined in: [libs/jast/jast/src/lib/jats.ts:814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L814) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L816) +Defined in: [libs/jast/jast/src/lib/jats.ts:816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L816) ##### `label` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L818) +Defined in: [libs/jast/jast/src/lib/jats.ts:818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L818) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L820) +Defined in: [libs/jast/jast/src/lib/jats.ts:820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L820) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L822) +Defined in: [libs/jast/jast/src/lib/jats.ts:822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L822) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L824) +Defined in: [libs/jast/jast/src/lib/jats.ts:824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L824) ##### `permissions?` > [`Permissions`](modules.md#permissions) -Defined in: [libs/jast/jast/src/lib/jats.ts:826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L826) +Defined in: [libs/jast/jast/src/lib/jats.ts:826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L826) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L828) +Defined in: [libs/jast/jast/src/lib/jats.ts:828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L828) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L830) +Defined in: [libs/jast/jast/src/lib/jats.ts:830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L830) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L832) +Defined in: [libs/jast/jast/src/lib/jats.ts:832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L832) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L834) +Defined in: [libs/jast/jast/src/lib/jats.ts:834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L834) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L836) +Defined in: [libs/jast/jast/src/lib/jats.ts:836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L836) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L838) +Defined in: [libs/jast/jast/src/lib/jats.ts:838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L838) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L840) +Defined in: [libs/jast/jast/src/lib/jats.ts:840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L840) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L842) +Defined in: [libs/jast/jast/src/lib/jats.ts:842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L842) ##### `secMeta?` > [`SecMeta`](modules.md#secmeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L844) +Defined in: [libs/jast/jast/src/lib/jats.ts:844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L844) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L846) +Defined in: [libs/jast/jast/src/lib/jats.ts:846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L846) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L848) +Defined in: [libs/jast/jast/src/lib/jats.ts:848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L848) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L850) +Defined in: [libs/jast/jast/src/lib/jats.ts:850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L850) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L852) +Defined in: [libs/jast/jast/src/lib/jats.ts:852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L852) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L854) +Defined in: [libs/jast/jast/src/lib/jats.ts:854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L854) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L856) +Defined in: [libs/jast/jast/src/lib/jats.ts:856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L856) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L778) +Defined in: [libs/jast/jast/src/lib/jats.ts:778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L778) ##### `title` > [`Title`](modules.md#title)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L858) +Defined in: [libs/jast/jast/src/lib/jats.ts:858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L858) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L860) +Defined in: [libs/jast/jast/src/lib/jats.ts:860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L860) -*** +--- ### `AppGroup` @@ -3015,7 +3015,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AppGroup** +- [`Node`](modules.md#node).**AppGroup** #### Properties @@ -3032,18 +3032,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:673](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L673) +Defined in: [libs/jast/jast/src/lib/jats.ts:673](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L673) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AppGroupChildrenMap`](modules.md#appgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L678) +Defined in: [libs/jast/jast/src/lib/jats.ts:678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L678) ##### `data?` @@ -3053,13 +3053,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"appGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L672) +Defined in: [libs/jast/jast/src/lib/jats.ts:672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L672) ##### `position?` @@ -3070,7 +3070,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -3080,9 +3080,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:671](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L671) +Defined in: [libs/jast/jast/src/lib/jats.ts:671](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L671) -*** +--- ### `AppGroupChildrenMap` @@ -3092,255 +3092,255 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:671](https://github.com/TrialAndErr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L684) +Defined in: [libs/jast/jast/src/lib/jats.ts:684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L684) ##### `address?` > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L686) +Defined in: [libs/jast/jast/src/lib/jats.ts:686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L686) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L688) +Defined in: [libs/jast/jast/src/lib/jats.ts:688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L688) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L690) +Defined in: [libs/jast/jast/src/lib/jats.ts:690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L690) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L692) +Defined in: [libs/jast/jast/src/lib/jats.ts:692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L692) ##### `app?` > [`App`](modules.md#app)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L694) +Defined in: [libs/jast/jast/src/lib/jats.ts:694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L694) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L696) +Defined in: [libs/jast/jast/src/lib/jats.ts:696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L696) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L698) +Defined in: [libs/jast/jast/src/lib/jats.ts:698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L698) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L700) +Defined in: [libs/jast/jast/src/lib/jats.ts:700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L700) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L702) +Defined in: [libs/jast/jast/src/lib/jats.ts:702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L702) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L704) +Defined in: [libs/jast/jast/src/lib/jats.ts:704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L704) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L706) +Defined in: [libs/jast/jast/src/lib/jats.ts:706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L706) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L708) +Defined in: [libs/jast/jast/src/lib/jats.ts:708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L708) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L710) +Defined in: [libs/jast/jast/src/lib/jats.ts:710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L710) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L712) +Defined in: [libs/jast/jast/src/lib/jats.ts:712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L712) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L714) +Defined in: [libs/jast/jast/src/lib/jats.ts:714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L714) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L716) +Defined in: [libs/jast/jast/src/lib/jats.ts:716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L716) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L718) +Defined in: [libs/jast/jast/src/lib/jats.ts:718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L718) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L720) +Defined in: [libs/jast/jast/src/lib/jats.ts:720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L720) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L722) +Defined in: [libs/jast/jast/src/lib/jats.ts:722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L722) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L724) +Defined in: [libs/jast/jast/src/lib/jats.ts:724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L724) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L726) +Defined in: [libs/jast/jast/src/lib/jats.ts:726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L726) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L728) +Defined in: [libs/jast/jast/src/lib/jats.ts:728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L728) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L730) +Defined in: [libs/jast/jast/src/lib/jats.ts:730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L730) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L732) +Defined in: [libs/jast/jast/src/lib/jats.ts:732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L732) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L734) +Defined in: [libs/jast/jast/src/lib/jats.ts:734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L734) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L736) +Defined in: [libs/jast/jast/src/lib/jats.ts:736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L736) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L738) +Defined in: [libs/jast/jast/src/lib/jats.ts:738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L738) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L740) +Defined in: [libs/jast/jast/src/lib/jats.ts:740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L740) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L742) +Defined in: [libs/jast/jast/src/lib/jats.ts:742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L742) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L744) +Defined in: [libs/jast/jast/src/lib/jats.ts:744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L744) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L746) +Defined in: [libs/jast/jast/src/lib/jats.ts:746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L746) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L748) +Defined in: [libs/jast/jast/src/lib/jats.ts:748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L748) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L750) +Defined in: [libs/jast/jast/src/lib/jats.ts:750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L750) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L751) +Defined in: [libs/jast/jast/src/lib/jats.ts:751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L751) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L753) +Defined in: [libs/jast/jast/src/lib/jats.ts:753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L753) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L755) +Defined in: [libs/jast/jast/src/lib/jats.ts:755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L755) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L757) +Defined in: [libs/jast/jast/src/lib/jats.ts:757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L757) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L759) +Defined in: [libs/jast/jast/src/lib/jats.ts:759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L759) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L682) +Defined in: [libs/jast/jast/src/lib/jats.ts:682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L682) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L761) +Defined in: [libs/jast/jast/src/lib/jats.ts:761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L761) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L763) +Defined in: [libs/jast/jast/src/lib/jats.ts:763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L763) -*** +--- ### `Array` @@ -3348,7 +3348,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Array** +- [`Node`](modules.md#node).**Array** #### Properties @@ -3366,19 +3366,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :--------------------- | +| `id`? | `string` | | `orientation`? | `ArrayTypeOrientation` | -| `specificUse`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L866) +Defined in: [libs/jast/jast/src/lib/jats.ts:866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L866) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ArrayChildrenMap`](modules.md#arraychildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L872) +Defined in: [libs/jast/jast/src/lib/jats.ts:872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L872) ##### `data?` @@ -3388,13 +3388,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"array"` -Defined in: [libs/jast/jast/src/lib/jats.ts:865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L865) +Defined in: [libs/jast/jast/src/lib/jats.ts:865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L865) ##### `position?` @@ -3405,7 +3405,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -3415,9 +3415,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L864) +Defined in: [libs/jast/jast/src/lib/jats.ts:864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L864) -*** +--- ### `ArrayChildrenMap` @@ -3427,75 +3427,75 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:864](https://github.com/TrialAndErr > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L877) +Defined in: [libs/jast/jast/src/lib/jats.ts:877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L877) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L879) +Defined in: [libs/jast/jast/src/lib/jats.ts:879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L879) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L881) +Defined in: [libs/jast/jast/src/lib/jats.ts:881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L881) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L883) +Defined in: [libs/jast/jast/src/lib/jats.ts:883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L883) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L885) +Defined in: [libs/jast/jast/src/lib/jats.ts:885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L885) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L887) +Defined in: [libs/jast/jast/src/lib/jats.ts:887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L887) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L889) +Defined in: [libs/jast/jast/src/lib/jats.ts:889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L889) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L891) +Defined in: [libs/jast/jast/src/lib/jats.ts:891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L891) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:893](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L893) +Defined in: [libs/jast/jast/src/lib/jats.ts:893](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L893) ##### `tbody` > [`Tbody`](modules.md#tbody) -Defined in: [libs/jast/jast/src/lib/jats.ts:894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L894) +Defined in: [libs/jast/jast/src/lib/jats.ts:894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L894) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L876) +Defined in: [libs/jast/jast/src/lib/jats.ts:876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L876) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L896) +Defined in: [libs/jast/jast/src/lib/jats.ts:896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L896) -*** +--- ### `Article` @@ -3503,7 +3503,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Article** +- [`Node`](modules.md#node).**Article** #### Properties @@ -3522,20 +3522,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `articleType`? | `string` | -| `dtdVersion`? | `ArticleTypeDtdVersion` | -| `id`? | `string` | -| `specificUse`? | `string` | +| Member | Type | +| :------------- | :---------------------- | +| `articleType`? | `string` | +| `dtdVersion`? | `ArticleTypeDtdVersion` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1153) +Defined in: [libs/jast/jast/src/lib/jats.ts:1153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1153) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ArticleChildrenMap`](modules.md#articlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1160) +Defined in: [libs/jast/jast/src/lib/jats.ts:1160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1160) ##### `data?` @@ -3545,13 +3545,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"article"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1152) +Defined in: [libs/jast/jast/src/lib/jats.ts:1152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1152) ##### `position?` @@ -3562,7 +3562,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -3572,9 +3572,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1151) +Defined in: [libs/jast/jast/src/lib/jats.ts:1151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1151) -*** +--- ### `ArticleCategories` @@ -3582,7 +3582,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ArticleCategories** +- [`Node`](modules.md#node).**ArticleCategories** #### Properties @@ -3598,17 +3598,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L904) +Defined in: [libs/jast/jast/src/lib/jats.ts:904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L904) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ArticleCategoriesChildrenMap`](modules.md#articlecategorieschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L908) +Defined in: [libs/jast/jast/src/lib/jats.ts:908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L908) ##### `data?` @@ -3618,13 +3618,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"articleCategories"` -Defined in: [libs/jast/jast/src/lib/jats.ts:903](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L903) +Defined in: [libs/jast/jast/src/lib/jats.ts:903](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L903) ##### `position?` @@ -3635,7 +3635,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -3645,9 +3645,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L902) +Defined in: [libs/jast/jast/src/lib/jats.ts:902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L902) -*** +--- ### `ArticleCategoriesChildrenMap` @@ -3657,21 +3657,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:902](https://github.com/TrialAndErr > [`SeriesText`](modules.md#seriestext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L912) +Defined in: [libs/jast/jast/src/lib/jats.ts:912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L912) ##### `seriesTitle?` > [`SeriesTitle`](modules.md#seriestitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L914) +Defined in: [libs/jast/jast/src/lib/jats.ts:914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L914) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L915) +Defined in: [libs/jast/jast/src/lib/jats.ts:915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L915) -*** +--- ### `ArticleChildrenMap` @@ -3681,45 +3681,45 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:915](https://github.com/TrialAndErr > [`Back`](modules.md#back) -Defined in: [libs/jast/jast/src/lib/jats.ts:1163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1163) +Defined in: [libs/jast/jast/src/lib/jats.ts:1163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1163) ##### `body?` > [`Body`](modules.md#body) -Defined in: [libs/jast/jast/src/lib/jats.ts:1165](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1165) +Defined in: [libs/jast/jast/src/lib/jats.ts:1165](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1165) ##### `floatsGroup?` > [`FloatsGroup`](modules.md#floatsgroup) -Defined in: [libs/jast/jast/src/lib/jats.ts:1167](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1167) +Defined in: [libs/jast/jast/src/lib/jats.ts:1167](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1167) ##### `front` > [`Front`](modules.md#front) -Defined in: [libs/jast/jast/src/lib/jats.ts:1169](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1169) +Defined in: [libs/jast/jast/src/lib/jats.ts:1169](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1169) ##### `processingMeta?` > [`ProcessingMeta`](modules.md#processingmeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:1171](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1171) +Defined in: [libs/jast/jast/src/lib/jats.ts:1171](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1171) ##### `response?` > [`Response`](modules.md#response)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1173](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1173) +Defined in: [libs/jast/jast/src/lib/jats.ts:1173](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1173) ##### `subArticle?` > [`SubArticle`](modules.md#subarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1175](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1175) +Defined in: [libs/jast/jast/src/lib/jats.ts:1175](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1175) -*** +--- ### `ArticleId` @@ -3727,7 +3727,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ArticleId** +- [`Node`](modules.md#node).**ArticleId** #### Properties @@ -3746,20 +3746,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `id`? | `string` | -| `pubIdType`? | `ArticleIdTypePubIdtype` | -| `specificUse`? | `string` | +| Member | Type | +| :-------------------- | :----------------------- | +| `assigningAuthority`? | `string` | +| `id`? | `string` | +| `pubIdType`? | `ArticleIdTypePubIdtype` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L921) +Defined in: [libs/jast/jast/src/lib/jats.ts:921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L921) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L928) +Defined in: [libs/jast/jast/src/lib/jats.ts:928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L928) ##### `data?` @@ -3769,13 +3769,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"articleId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L920) +Defined in: [libs/jast/jast/src/lib/jats.ts:920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L920) ##### `position?` @@ -3786,7 +3786,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -3796,9 +3796,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:919](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L919) +Defined in: [libs/jast/jast/src/lib/jats.ts:919](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L919) -*** +--- ### `ArticleIdChildrenMap` @@ -3808,9 +3808,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:919](https://github.com/TrialAndErr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L932) +Defined in: [libs/jast/jast/src/lib/jats.ts:932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L932) -*** +--- ### `ArticleMeta` @@ -3818,7 +3818,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ArticleMeta** +- [`Node`](modules.md#node).**ArticleMeta** #### Properties @@ -3834,17 +3834,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L963) +Defined in: [libs/jast/jast/src/lib/jats.ts:963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L963) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ArticleMetaChildrenMap`](modules.md#articlemetachildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L967) +Defined in: [libs/jast/jast/src/lib/jats.ts:967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L967) ##### `data?` @@ -3854,13 +3854,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"articleMeta"` -Defined in: [libs/jast/jast/src/lib/jats.ts:962](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L962) +Defined in: [libs/jast/jast/src/lib/jats.ts:962](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L962) ##### `position?` @@ -3871,7 +3871,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -3881,9 +3881,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L961) +Defined in: [libs/jast/jast/src/lib/jats.ts:961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L961) -*** +--- ### `ArticleMetaChildrenMap` @@ -3893,279 +3893,279 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:961](https://github.com/TrialAndErr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L971) +Defined in: [libs/jast/jast/src/lib/jats.ts:971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L971) ##### `aff?` > [`Aff`](modules.md#aff)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L973) +Defined in: [libs/jast/jast/src/lib/jats.ts:973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L973) ##### `affAlternatives?` > [`AffAlternatives`](modules.md#affalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L975) +Defined in: [libs/jast/jast/src/lib/jats.ts:975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L975) ##### `articleCategories?` > [`ArticleCategories`](modules.md#articlecategories) -Defined in: [libs/jast/jast/src/lib/jats.ts:977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L977) +Defined in: [libs/jast/jast/src/lib/jats.ts:977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L977) ##### `articleId?` > [`ArticleId`](modules.md#articleid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L979) +Defined in: [libs/jast/jast/src/lib/jats.ts:979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L979) ##### `articleVersion?` > [`ArticleVersion`](modules.md#articleversion) -Defined in: [libs/jast/jast/src/lib/jats.ts:981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L981) +Defined in: [libs/jast/jast/src/lib/jats.ts:981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L981) ##### `articleVersionalternatives?` > [`ArticleVersionalternatives`](modules.md#articleversionalternatives) -Defined in: [libs/jast/jast/src/lib/jats.ts:983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L983) +Defined in: [libs/jast/jast/src/lib/jats.ts:983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L983) ##### `authorNotes?` > [`AuthorNotes`](modules.md#authornotes) -Defined in: [libs/jast/jast/src/lib/jats.ts:985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L985) +Defined in: [libs/jast/jast/src/lib/jats.ts:985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L985) ##### `conference?` > [`Conference`](modules.md#conference)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L987) +Defined in: [libs/jast/jast/src/lib/jats.ts:987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L987) ##### `contribGroup?` > [`ContribGroup`](modules.md#contribgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L989) +Defined in: [libs/jast/jast/src/lib/jats.ts:989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L989) ##### `counts?` > [`Counts`](modules.md#counts) -Defined in: [libs/jast/jast/src/lib/jats.ts:991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L991) +Defined in: [libs/jast/jast/src/lib/jats.ts:991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L991) ##### `customMetagroup?` > [`CustomMetagroup`](modules.md#custommetagroup) -Defined in: [libs/jast/jast/src/lib/jats.ts:993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L993) +Defined in: [libs/jast/jast/src/lib/jats.ts:993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L993) ##### `elocationId?` > [`ElocationId`](modules.md#elocationid) -Defined in: [libs/jast/jast/src/lib/jats.ts:995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L995) +Defined in: [libs/jast/jast/src/lib/jats.ts:995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L995) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L997) +Defined in: [libs/jast/jast/src/lib/jats.ts:997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L997) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L999) +Defined in: [libs/jast/jast/src/lib/jats.ts:999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L999) ##### `fpage?` > [`Fpage`](modules.md#fpage) -Defined in: [libs/jast/jast/src/lib/jats.ts:1001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1001) +Defined in: [libs/jast/jast/src/lib/jats.ts:1001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1001) ##### `fundingGroup?` > [`FundingGroup`](modules.md#fundinggroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1003) +Defined in: [libs/jast/jast/src/lib/jats.ts:1003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1003) ##### `history?` > [`History`](modules.md#history) -Defined in: [libs/jast/jast/src/lib/jats.ts:1005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1005) +Defined in: [libs/jast/jast/src/lib/jats.ts:1005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1005) ##### `isbn?` > [`Isbn`](modules.md#isbn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1007) +Defined in: [libs/jast/jast/src/lib/jats.ts:1007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1007) ##### `issue?` > [`Issue`](modules.md#issue)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1009) +Defined in: [libs/jast/jast/src/lib/jats.ts:1009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1009) ##### `issueId?` > [`IssueId`](modules.md#issueid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1011) +Defined in: [libs/jast/jast/src/lib/jats.ts:1011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1011) ##### `issuePart?` > [`IssuePart`](modules.md#issuepart) -Defined in: [libs/jast/jast/src/lib/jats.ts:1013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1013) +Defined in: [libs/jast/jast/src/lib/jats.ts:1013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1013) ##### `issueSponsor?` > [`IssueSponsor`](modules.md#issuesponsor)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1015](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1015) +Defined in: [libs/jast/jast/src/lib/jats.ts:1015](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1015) ##### `issueTitle?` > [`IssueTitle`](modules.md#issuetitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1017](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1017) +Defined in: [libs/jast/jast/src/lib/jats.ts:1017](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1017) ##### `issueTitlegroup?` > [`IssueTitlegroup`](modules.md#issuetitlegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1019) +Defined in: [libs/jast/jast/src/lib/jats.ts:1019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1019) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1021) +Defined in: [libs/jast/jast/src/lib/jats.ts:1021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1021) ##### `lpage?` > [`Lpage`](modules.md#lpage) -Defined in: [libs/jast/jast/src/lib/jats.ts:1023](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1023) +Defined in: [libs/jast/jast/src/lib/jats.ts:1023](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1023) ##### `pageRange?` > [`PageRange`](modules.md#pagerange) -Defined in: [libs/jast/jast/src/lib/jats.ts:1025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1025) +Defined in: [libs/jast/jast/src/lib/jats.ts:1025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1025) ##### `permissions?` > [`Permissions`](modules.md#permissions) -Defined in: [libs/jast/jast/src/lib/jats.ts:1027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1027) +Defined in: [libs/jast/jast/src/lib/jats.ts:1027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1027) ##### `product?` > [`Product`](modules.md#product)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1029) +Defined in: [libs/jast/jast/src/lib/jats.ts:1029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1029) ##### `pubDate` > [`PubDate`](modules.md#pubdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1031](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1031) +Defined in: [libs/jast/jast/src/lib/jats.ts:1031](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1031) ##### `pubDatenotavailable?` > [`PubDatenotavailable`](modules.md#pubdatenotavailable) -Defined in: [libs/jast/jast/src/lib/jats.ts:1033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1033) +Defined in: [libs/jast/jast/src/lib/jats.ts:1033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1033) ##### `pubHistory?` > [`PubHistory`](modules.md#pubhistory) -Defined in: [libs/jast/jast/src/lib/jats.ts:1035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1035) +Defined in: [libs/jast/jast/src/lib/jats.ts:1035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1035) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1037) +Defined in: [libs/jast/jast/src/lib/jats.ts:1037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1037) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1039](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1039) +Defined in: [libs/jast/jast/src/lib/jats.ts:1039](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1039) ##### `selfUri?` > [`SelfUri`](modules.md#selfuri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1041) +Defined in: [libs/jast/jast/src/lib/jats.ts:1041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1041) ##### `supplement?` > [`Supplement`](modules.md#supplement) -Defined in: [libs/jast/jast/src/lib/jats.ts:1043](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1043) +Defined in: [libs/jast/jast/src/lib/jats.ts:1043](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1043) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1045) +Defined in: [libs/jast/jast/src/lib/jats.ts:1045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1045) ##### `supportGroup?` > [`SupportGroup`](modules.md#supportgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1047) +Defined in: [libs/jast/jast/src/lib/jats.ts:1047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1047) ##### `titleGroup` > [`TitleGroup`](modules.md#titlegroup) -Defined in: [libs/jast/jast/src/lib/jats.ts:1049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1049) +Defined in: [libs/jast/jast/src/lib/jats.ts:1049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1049) ##### `transAbstract?` > [`TransAbstract`](modules.md#transabstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1051](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1051) +Defined in: [libs/jast/jast/src/lib/jats.ts:1051](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1051) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1053) +Defined in: [libs/jast/jast/src/lib/jats.ts:1053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1053) ##### `volume?` > [`Volume`](modules.md#volume)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1055](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1055) +Defined in: [libs/jast/jast/src/lib/jats.ts:1055](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1055) ##### `volumeId?` > [`VolumeId`](modules.md#volumeid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1057) +Defined in: [libs/jast/jast/src/lib/jats.ts:1057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1057) ##### `volumeIssuegroup?` > [`VolumeIssuegroup`](modules.md#volumeissuegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1059) +Defined in: [libs/jast/jast/src/lib/jats.ts:1059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1059) ##### `volumeSeries?` > [`VolumeSeries`](modules.md#volumeseries) -Defined in: [libs/jast/jast/src/lib/jats.ts:1061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1061) +Defined in: [libs/jast/jast/src/lib/jats.ts:1061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1061) -*** +--- ### `ArticleTitle` @@ -4173,7 +4173,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ArticleTitle** +- [`Node`](modules.md#node).**ArticleTitle** #### Properties @@ -4189,17 +4189,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1067) +Defined in: [libs/jast/jast/src/lib/jats.ts:1067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1067) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ArticleTitleChildrenMap`](modules.md#articletitlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1071) +Defined in: [libs/jast/jast/src/lib/jats.ts:1071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1071) ##### `data?` @@ -4209,13 +4209,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"articleTitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1066](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1066) +Defined in: [libs/jast/jast/src/lib/jats.ts:1066](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1066) ##### `position?` @@ -4226,7 +4226,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -4236,9 +4236,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1065) +Defined in: [libs/jast/jast/src/lib/jats.ts:1065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1065) -*** +--- ### `ArticleTitleChildrenMap` @@ -4248,225 +4248,225 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1065](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1075) +Defined in: [libs/jast/jast/src/lib/jats.ts:1075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1075) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1077) +Defined in: [libs/jast/jast/src/lib/jats.ts:1077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1077) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1079](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1079) +Defined in: [libs/jast/jast/src/lib/jats.ts:1079](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1079) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1081](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1081) +Defined in: [libs/jast/jast/src/lib/jats.ts:1081](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1081) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1083](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1083) +Defined in: [libs/jast/jast/src/lib/jats.ts:1083](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1083) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1085](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1085) +Defined in: [libs/jast/jast/src/lib/jats.ts:1085](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1085) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1087](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1087) +Defined in: [libs/jast/jast/src/lib/jats.ts:1087](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1087) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1089](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1089) +Defined in: [libs/jast/jast/src/lib/jats.ts:1089](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1089) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1091](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1091) +Defined in: [libs/jast/jast/src/lib/jats.ts:1091](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1091) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1093](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1093) +Defined in: [libs/jast/jast/src/lib/jats.ts:1093](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1093) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1095](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1095) +Defined in: [libs/jast/jast/src/lib/jats.ts:1095](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1095) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1097](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1097) +Defined in: [libs/jast/jast/src/lib/jats.ts:1097](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1097) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1099) +Defined in: [libs/jast/jast/src/lib/jats.ts:1099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1099) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1101](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1101) +Defined in: [libs/jast/jast/src/lib/jats.ts:1101](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1101) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1103) +Defined in: [libs/jast/jast/src/lib/jats.ts:1103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1103) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1105) +Defined in: [libs/jast/jast/src/lib/jats.ts:1105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1105) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1107](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1107) +Defined in: [libs/jast/jast/src/lib/jats.ts:1107](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1107) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1109) +Defined in: [libs/jast/jast/src/lib/jats.ts:1109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1109) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1111) +Defined in: [libs/jast/jast/src/lib/jats.ts:1111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1111) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1113) +Defined in: [libs/jast/jast/src/lib/jats.ts:1113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1113) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1115) +Defined in: [libs/jast/jast/src/lib/jats.ts:1115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1115) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1117](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1117) +Defined in: [libs/jast/jast/src/lib/jats.ts:1117](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1117) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1119) +Defined in: [libs/jast/jast/src/lib/jats.ts:1119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1119) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1121) +Defined in: [libs/jast/jast/src/lib/jats.ts:1121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1121) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1123](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1123) +Defined in: [libs/jast/jast/src/lib/jats.ts:1123](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1123) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1125) +Defined in: [libs/jast/jast/src/lib/jats.ts:1125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1125) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1127) +Defined in: [libs/jast/jast/src/lib/jats.ts:1127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1127) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1129](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1129) +Defined in: [libs/jast/jast/src/lib/jats.ts:1129](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1129) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1131) +Defined in: [libs/jast/jast/src/lib/jats.ts:1131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1131) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1133) +Defined in: [libs/jast/jast/src/lib/jats.ts:1133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1133) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1135](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1135) +Defined in: [libs/jast/jast/src/lib/jats.ts:1135](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1135) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1137) +Defined in: [libs/jast/jast/src/lib/jats.ts:1137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1137) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1139](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1139) +Defined in: [libs/jast/jast/src/lib/jats.ts:1139](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1139) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1141) +Defined in: [libs/jast/jast/src/lib/jats.ts:1141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1141) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1143) +Defined in: [libs/jast/jast/src/lib/jats.ts:1143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1143) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1145](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1145) +Defined in: [libs/jast/jast/src/lib/jats.ts:1145](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1145) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1147](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1147) +Defined in: [libs/jast/jast/src/lib/jats.ts:1147](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1147) -*** +--- ### `ArticleVersion` @@ -4474,7 +4474,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ArticleVersion** +- [`Node`](modules.md#node).**ArticleVersion** #### Properties @@ -4500,27 +4500,27 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `articleVersiontype`? | `string` | -| `assigningAuthority`? | `string` | -| `designator`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `iso8601Date`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `articleVersiontype`? | `string` | +| `assigningAuthority`? | `string` | +| `designator`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `iso8601Date`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1210) +Defined in: [libs/jast/jast/src/lib/jats.ts:1210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1210) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1224) +Defined in: [libs/jast/jast/src/lib/jats.ts:1224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1224) ##### `data?` @@ -4530,13 +4530,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"articleVersion"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1209](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1209) +Defined in: [libs/jast/jast/src/lib/jats.ts:1209](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1209) ##### `position?` @@ -4547,7 +4547,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -4557,9 +4557,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1208) +Defined in: [libs/jast/jast/src/lib/jats.ts:1208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1208) -*** +--- ### `ArticleVersionChildrenMap` @@ -4569,9 +4569,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1208](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:1228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1228) +Defined in: [libs/jast/jast/src/lib/jats.ts:1228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1228) -*** +--- ### `ArticleVersionalternatives` @@ -4579,7 +4579,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ArticleVersionalternatives** +- [`Node`](modules.md#node).**ArticleVersionalternatives** #### Properties @@ -4595,17 +4595,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1196) +Defined in: [libs/jast/jast/src/lib/jats.ts:1196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1196) ##### `children` > [`ArticleVersion`](modules.md#articleversion)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1200) +Defined in: [libs/jast/jast/src/lib/jats.ts:1200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1200) ##### `data?` @@ -4615,13 +4615,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"articleVersionalternatives"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1195) +Defined in: [libs/jast/jast/src/lib/jats.ts:1195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1195) ##### `position?` @@ -4632,7 +4632,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -4642,9 +4642,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1194) +Defined in: [libs/jast/jast/src/lib/jats.ts:1194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1194) -*** +--- ### `ArticleVersionalternativesChildrenMap` @@ -4654,9 +4654,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1194](https://github.com/TrialAndEr > [`ArticleVersion`](modules.md#articleversion)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1204) +Defined in: [libs/jast/jast/src/lib/jats.ts:1204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1204) -*** +--- ### `Attrib` @@ -4664,7 +4664,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Attrib** +- [`Node`](modules.md#node).**Attrib** #### Properties @@ -4681,18 +4681,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1234) +Defined in: [libs/jast/jast/src/lib/jats.ts:1234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1234) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AttribChildrenMap`](modules.md#attribchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1239) +Defined in: [libs/jast/jast/src/lib/jats.ts:1239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1239) ##### `data?` @@ -4702,13 +4702,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"attrib"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1233) +Defined in: [libs/jast/jast/src/lib/jats.ts:1233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1233) ##### `position?` @@ -4719,7 +4719,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -4729,9 +4729,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1232) +Defined in: [libs/jast/jast/src/lib/jats.ts:1232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1232) -*** +--- ### `AttribChildrenMap` @@ -4741,219 +4741,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1232](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1243) +Defined in: [libs/jast/jast/src/lib/jats.ts:1243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1243) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1245) +Defined in: [libs/jast/jast/src/lib/jats.ts:1245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1245) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1247) +Defined in: [libs/jast/jast/src/lib/jats.ts:1247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1247) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1249) +Defined in: [libs/jast/jast/src/lib/jats.ts:1249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1249) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1251) +Defined in: [libs/jast/jast/src/lib/jats.ts:1251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1251) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1253) +Defined in: [libs/jast/jast/src/lib/jats.ts:1253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1253) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1255) +Defined in: [libs/jast/jast/src/lib/jats.ts:1255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1255) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1257) +Defined in: [libs/jast/jast/src/lib/jats.ts:1257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1257) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1259) +Defined in: [libs/jast/jast/src/lib/jats.ts:1259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1259) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1261) +Defined in: [libs/jast/jast/src/lib/jats.ts:1261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1261) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1263) +Defined in: [libs/jast/jast/src/lib/jats.ts:1263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1263) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1265) +Defined in: [libs/jast/jast/src/lib/jats.ts:1265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1265) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1267](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1267) +Defined in: [libs/jast/jast/src/lib/jats.ts:1267](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1267) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1269) +Defined in: [libs/jast/jast/src/lib/jats.ts:1269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1269) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1271) +Defined in: [libs/jast/jast/src/lib/jats.ts:1271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1271) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1273](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1273) +Defined in: [libs/jast/jast/src/lib/jats.ts:1273](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1273) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1275) +Defined in: [libs/jast/jast/src/lib/jats.ts:1275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1275) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1277) +Defined in: [libs/jast/jast/src/lib/jats.ts:1277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1277) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1279](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1279) +Defined in: [libs/jast/jast/src/lib/jats.ts:1279](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1279) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1281](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1281) +Defined in: [libs/jast/jast/src/lib/jats.ts:1281](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1281) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1283) +Defined in: [libs/jast/jast/src/lib/jats.ts:1283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1283) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1285](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1285) +Defined in: [libs/jast/jast/src/lib/jats.ts:1285](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1285) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1287) +Defined in: [libs/jast/jast/src/lib/jats.ts:1287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1287) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1289](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1289) +Defined in: [libs/jast/jast/src/lib/jats.ts:1289](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1289) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1291](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1291) +Defined in: [libs/jast/jast/src/lib/jats.ts:1291](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1291) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1293](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1293) +Defined in: [libs/jast/jast/src/lib/jats.ts:1293](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1293) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1295) +Defined in: [libs/jast/jast/src/lib/jats.ts:1295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1295) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1297](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1297) +Defined in: [libs/jast/jast/src/lib/jats.ts:1297](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1297) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1299) +Defined in: [libs/jast/jast/src/lib/jats.ts:1299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1299) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1301) +Defined in: [libs/jast/jast/src/lib/jats.ts:1301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1301) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1303) +Defined in: [libs/jast/jast/src/lib/jats.ts:1303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1303) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1305) +Defined in: [libs/jast/jast/src/lib/jats.ts:1305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1305) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1307) +Defined in: [libs/jast/jast/src/lib/jats.ts:1307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1307) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1309](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1309) +Defined in: [libs/jast/jast/src/lib/jats.ts:1309](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1309) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1311) +Defined in: [libs/jast/jast/src/lib/jats.ts:1311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1311) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1313) +Defined in: [libs/jast/jast/src/lib/jats.ts:1313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1313) -*** +--- ### `Attributes` @@ -4961,7 +4961,7 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1313](https://github.com/TrialAndEr [`name`: `string`]: `string` | `null` | `undefined` | `boolean` | `number` -*** +--- ### `AuthorComment` @@ -4969,7 +4969,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AuthorComment** +- [`Node`](modules.md#node).**AuthorComment** #### Properties @@ -4986,18 +4986,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1319](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1319) +Defined in: [libs/jast/jast/src/lib/jats.ts:1319](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1319) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AuthorCommentChildrenMap`](modules.md#authorcommentchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1324) +Defined in: [libs/jast/jast/src/lib/jats.ts:1324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1324) ##### `data?` @@ -5007,13 +5007,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"authorComment"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1318) +Defined in: [libs/jast/jast/src/lib/jats.ts:1318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1318) ##### `position?` @@ -5024,7 +5024,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -5034,9 +5034,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1317) +Defined in: [libs/jast/jast/src/lib/jats.ts:1317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1317) -*** +--- ### `AuthorCommentChildrenMap` @@ -5046,21 +5046,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1317](https://github.com/TrialAndEr > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1330) +Defined in: [libs/jast/jast/src/lib/jats.ts:1330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1330) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:1328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1328) +Defined in: [libs/jast/jast/src/lib/jats.ts:1328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1328) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:1332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1332) +Defined in: [libs/jast/jast/src/lib/jats.ts:1332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1332) -*** +--- ### `AuthorNotes` @@ -5068,7 +5068,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AuthorNotes** +- [`Node`](modules.md#node).**AuthorNotes** #### Properties @@ -5086,19 +5086,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1338) +Defined in: [libs/jast/jast/src/lib/jats.ts:1338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1338) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AuthorNotesChildrenMap`](modules.md#authornoteschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1344) +Defined in: [libs/jast/jast/src/lib/jats.ts:1344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1344) ##### `data?` @@ -5108,13 +5108,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"authorNotes"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1337) +Defined in: [libs/jast/jast/src/lib/jats.ts:1337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1337) ##### `position?` @@ -5125,7 +5125,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -5135,9 +5135,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1336) +Defined in: [libs/jast/jast/src/lib/jats.ts:1336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1336) -*** +--- ### `AuthorNotesChildrenMap` @@ -5147,33 +5147,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1336](https://github.com/TrialAndEr > [`Corresp`](modules.md#corresp)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1348) +Defined in: [libs/jast/jast/src/lib/jats.ts:1348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1348) ##### `fn` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1350) +Defined in: [libs/jast/jast/src/lib/jats.ts:1350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1350) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:1352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1352) +Defined in: [libs/jast/jast/src/lib/jats.ts:1352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1352) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1354) +Defined in: [libs/jast/jast/src/lib/jats.ts:1354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1354) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:1356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1356) +Defined in: [libs/jast/jast/src/lib/jats.ts:1356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1356) -*** +--- ### `AwardDesc` @@ -5181,7 +5181,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AwardDesc** +- [`Node`](modules.md#node).**AwardDesc** #### Properties @@ -5198,18 +5198,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :---------- | :------- | | `hreflang`? | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1362) +Defined in: [libs/jast/jast/src/lib/jats.ts:1362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1362) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:1366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1366) +Defined in: [libs/jast/jast/src/lib/jats.ts:1366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1366) ##### `data?` @@ -5219,13 +5219,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"awardDesc"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1361](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1361) +Defined in: [libs/jast/jast/src/lib/jats.ts:1361](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1361) ##### `position?` @@ -5236,7 +5236,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -5246,9 +5246,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1360) +Defined in: [libs/jast/jast/src/lib/jats.ts:1360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1360) -*** +--- ### `AwardGroup` @@ -5256,7 +5256,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AwardGroup** +- [`Node`](modules.md#node).**AwardGroup** #### Properties @@ -5276,21 +5276,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `awardType`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `awardType`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1372) +Defined in: [libs/jast/jast/src/lib/jats.ts:1372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1372) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AwardGroupChildrenMap`](modules.md#awardgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1380) +Defined in: [libs/jast/jast/src/lib/jats.ts:1380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1380) ##### `data?` @@ -5300,13 +5300,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"awardGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1371) +Defined in: [libs/jast/jast/src/lib/jats.ts:1371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1371) ##### `position?` @@ -5317,7 +5317,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -5327,9 +5327,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1370) +Defined in: [libs/jast/jast/src/lib/jats.ts:1370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1370) -*** +--- ### `AwardGroupChildrenMap` @@ -5339,45 +5339,45 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1370](https://github.com/TrialAndEr > [`AwardDesc`](modules.md#awarddesc) -Defined in: [libs/jast/jast/src/lib/jats.ts:1384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1384) +Defined in: [libs/jast/jast/src/lib/jats.ts:1384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1384) ##### `awardId?` > [`AwardId`](modules.md#awardid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1386) +Defined in: [libs/jast/jast/src/lib/jats.ts:1386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1386) ##### `awardName?` > [`AwardName`](modules.md#awardname) -Defined in: [libs/jast/jast/src/lib/jats.ts:1388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1388) +Defined in: [libs/jast/jast/src/lib/jats.ts:1388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1388) ##### `fundingSource?` > [`FundingSource`](modules.md#fundingsource)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1390) +Defined in: [libs/jast/jast/src/lib/jats.ts:1390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1390) ##### `principalAwardrecipient?` > [`PrincipalAwardrecipient`](modules.md#principalawardrecipient)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1392) +Defined in: [libs/jast/jast/src/lib/jats.ts:1392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1392) ##### `principalInvestigator?` > [`PrincipalInvestigator`](modules.md#principalinvestigator)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1394) +Defined in: [libs/jast/jast/src/lib/jats.ts:1394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1394) ##### `supportSource?` > [`SupportSource`](modules.md#supportsource)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1396) +Defined in: [libs/jast/jast/src/lib/jats.ts:1396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1396) -*** +--- ### `AwardId` @@ -5385,7 +5385,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AwardId** +- [`Node`](modules.md#node).**AwardId** #### Properties @@ -5407,23 +5407,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `awardIdtype`? | `string` | -| `awardType`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `rid`? | `string` | -| `specificUse`? | `string` | +| `awardIdtype`? | `string` | +| `awardType`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `rid`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1402) +Defined in: [libs/jast/jast/src/lib/jats.ts:1402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1402) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`AwardIdChildrenMap`](modules.md#awardidchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1412) +Defined in: [libs/jast/jast/src/lib/jats.ts:1412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1412) ##### `data?` @@ -5433,13 +5433,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"awardId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1401) +Defined in: [libs/jast/jast/src/lib/jats.ts:1401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1401) ##### `position?` @@ -5450,7 +5450,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -5460,9 +5460,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1400) +Defined in: [libs/jast/jast/src/lib/jats.ts:1400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1400) -*** +--- ### `AwardIdChildrenMap` @@ -5472,159 +5472,159 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1400](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1416) +Defined in: [libs/jast/jast/src/lib/jats.ts:1416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1416) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1418](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1418) +Defined in: [libs/jast/jast/src/lib/jats.ts:1418](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1418) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1420) +Defined in: [libs/jast/jast/src/lib/jats.ts:1420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1420) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1422](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1422) +Defined in: [libs/jast/jast/src/lib/jats.ts:1422](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1422) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1424](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1424) +Defined in: [libs/jast/jast/src/lib/jats.ts:1424](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1424) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1426) +Defined in: [libs/jast/jast/src/lib/jats.ts:1426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1426) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1428) +Defined in: [libs/jast/jast/src/lib/jats.ts:1428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1428) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1430) +Defined in: [libs/jast/jast/src/lib/jats.ts:1430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1430) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1432) +Defined in: [libs/jast/jast/src/lib/jats.ts:1432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1432) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1434) +Defined in: [libs/jast/jast/src/lib/jats.ts:1434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1434) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1436) +Defined in: [libs/jast/jast/src/lib/jats.ts:1436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1436) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1438](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1438) +Defined in: [libs/jast/jast/src/lib/jats.ts:1438](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1438) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1440) +Defined in: [libs/jast/jast/src/lib/jats.ts:1440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1440) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1442) +Defined in: [libs/jast/jast/src/lib/jats.ts:1442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1442) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1444) +Defined in: [libs/jast/jast/src/lib/jats.ts:1444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1444) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1446) +Defined in: [libs/jast/jast/src/lib/jats.ts:1446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1446) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1448) +Defined in: [libs/jast/jast/src/lib/jats.ts:1448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1448) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1450) +Defined in: [libs/jast/jast/src/lib/jats.ts:1450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1450) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1452) +Defined in: [libs/jast/jast/src/lib/jats.ts:1452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1452) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1454) +Defined in: [libs/jast/jast/src/lib/jats.ts:1454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1454) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1456) +Defined in: [libs/jast/jast/src/lib/jats.ts:1456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1456) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1458) +Defined in: [libs/jast/jast/src/lib/jats.ts:1458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1458) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1460) +Defined in: [libs/jast/jast/src/lib/jats.ts:1460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1460) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1462) +Defined in: [libs/jast/jast/src/lib/jats.ts:1462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1462) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1464) +Defined in: [libs/jast/jast/src/lib/jats.ts:1464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1464) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1466) +Defined in: [libs/jast/jast/src/lib/jats.ts:1466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1466) -*** +--- ### `AwardName` @@ -5632,7 +5632,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**AwardName** +- [`Node`](modules.md#node).**AwardName** #### Properties @@ -5649,18 +5649,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :---------- | :------- | | `hreflang`? | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1472) +Defined in: [libs/jast/jast/src/lib/jats.ts:1472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1472) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:1476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1476) +Defined in: [libs/jast/jast/src/lib/jats.ts:1476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1476) ##### `data?` @@ -5670,13 +5670,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"awardName"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1471) +Defined in: [libs/jast/jast/src/lib/jats.ts:1471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1471) ##### `position?` @@ -5687,7 +5687,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -5697,9 +5697,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1470) +Defined in: [libs/jast/jast/src/lib/jats.ts:1470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1470) -*** +--- ### `Back` @@ -5707,7 +5707,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Back** +- [`Node`](modules.md#node).**Back** #### Properties @@ -5723,17 +5723,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1482) +Defined in: [libs/jast/jast/src/lib/jats.ts:1482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1482) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`BackChildrenMap`](modules.md#backchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1486) +Defined in: [libs/jast/jast/src/lib/jats.ts:1486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1486) ##### `data?` @@ -5743,13 +5743,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"back"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1481) +Defined in: [libs/jast/jast/src/lib/jats.ts:1481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1481) ##### `position?` @@ -5760,7 +5760,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -5770,9 +5770,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1480) +Defined in: [libs/jast/jast/src/lib/jats.ts:1480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1480) -*** +--- ### `BackChildrenMap` @@ -5782,63 +5782,63 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1480](https://github.com/TrialAndEr > [`Ack`](modules.md#ack)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1490](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1490) +Defined in: [libs/jast/jast/src/lib/jats.ts:1490](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1490) ##### `appGroup?` > [`AppGroup`](modules.md#appgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1492) +Defined in: [libs/jast/jast/src/lib/jats.ts:1492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1492) ##### `bio?` > [`Bio`](modules.md#bio)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1494) +Defined in: [libs/jast/jast/src/lib/jats.ts:1494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1494) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1496) +Defined in: [libs/jast/jast/src/lib/jats.ts:1496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1496) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1498) +Defined in: [libs/jast/jast/src/lib/jats.ts:1498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1498) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:1500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1500) +Defined in: [libs/jast/jast/src/lib/jats.ts:1500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1500) ##### `notes?` > [`Notes`](modules.md#notes)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1502](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1502) +Defined in: [libs/jast/jast/src/lib/jats.ts:1502](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1502) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1504) +Defined in: [libs/jast/jast/src/lib/jats.ts:1504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1504) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1506) +Defined in: [libs/jast/jast/src/lib/jats.ts:1506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1506) ##### `title?` > [`Title`](modules.md#title)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1508) +Defined in: [libs/jast/jast/src/lib/jats.ts:1508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1508) -*** +--- ### `Bio` @@ -5846,7 +5846,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Bio** +- [`Node`](modules.md#node).**Bio** #### Properties @@ -5865,20 +5865,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1514) +Defined in: [libs/jast/jast/src/lib/jats.ts:1514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1514) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`BioChildrenMap`](modules.md#biochildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1521) +Defined in: [libs/jast/jast/src/lib/jats.ts:1521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1521) ##### `data?` @@ -5888,13 +5888,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"bio"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1513) +Defined in: [libs/jast/jast/src/lib/jats.ts:1513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1513) ##### `position?` @@ -5905,7 +5905,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -5915,9 +5915,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1512) +Defined in: [libs/jast/jast/src/lib/jats.ts:1512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1512) -*** +--- ### `BioChildrenMap` @@ -5927,249 +5927,249 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1512](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1527](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1527) +Defined in: [libs/jast/jast/src/lib/jats.ts:1527](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1527) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1529](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1529) +Defined in: [libs/jast/jast/src/lib/jats.ts:1529](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1529) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1531) +Defined in: [libs/jast/jast/src/lib/jats.ts:1531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1531) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1533) +Defined in: [libs/jast/jast/src/lib/jats.ts:1533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1533) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1535) +Defined in: [libs/jast/jast/src/lib/jats.ts:1535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1535) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1537](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1537) +Defined in: [libs/jast/jast/src/lib/jats.ts:1537](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1537) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1539) +Defined in: [libs/jast/jast/src/lib/jats.ts:1539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1539) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1541) +Defined in: [libs/jast/jast/src/lib/jats.ts:1541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1541) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1543) +Defined in: [libs/jast/jast/src/lib/jats.ts:1543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1543) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1545) +Defined in: [libs/jast/jast/src/lib/jats.ts:1545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1545) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1547) +Defined in: [libs/jast/jast/src/lib/jats.ts:1547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1547) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1549) +Defined in: [libs/jast/jast/src/lib/jats.ts:1549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1549) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1551) +Defined in: [libs/jast/jast/src/lib/jats.ts:1551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1551) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1553) +Defined in: [libs/jast/jast/src/lib/jats.ts:1553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1553) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1555) +Defined in: [libs/jast/jast/src/lib/jats.ts:1555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1555) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1557) +Defined in: [libs/jast/jast/src/lib/jats.ts:1557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1557) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1559](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1559) +Defined in: [libs/jast/jast/src/lib/jats.ts:1559](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1559) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1561) +Defined in: [libs/jast/jast/src/lib/jats.ts:1561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1561) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1563) +Defined in: [libs/jast/jast/src/lib/jats.ts:1563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1563) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:1565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1565) +Defined in: [libs/jast/jast/src/lib/jats.ts:1565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1565) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1567) +Defined in: [libs/jast/jast/src/lib/jats.ts:1567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1567) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1569) +Defined in: [libs/jast/jast/src/lib/jats.ts:1569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1569) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1571) +Defined in: [libs/jast/jast/src/lib/jats.ts:1571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1571) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1573) +Defined in: [libs/jast/jast/src/lib/jats.ts:1573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1573) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1575) +Defined in: [libs/jast/jast/src/lib/jats.ts:1575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1575) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1577) +Defined in: [libs/jast/jast/src/lib/jats.ts:1577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1577) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1579) +Defined in: [libs/jast/jast/src/lib/jats.ts:1579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1579) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1581) +Defined in: [libs/jast/jast/src/lib/jats.ts:1581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1581) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1583) +Defined in: [libs/jast/jast/src/lib/jats.ts:1583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1583) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1585) +Defined in: [libs/jast/jast/src/lib/jats.ts:1585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1585) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1587](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1587) +Defined in: [libs/jast/jast/src/lib/jats.ts:1587](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1587) ##### `secMeta?` > [`SecMeta`](modules.md#secmeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:1589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1589) +Defined in: [libs/jast/jast/src/lib/jats.ts:1589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1589) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1591) +Defined in: [libs/jast/jast/src/lib/jats.ts:1591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1591) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1593) +Defined in: [libs/jast/jast/src/lib/jats.ts:1593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1593) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1595) +Defined in: [libs/jast/jast/src/lib/jats.ts:1595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1595) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1597) +Defined in: [libs/jast/jast/src/lib/jats.ts:1597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1597) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1599](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1599) +Defined in: [libs/jast/jast/src/lib/jats.ts:1599](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1599) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1601) +Defined in: [libs/jast/jast/src/lib/jats.ts:1601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1601) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:1525](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1525) +Defined in: [libs/jast/jast/src/lib/jats.ts:1525](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1525) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:1603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1603) +Defined in: [libs/jast/jast/src/lib/jats.ts:1603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1603) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1605) +Defined in: [libs/jast/jast/src/lib/jats.ts:1605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1605) -*** +--- ### `BlockAlternatives` @@ -6177,7 +6177,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**BlockAlternatives** +- [`Node`](modules.md#node).**BlockAlternatives** #### Properties @@ -6193,17 +6193,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1611) +Defined in: [libs/jast/jast/src/lib/jats.ts:1611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1611) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`BlockAlternativesChildrenMap`](modules.md#blockalternativeschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1615) +Defined in: [libs/jast/jast/src/lib/jats.ts:1615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1615) ##### `data?` @@ -6213,13 +6213,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"blockAlternatives"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1610) +Defined in: [libs/jast/jast/src/lib/jats.ts:1610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1610) ##### `position?` @@ -6230,7 +6230,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -6240,9 +6240,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1609) +Defined in: [libs/jast/jast/src/lib/jats.ts:1609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1609) -*** +--- ### `BlockAlternativesChildrenMap` @@ -6252,39 +6252,39 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1609](https://github.com/TrialAndEr > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1619) +Defined in: [libs/jast/jast/src/lib/jats.ts:1619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1619) ##### `fig` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1621](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1621) +Defined in: [libs/jast/jast/src/lib/jats.ts:1621](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1621) ##### `figGroup` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1623) +Defined in: [libs/jast/jast/src/lib/jats.ts:1623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1623) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1625) +Defined in: [libs/jast/jast/src/lib/jats.ts:1625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1625) ##### `tableWrap` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1627](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1627) +Defined in: [libs/jast/jast/src/lib/jats.ts:1627](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1627) ##### `tableWrapgroup` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1629](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1629) +Defined in: [libs/jast/jast/src/lib/jats.ts:1629](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1629) -*** +--- ### `Body` @@ -6292,7 +6292,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Body** +- [`Node`](modules.md#node).**Body** #### Properties @@ -6309,18 +6309,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1635](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1635) +Defined in: [libs/jast/jast/src/lib/jats.ts:1635](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1635) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`BodyChildrenMap`](modules.md#bodychildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1640) +Defined in: [libs/jast/jast/src/lib/jats.ts:1640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1640) ##### `data?` @@ -6330,13 +6330,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"body"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1634) +Defined in: [libs/jast/jast/src/lib/jats.ts:1634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1634) ##### `position?` @@ -6347,7 +6347,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -6357,9 +6357,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1633](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1633) +Defined in: [libs/jast/jast/src/lib/jats.ts:1633](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1633) -*** +--- ### `BodyChildrenMap` @@ -6369,213 +6369,213 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1633](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1644) +Defined in: [libs/jast/jast/src/lib/jats.ts:1644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1644) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1646) +Defined in: [libs/jast/jast/src/lib/jats.ts:1646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1646) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1648) +Defined in: [libs/jast/jast/src/lib/jats.ts:1648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1648) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1650) +Defined in: [libs/jast/jast/src/lib/jats.ts:1650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1650) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1652) +Defined in: [libs/jast/jast/src/lib/jats.ts:1652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1652) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1654) +Defined in: [libs/jast/jast/src/lib/jats.ts:1654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1654) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1656) +Defined in: [libs/jast/jast/src/lib/jats.ts:1656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1656) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1658) +Defined in: [libs/jast/jast/src/lib/jats.ts:1658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1658) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1660) +Defined in: [libs/jast/jast/src/lib/jats.ts:1660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1660) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1662) +Defined in: [libs/jast/jast/src/lib/jats.ts:1662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1662) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1664) +Defined in: [libs/jast/jast/src/lib/jats.ts:1664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1664) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1666) +Defined in: [libs/jast/jast/src/lib/jats.ts:1666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1666) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1668) +Defined in: [libs/jast/jast/src/lib/jats.ts:1668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1668) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1670) +Defined in: [libs/jast/jast/src/lib/jats.ts:1670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1670) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1672) +Defined in: [libs/jast/jast/src/lib/jats.ts:1672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1672) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1674) +Defined in: [libs/jast/jast/src/lib/jats.ts:1674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1674) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1676) +Defined in: [libs/jast/jast/src/lib/jats.ts:1676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1676) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1678) +Defined in: [libs/jast/jast/src/lib/jats.ts:1678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1678) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1680) +Defined in: [libs/jast/jast/src/lib/jats.ts:1680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1680) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1682) +Defined in: [libs/jast/jast/src/lib/jats.ts:1682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1682) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1684) +Defined in: [libs/jast/jast/src/lib/jats.ts:1684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1684) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1686) +Defined in: [libs/jast/jast/src/lib/jats.ts:1686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1686) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1688) +Defined in: [libs/jast/jast/src/lib/jats.ts:1688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1688) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1690) +Defined in: [libs/jast/jast/src/lib/jats.ts:1690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1690) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1692) +Defined in: [libs/jast/jast/src/lib/jats.ts:1692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1692) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1694) +Defined in: [libs/jast/jast/src/lib/jats.ts:1694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1694) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1696) +Defined in: [libs/jast/jast/src/lib/jats.ts:1696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1696) ##### `sigBlock?` > [`SigBlock`](modules.md#sigblock) -Defined in: [libs/jast/jast/src/lib/jats.ts:1698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1698) +Defined in: [libs/jast/jast/src/lib/jats.ts:1698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1698) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1700) +Defined in: [libs/jast/jast/src/lib/jats.ts:1700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1700) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1702) +Defined in: [libs/jast/jast/src/lib/jats.ts:1702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1702) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1704) +Defined in: [libs/jast/jast/src/lib/jats.ts:1704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1704) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1706) +Defined in: [libs/jast/jast/src/lib/jats.ts:1706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1706) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1708) +Defined in: [libs/jast/jast/src/lib/jats.ts:1708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1708) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1710) +Defined in: [libs/jast/jast/src/lib/jats.ts:1710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1710) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1712) +Defined in: [libs/jast/jast/src/lib/jats.ts:1712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1712) -*** +--- ### `Bold` @@ -6583,7 +6583,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Bold** +- [`Node`](modules.md#node).**Bold** #### Properties @@ -6601,19 +6601,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `specificUse`? | `string` | -| `toggle`? | `BoldTypeToggle` | +| Member | Type | +| :------------- | :--------------- | +| `id`? | `string` | +| `specificUse`? | `string` | +| `toggle`? | `BoldTypeToggle` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1718) +Defined in: [libs/jast/jast/src/lib/jats.ts:1718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1718) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`BoldChildrenMap`](modules.md#boldchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1725](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1725) +Defined in: [libs/jast/jast/src/lib/jats.ts:1725](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1725) ##### `data?` @@ -6623,13 +6623,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"bold"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1717](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1717) +Defined in: [libs/jast/jast/src/lib/jats.ts:1717](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1717) ##### `position?` @@ -6640,7 +6640,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -6650,9 +6650,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1716) +Defined in: [libs/jast/jast/src/lib/jats.ts:1716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1716) -*** +--- ### `BoldChildrenMap` @@ -6662,219 +6662,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1716](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1729](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1729) +Defined in: [libs/jast/jast/src/lib/jats.ts:1729](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1729) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1731](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1731) +Defined in: [libs/jast/jast/src/lib/jats.ts:1731](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1731) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1733](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1733) +Defined in: [libs/jast/jast/src/lib/jats.ts:1733](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1733) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1735](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1735) +Defined in: [libs/jast/jast/src/lib/jats.ts:1735](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1735) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1737](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1737) +Defined in: [libs/jast/jast/src/lib/jats.ts:1737](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1737) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1739) +Defined in: [libs/jast/jast/src/lib/jats.ts:1739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1739) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1741](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1741) +Defined in: [libs/jast/jast/src/lib/jats.ts:1741](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1741) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1743](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1743) +Defined in: [libs/jast/jast/src/lib/jats.ts:1743](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1743) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1745) +Defined in: [libs/jast/jast/src/lib/jats.ts:1745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1745) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1747) +Defined in: [libs/jast/jast/src/lib/jats.ts:1747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1747) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1749) +Defined in: [libs/jast/jast/src/lib/jats.ts:1749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1749) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1751) +Defined in: [libs/jast/jast/src/lib/jats.ts:1751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1751) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1753) +Defined in: [libs/jast/jast/src/lib/jats.ts:1753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1753) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1755) +Defined in: [libs/jast/jast/src/lib/jats.ts:1755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1755) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1757) +Defined in: [libs/jast/jast/src/lib/jats.ts:1757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1757) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1759) +Defined in: [libs/jast/jast/src/lib/jats.ts:1759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1759) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1761) +Defined in: [libs/jast/jast/src/lib/jats.ts:1761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1761) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1763) +Defined in: [libs/jast/jast/src/lib/jats.ts:1763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1763) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1765](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1765) +Defined in: [libs/jast/jast/src/lib/jats.ts:1765](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1765) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1767](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1767) +Defined in: [libs/jast/jast/src/lib/jats.ts:1767](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1767) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1769) +Defined in: [libs/jast/jast/src/lib/jats.ts:1769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1769) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1771](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1771) +Defined in: [libs/jast/jast/src/lib/jats.ts:1771](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1771) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1773](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1773) +Defined in: [libs/jast/jast/src/lib/jats.ts:1773](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1773) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1775](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1775) +Defined in: [libs/jast/jast/src/lib/jats.ts:1775](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1775) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1777) +Defined in: [libs/jast/jast/src/lib/jats.ts:1777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1777) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1779](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1779) +Defined in: [libs/jast/jast/src/lib/jats.ts:1779](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1779) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1781](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1781) +Defined in: [libs/jast/jast/src/lib/jats.ts:1781](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1781) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1783](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1783) +Defined in: [libs/jast/jast/src/lib/jats.ts:1783](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1783) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1785](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1785) +Defined in: [libs/jast/jast/src/lib/jats.ts:1785](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1785) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1787](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1787) +Defined in: [libs/jast/jast/src/lib/jats.ts:1787](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1787) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1789](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1789) +Defined in: [libs/jast/jast/src/lib/jats.ts:1789](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1789) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1791](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1791) +Defined in: [libs/jast/jast/src/lib/jats.ts:1791](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1791) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1793](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1793) +Defined in: [libs/jast/jast/src/lib/jats.ts:1793](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1793) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1795](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1795) +Defined in: [libs/jast/jast/src/lib/jats.ts:1795](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1795) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1797](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1797) +Defined in: [libs/jast/jast/src/lib/jats.ts:1797](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1797) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1799](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1799) +Defined in: [libs/jast/jast/src/lib/jats.ts:1799](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1799) -*** +--- ### `BoxedText` @@ -6882,7 +6882,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**BoxedText** +- [`Node`](modules.md#node).**BoxedText** #### Properties @@ -6901,20 +6901,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------------------------- | +| `id`? | `string` | | `orientation`? | `BoxedTextTypeOrientation` | -| `position`? | `BoxedTextTypePosition` | -| `specificUse`? | `string` | +| `position`? | `BoxedTextTypePosition` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1807) +Defined in: [libs/jast/jast/src/lib/jats.ts:1807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1807) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`BoxedTextChildrenMap`](modules.md#boxedtextchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1814) +Defined in: [libs/jast/jast/src/lib/jats.ts:1814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1814) ##### `data?` @@ -6924,13 +6924,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"boxedText"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1806) +Defined in: [libs/jast/jast/src/lib/jats.ts:1806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1806) ##### `position?` @@ -6941,7 +6941,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -6951,9 +6951,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1805) +Defined in: [libs/jast/jast/src/lib/jats.ts:1805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1805) -*** +--- ### `BoxedTextChildrenMap` @@ -6963,267 +6963,267 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1805](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1819](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1819) +Defined in: [libs/jast/jast/src/lib/jats.ts:1819](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1819) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1821](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1821) +Defined in: [libs/jast/jast/src/lib/jats.ts:1821](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1821) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1823](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1823) +Defined in: [libs/jast/jast/src/lib/jats.ts:1823](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1823) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1825](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1825) +Defined in: [libs/jast/jast/src/lib/jats.ts:1825](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1825) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1827](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1827) +Defined in: [libs/jast/jast/src/lib/jats.ts:1827](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1827) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1829](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1829) +Defined in: [libs/jast/jast/src/lib/jats.ts:1829](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1829) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1831](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1831) +Defined in: [libs/jast/jast/src/lib/jats.ts:1831](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1831) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1833](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1833) +Defined in: [libs/jast/jast/src/lib/jats.ts:1833](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1833) ##### `caption?` > [`Caption`](modules.md#caption) -Defined in: [libs/jast/jast/src/lib/jats.ts:1835](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1835) +Defined in: [libs/jast/jast/src/lib/jats.ts:1835](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1835) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1837](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1837) +Defined in: [libs/jast/jast/src/lib/jats.ts:1837](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1837) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1839](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1839) +Defined in: [libs/jast/jast/src/lib/jats.ts:1839](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1839) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1841](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1841) +Defined in: [libs/jast/jast/src/lib/jats.ts:1841](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1841) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1843](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1843) +Defined in: [libs/jast/jast/src/lib/jats.ts:1843](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1843) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1845](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1845) +Defined in: [libs/jast/jast/src/lib/jats.ts:1845](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1845) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1847](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1847) +Defined in: [libs/jast/jast/src/lib/jats.ts:1847](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1847) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1849](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1849) +Defined in: [libs/jast/jast/src/lib/jats.ts:1849](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1849) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1851](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1851) +Defined in: [libs/jast/jast/src/lib/jats.ts:1851](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1851) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1853](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1853) +Defined in: [libs/jast/jast/src/lib/jats.ts:1853](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1853) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1855](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1855) +Defined in: [libs/jast/jast/src/lib/jats.ts:1855](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1855) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1857](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1857) +Defined in: [libs/jast/jast/src/lib/jats.ts:1857](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1857) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1859](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1859) +Defined in: [libs/jast/jast/src/lib/jats.ts:1859](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1859) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:1861](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1861) +Defined in: [libs/jast/jast/src/lib/jats.ts:1861](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1861) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1863](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1863) +Defined in: [libs/jast/jast/src/lib/jats.ts:1863](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1863) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1865) +Defined in: [libs/jast/jast/src/lib/jats.ts:1865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1865) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1867](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1867) +Defined in: [libs/jast/jast/src/lib/jats.ts:1867](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1867) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1869](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1869) +Defined in: [libs/jast/jast/src/lib/jats.ts:1869](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1869) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1871](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1871) +Defined in: [libs/jast/jast/src/lib/jats.ts:1871](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1871) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1873) +Defined in: [libs/jast/jast/src/lib/jats.ts:1873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1873) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1875](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1875) +Defined in: [libs/jast/jast/src/lib/jats.ts:1875](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1875) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1877) +Defined in: [libs/jast/jast/src/lib/jats.ts:1877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1877) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1879) +Defined in: [libs/jast/jast/src/lib/jats.ts:1879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1879) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1881) +Defined in: [libs/jast/jast/src/lib/jats.ts:1881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1881) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1883) +Defined in: [libs/jast/jast/src/lib/jats.ts:1883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1883) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1885) +Defined in: [libs/jast/jast/src/lib/jats.ts:1885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1885) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1887) +Defined in: [libs/jast/jast/src/lib/jats.ts:1887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1887) ##### `secMeta?` > [`SecMeta`](modules.md#secmeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:1889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1889) +Defined in: [libs/jast/jast/src/lib/jats.ts:1889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1889) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1891) +Defined in: [libs/jast/jast/src/lib/jats.ts:1891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1891) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1893](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1893) +Defined in: [libs/jast/jast/src/lib/jats.ts:1893](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1893) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1895](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1895) +Defined in: [libs/jast/jast/src/lib/jats.ts:1895](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1895) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1897) +Defined in: [libs/jast/jast/src/lib/jats.ts:1897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1897) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1899](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1899) +Defined in: [libs/jast/jast/src/lib/jats.ts:1899](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1899) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1901](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1901) +Defined in: [libs/jast/jast/src/lib/jats.ts:1901](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1901) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:1818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1818) +Defined in: [libs/jast/jast/src/lib/jats.ts:1818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1818) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1903](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1903) +Defined in: [libs/jast/jast/src/lib/jats.ts:1903](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1903) -*** +--- ### `Break` @@ -7231,7 +7231,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Break** +- [`Node`](modules.md#node).**Break** #### Properties @@ -7247,17 +7247,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1913](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1913) +Defined in: [libs/jast/jast/src/lib/jats.ts:1913](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1913) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:1916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1916) +Defined in: [libs/jast/jast/src/lib/jats.ts:1916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1916) ##### `data?` @@ -7267,13 +7267,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"break"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1912) +Defined in: [libs/jast/jast/src/lib/jats.ts:1912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1912) ##### `position?` @@ -7284,7 +7284,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -7294,9 +7294,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1911](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1911) +Defined in: [libs/jast/jast/src/lib/jats.ts:1911](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1911) -*** +--- ### `Caption` @@ -7304,7 +7304,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Caption** +- [`Node`](modules.md#node).**Caption** #### Properties @@ -7322,19 +7322,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -| `style`? | `string` | +| `style`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1922) +Defined in: [libs/jast/jast/src/lib/jats.ts:1922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1922) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CaptionChildrenMap`](modules.md#captionchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1928) +Defined in: [libs/jast/jast/src/lib/jats.ts:1928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1928) ##### `data?` @@ -7344,13 +7344,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"caption"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1921) +Defined in: [libs/jast/jast/src/lib/jats.ts:1921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1921) ##### `position?` @@ -7361,7 +7361,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -7371,9 +7371,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1920) +Defined in: [libs/jast/jast/src/lib/jats.ts:1920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1920) -*** +--- ### `CaptionChildrenMap` @@ -7383,21 +7383,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1920](https://github.com/TrialAndEr > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1934) +Defined in: [libs/jast/jast/src/lib/jats.ts:1934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1934) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:1932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1932) +Defined in: [libs/jast/jast/src/lib/jats.ts:1932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1932) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:1936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1936) +Defined in: [libs/jast/jast/src/lib/jats.ts:1936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1936) -*** +--- ### `ChapterTitle` @@ -7405,7 +7405,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ChapterTitle** +- [`Node`](modules.md#node).**ChapterTitle** #### Properties @@ -7422,18 +7422,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:1942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1942) +Defined in: [libs/jast/jast/src/lib/jats.ts:1942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1942) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ChapterTitleChildrenMap`](modules.md#chaptertitlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1947](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1947) +Defined in: [libs/jast/jast/src/lib/jats.ts:1947](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1947) ##### `data?` @@ -7443,13 +7443,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"chapterTitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:1941](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1941) +Defined in: [libs/jast/jast/src/lib/jats.ts:1941](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1941) ##### `position?` @@ -7460,7 +7460,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -7470,9 +7470,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:1940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1940) +Defined in: [libs/jast/jast/src/lib/jats.ts:1940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1940) -*** +--- ### `ChapterTitleChildrenMap` @@ -7482,177 +7482,177 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:1940](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1951](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1951) +Defined in: [libs/jast/jast/src/lib/jats.ts:1951](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1951) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1953](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1953) +Defined in: [libs/jast/jast/src/lib/jats.ts:1953](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1953) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1955) +Defined in: [libs/jast/jast/src/lib/jats.ts:1955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1955) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1957](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1957) +Defined in: [libs/jast/jast/src/lib/jats.ts:1957](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1957) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1959) +Defined in: [libs/jast/jast/src/lib/jats.ts:1959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1959) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1961) +Defined in: [libs/jast/jast/src/lib/jats.ts:1961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1961) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1963) +Defined in: [libs/jast/jast/src/lib/jats.ts:1963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1963) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1965) +Defined in: [libs/jast/jast/src/lib/jats.ts:1965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1965) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1967) +Defined in: [libs/jast/jast/src/lib/jats.ts:1967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1967) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1969) +Defined in: [libs/jast/jast/src/lib/jats.ts:1969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1969) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1971) +Defined in: [libs/jast/jast/src/lib/jats.ts:1971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1971) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1973) +Defined in: [libs/jast/jast/src/lib/jats.ts:1973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1973) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1975) +Defined in: [libs/jast/jast/src/lib/jats.ts:1975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1975) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1977) +Defined in: [libs/jast/jast/src/lib/jats.ts:1977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1977) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1979) +Defined in: [libs/jast/jast/src/lib/jats.ts:1979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1979) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1981) +Defined in: [libs/jast/jast/src/lib/jats.ts:1981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1981) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1983) +Defined in: [libs/jast/jast/src/lib/jats.ts:1983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1983) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1985) +Defined in: [libs/jast/jast/src/lib/jats.ts:1985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1985) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1987) +Defined in: [libs/jast/jast/src/lib/jats.ts:1987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1987) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1989) +Defined in: [libs/jast/jast/src/lib/jats.ts:1989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1989) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1991) +Defined in: [libs/jast/jast/src/lib/jats.ts:1991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1991) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1993) +Defined in: [libs/jast/jast/src/lib/jats.ts:1993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1993) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1995) +Defined in: [libs/jast/jast/src/lib/jats.ts:1995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1995) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1997) +Defined in: [libs/jast/jast/src/lib/jats.ts:1997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1997) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:1999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1999) +Defined in: [libs/jast/jast/src/lib/jats.ts:1999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L1999) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2001) +Defined in: [libs/jast/jast/src/lib/jats.ts:2001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2001) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2003) +Defined in: [libs/jast/jast/src/lib/jats.ts:2003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2003) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2005) +Defined in: [libs/jast/jast/src/lib/jats.ts:2005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2005) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2007) +Defined in: [libs/jast/jast/src/lib/jats.ts:2007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2007) -*** +--- ### `ChemStruct` @@ -7660,7 +7660,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ChemStruct** +- [`Node`](modules.md#node).**ChemStruct** #### Properties @@ -7678,19 +7678,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2013) +Defined in: [libs/jast/jast/src/lib/jats.ts:2013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2013) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ChemStructChildrenMap`](modules.md#chemstructchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2019) +Defined in: [libs/jast/jast/src/lib/jats.ts:2019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2019) ##### `data?` @@ -7700,13 +7700,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"chemStruct"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2012) +Defined in: [libs/jast/jast/src/lib/jats.ts:2012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2012) ##### `position?` @@ -7717,7 +7717,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -7727,9 +7727,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2011) +Defined in: [libs/jast/jast/src/lib/jats.ts:2011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2011) -*** +--- ### `ChemStructChildrenMap` @@ -7739,213 +7739,213 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2011](https://github.com/TrialAndEr > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2025) +Defined in: [libs/jast/jast/src/lib/jats.ts:2025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2025) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2027) +Defined in: [libs/jast/jast/src/lib/jats.ts:2027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2027) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2029) +Defined in: [libs/jast/jast/src/lib/jats.ts:2029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2029) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2031](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2031) +Defined in: [libs/jast/jast/src/lib/jats.ts:2031](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2031) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2033) +Defined in: [libs/jast/jast/src/lib/jats.ts:2033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2033) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2035) +Defined in: [libs/jast/jast/src/lib/jats.ts:2035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2035) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2037) +Defined in: [libs/jast/jast/src/lib/jats.ts:2037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2037) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2039](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2039) +Defined in: [libs/jast/jast/src/lib/jats.ts:2039](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2039) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2041) +Defined in: [libs/jast/jast/src/lib/jats.ts:2041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2041) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2043](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2043) +Defined in: [libs/jast/jast/src/lib/jats.ts:2043](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2043) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2045) +Defined in: [libs/jast/jast/src/lib/jats.ts:2045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2045) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2047) +Defined in: [libs/jast/jast/src/lib/jats.ts:2047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2047) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2049) +Defined in: [libs/jast/jast/src/lib/jats.ts:2049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2049) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2051](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2051) +Defined in: [libs/jast/jast/src/lib/jats.ts:2051](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2051) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2053) +Defined in: [libs/jast/jast/src/lib/jats.ts:2053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2053) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2055](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2055) +Defined in: [libs/jast/jast/src/lib/jats.ts:2055](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2055) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2057) +Defined in: [libs/jast/jast/src/lib/jats.ts:2057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2057) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2059) +Defined in: [libs/jast/jast/src/lib/jats.ts:2059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2059) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2061) +Defined in: [libs/jast/jast/src/lib/jats.ts:2061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2061) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2063) +Defined in: [libs/jast/jast/src/lib/jats.ts:2063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2063) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2065) +Defined in: [libs/jast/jast/src/lib/jats.ts:2065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2065) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2067) +Defined in: [libs/jast/jast/src/lib/jats.ts:2067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2067) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2069) +Defined in: [libs/jast/jast/src/lib/jats.ts:2069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2069) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2071) +Defined in: [libs/jast/jast/src/lib/jats.ts:2071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2071) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2073](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2073) +Defined in: [libs/jast/jast/src/lib/jats.ts:2073](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2073) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2075) +Defined in: [libs/jast/jast/src/lib/jats.ts:2075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2075) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2077) +Defined in: [libs/jast/jast/src/lib/jats.ts:2077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2077) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2079](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2079) +Defined in: [libs/jast/jast/src/lib/jats.ts:2079](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2079) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2081](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2081) +Defined in: [libs/jast/jast/src/lib/jats.ts:2081](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2081) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2083](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2083) +Defined in: [libs/jast/jast/src/lib/jats.ts:2083](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2083) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2085](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2085) +Defined in: [libs/jast/jast/src/lib/jats.ts:2085](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2085) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2023](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2023) +Defined in: [libs/jast/jast/src/lib/jats.ts:2023](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2023) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2087](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2087) +Defined in: [libs/jast/jast/src/lib/jats.ts:2087](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2087) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2089](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2089) +Defined in: [libs/jast/jast/src/lib/jats.ts:2089](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2089) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2091](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2091) +Defined in: [libs/jast/jast/src/lib/jats.ts:2091](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2091) -*** +--- ### `ChemStructwrap` @@ -7953,7 +7953,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ChemStructwrap** +- [`Node`](modules.md#node).**ChemStructwrap** #### Properties @@ -7972,20 +7972,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------------------------------ | +| `id`? | `string` | | `orientation`? | `ChemStructwrapTypeOrientation` | -| `position`? | `ChemStructwrapTypePosition` | -| `specificUse`? | `string` | +| `position`? | `ChemStructwrapTypePosition` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2097](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2097) +Defined in: [libs/jast/jast/src/lib/jats.ts:2097](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2097) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ChemStructwrapChildrenMap`](modules.md#chemstructwrapchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2104) +Defined in: [libs/jast/jast/src/lib/jats.ts:2104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2104) ##### `data?` @@ -7995,13 +7995,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"chemStructwrap"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2096) +Defined in: [libs/jast/jast/src/lib/jats.ts:2096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2096) ##### `position?` @@ -8012,7 +8012,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -8022,9 +8022,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2095](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2095) +Defined in: [libs/jast/jast/src/lib/jats.ts:2095](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2095) -*** +--- ### `ChemStructwrapChildrenMap` @@ -8034,129 +8034,129 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2095](https://github.com/TrialAndEr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2109) +Defined in: [libs/jast/jast/src/lib/jats.ts:2109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2109) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2111) +Defined in: [libs/jast/jast/src/lib/jats.ts:2111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2111) ##### `alternatives` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2113) +Defined in: [libs/jast/jast/src/lib/jats.ts:2113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2113) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2115) +Defined in: [libs/jast/jast/src/lib/jats.ts:2115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2115) ##### `caption?` > [`Caption`](modules.md#caption) -Defined in: [libs/jast/jast/src/lib/jats.ts:2117](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2117) +Defined in: [libs/jast/jast/src/lib/jats.ts:2117](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2117) ##### `chemStruct` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2119) +Defined in: [libs/jast/jast/src/lib/jats.ts:2119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2119) ##### `code` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2121) +Defined in: [libs/jast/jast/src/lib/jats.ts:2121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2121) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2123](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2123) +Defined in: [libs/jast/jast/src/lib/jats.ts:2123](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2123) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2125) +Defined in: [libs/jast/jast/src/lib/jats.ts:2125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2125) ##### `graphic` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2127) +Defined in: [libs/jast/jast/src/lib/jats.ts:2127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2127) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2129](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2129) +Defined in: [libs/jast/jast/src/lib/jats.ts:2129](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2129) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:2131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2131) +Defined in: [libs/jast/jast/src/lib/jats.ts:2131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2131) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2133) +Defined in: [libs/jast/jast/src/lib/jats.ts:2133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2133) ##### `media` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2135](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2135) +Defined in: [libs/jast/jast/src/lib/jats.ts:2135](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2135) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2137) +Defined in: [libs/jast/jast/src/lib/jats.ts:2137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2137) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2139](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2139) +Defined in: [libs/jast/jast/src/lib/jats.ts:2139](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2139) ##### `preformat` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2141) +Defined in: [libs/jast/jast/src/lib/jats.ts:2141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2141) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2142) +Defined in: [libs/jast/jast/src/lib/jats.ts:2142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2142) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2108) +Defined in: [libs/jast/jast/src/lib/jats.ts:2108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2108) ##### `textualForm` > [`TextualForm`](modules.md#textualform)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2144) +Defined in: [libs/jast/jast/src/lib/jats.ts:2144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2144) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2146) +Defined in: [libs/jast/jast/src/lib/jats.ts:2146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2146) -*** +--- ### `CitationAlternatives` @@ -8164,7 +8164,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CitationAlternatives** +- [`Node`](modules.md#node).**CitationAlternatives** #### Properties @@ -8180,17 +8180,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2156](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2156) +Defined in: [libs/jast/jast/src/lib/jats.ts:2156](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2156) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CitationAlternativesChildrenMap`](modules.md#citationalternativeschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2160) +Defined in: [libs/jast/jast/src/lib/jats.ts:2160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2160) ##### `data?` @@ -8200,13 +8200,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"citationAlternatives"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2155) +Defined in: [libs/jast/jast/src/lib/jats.ts:2155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2155) ##### `position?` @@ -8217,7 +8217,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -8227,9 +8227,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2154) +Defined in: [libs/jast/jast/src/lib/jats.ts:2154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2154) -*** +--- ### `CitationAlternativesChildrenMap` @@ -8239,27 +8239,27 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2154](https://github.com/TrialAndEr > [`ElementCitation`](modules.md#elementcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2164) +Defined in: [libs/jast/jast/src/lib/jats.ts:2164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2164) ##### `mixedCitation` > [`MixedCitation`](modules.md#mixedcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2166) +Defined in: [libs/jast/jast/src/lib/jats.ts:2166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2166) ##### `nlmCitation` > [`NlmCitation`](modules.md#nlmcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2168) +Defined in: [libs/jast/jast/src/lib/jats.ts:2168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2168) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2170) +Defined in: [libs/jast/jast/src/lib/jats.ts:2170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2170) -*** +--- ### `City` @@ -8267,7 +8267,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**City** +- [`Node`](modules.md#node).**City** #### Properties @@ -8284,18 +8284,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2176) +Defined in: [libs/jast/jast/src/lib/jats.ts:2176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2176) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2181](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2181) +Defined in: [libs/jast/jast/src/lib/jats.ts:2181](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2181) ##### `data?` @@ -8305,13 +8305,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"city"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2175](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2175) +Defined in: [libs/jast/jast/src/lib/jats.ts:2175](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2175) ##### `position?` @@ -8322,7 +8322,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -8332,9 +8332,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2174) +Defined in: [libs/jast/jast/src/lib/jats.ts:2174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2174) -*** +--- ### `CityChildrenMap` @@ -8344,9 +8344,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2174](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2185](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2185) +Defined in: [libs/jast/jast/src/lib/jats.ts:2185](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2185) -*** +--- ### `Code` @@ -8354,7 +8354,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Code** +- [`Node`](modules.md#node).**Code** #### Properties @@ -8379,26 +8379,26 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `codeType`? | `string` | -| `codeVersion`? | `string` | -| `executable`? | `CodeTypeExecutable` | -| `id`? | `string` | -| `language`? | `string` | -| `languageVersion`? | `string` | -| `orientation`? | `CodeTypeOrientation` | -| `platforms`? | `string` | -| `position`? | `CodeTypePosition` | -| `specificUse`? | `string` | +| Member | Type | +| :----------------- | :-------------------- | +| `codeType`? | `string` | +| `codeVersion`? | `string` | +| `executable`? | `CodeTypeExecutable` | +| `id`? | `string` | +| `language`? | `string` | +| `languageVersion`? | `string` | +| `orientation`? | `CodeTypeOrientation` | +| `platforms`? | `string` | +| `position`? | `CodeTypePosition` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2191) +Defined in: [libs/jast/jast/src/lib/jats.ts:2191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2191) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CodeChildrenMap`](modules.md#codechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2205](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2205) +Defined in: [libs/jast/jast/src/lib/jats.ts:2205](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2205) ##### `data?` @@ -8408,13 +8408,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"code"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2190) +Defined in: [libs/jast/jast/src/lib/jats.ts:2190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2190) ##### `position?` @@ -8425,7 +8425,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -8435,9 +8435,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2189) +Defined in: [libs/jast/jast/src/lib/jats.ts:2189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2189) -*** +--- ### `CodeChildrenMap` @@ -8447,177 +8447,177 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2189](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2209](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2209) +Defined in: [libs/jast/jast/src/lib/jats.ts:2209](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2209) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2211) +Defined in: [libs/jast/jast/src/lib/jats.ts:2211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2211) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2213) +Defined in: [libs/jast/jast/src/lib/jats.ts:2213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2213) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2215](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2215) +Defined in: [libs/jast/jast/src/lib/jats.ts:2215](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2215) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2217](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2217) +Defined in: [libs/jast/jast/src/lib/jats.ts:2217](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2217) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2219](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2219) +Defined in: [libs/jast/jast/src/lib/jats.ts:2219](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2219) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2221](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2221) +Defined in: [libs/jast/jast/src/lib/jats.ts:2221](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2221) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2223](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2223) +Defined in: [libs/jast/jast/src/lib/jats.ts:2223](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2223) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2225) +Defined in: [libs/jast/jast/src/lib/jats.ts:2225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2225) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2227) +Defined in: [libs/jast/jast/src/lib/jats.ts:2227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2227) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2229) +Defined in: [libs/jast/jast/src/lib/jats.ts:2229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2229) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2231) +Defined in: [libs/jast/jast/src/lib/jats.ts:2231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2231) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2233) +Defined in: [libs/jast/jast/src/lib/jats.ts:2233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2233) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2235) +Defined in: [libs/jast/jast/src/lib/jats.ts:2235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2235) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2237) +Defined in: [libs/jast/jast/src/lib/jats.ts:2237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2237) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2239) +Defined in: [libs/jast/jast/src/lib/jats.ts:2239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2239) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2241) +Defined in: [libs/jast/jast/src/lib/jats.ts:2241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2241) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2243) +Defined in: [libs/jast/jast/src/lib/jats.ts:2243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2243) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2245) +Defined in: [libs/jast/jast/src/lib/jats.ts:2245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2245) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2247) +Defined in: [libs/jast/jast/src/lib/jats.ts:2247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2247) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2249) +Defined in: [libs/jast/jast/src/lib/jats.ts:2249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2249) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2251) +Defined in: [libs/jast/jast/src/lib/jats.ts:2251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2251) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2253) +Defined in: [libs/jast/jast/src/lib/jats.ts:2253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2253) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2255) +Defined in: [libs/jast/jast/src/lib/jats.ts:2255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2255) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2257) +Defined in: [libs/jast/jast/src/lib/jats.ts:2257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2257) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2259) +Defined in: [libs/jast/jast/src/lib/jats.ts:2259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2259) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2261) +Defined in: [libs/jast/jast/src/lib/jats.ts:2261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2261) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2263) +Defined in: [libs/jast/jast/src/lib/jats.ts:2263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2263) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2265) +Defined in: [libs/jast/jast/src/lib/jats.ts:2265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2265) -*** +--- ### `Col` @@ -8625,7 +8625,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Col** +- [`Node`](modules.md#node).**Col** #### Properties @@ -8648,24 +8648,24 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `align`? | `ColTypeAlign` | -| `char`? | `string` | -| `charoff`? | `string` | -| `id`? | `string` | -| `span`? | `string` | -| `style`? | `string` | -| `valign`? | `ColTypeValign` | -| `width`? | `string` | +| Member | Type | +| :--------- | :-------------- | +| `align`? | `ColTypeAlign` | +| `char`? | `string` | +| `charoff`? | `string` | +| `id`? | `string` | +| `span`? | `string` | +| `style`? | `string` | +| `valign`? | `ColTypeValign` | +| `width`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2429](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2429) +Defined in: [libs/jast/jast/src/lib/jats.ts:2429](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2429) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2440) +Defined in: [libs/jast/jast/src/lib/jats.ts:2440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2440) ##### `data?` @@ -8675,13 +8675,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"col"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2428) +Defined in: [libs/jast/jast/src/lib/jats.ts:2428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2428) ##### `position?` @@ -8692,7 +8692,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -8702,9 +8702,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2427) +Defined in: [libs/jast/jast/src/lib/jats.ts:2427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2427) -*** +--- ### `ColChildrenMap` @@ -8714,9 +8714,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2427](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2444) +Defined in: [libs/jast/jast/src/lib/jats.ts:2444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2444) -*** +--- ### `Colgroup` @@ -8724,7 +8724,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Colgroup** +- [`Node`](modules.md#node).**Colgroup** #### Properties @@ -8747,24 +8747,24 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `align`? | `ColgroupTypeAlign` | -| `char`? | `string` | -| `charoff`? | `string` | -| `id`? | `string` | -| `span`? | `string` | -| `style`? | `string` | -| `valign`? | `ColgroupTypeValign` | -| `width`? | `string` | +| Member | Type | +| :--------- | :------------------- | +| `align`? | `ColgroupTypeAlign` | +| `char`? | `string` | +| `charoff`? | `string` | +| `id`? | `string` | +| `span`? | `string` | +| `style`? | `string` | +| `valign`? | `ColgroupTypeValign` | +| `width`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2277) +Defined in: [libs/jast/jast/src/lib/jats.ts:2277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2277) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ColgroupChildrenMap`](modules.md#colgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2288) +Defined in: [libs/jast/jast/src/lib/jats.ts:2288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2288) ##### `data?` @@ -8774,13 +8774,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"colgroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2276) +Defined in: [libs/jast/jast/src/lib/jats.ts:2276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2276) ##### `position?` @@ -8791,7 +8791,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -8801,9 +8801,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2275) +Defined in: [libs/jast/jast/src/lib/jats.ts:2275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2275) -*** +--- ### `ColgroupChildrenMap` @@ -8813,15 +8813,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2275](https://github.com/TrialAndEr > [`Col`](modules.md#col)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2293](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2293) +Defined in: [libs/jast/jast/src/lib/jats.ts:2293](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2293) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2292](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2292) +Defined in: [libs/jast/jast/src/lib/jats.ts:2292](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2292) -*** +--- ### `Collab` @@ -8829,7 +8829,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Collab** +- [`Node`](modules.md#node).**Collab** #### Properties @@ -8849,21 +8849,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `collabType`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `collabType`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -| `symbol`? | `string` | +| `symbol`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2317) +Defined in: [libs/jast/jast/src/lib/jats.ts:2317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2317) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CollabChildrenMap`](modules.md#collabchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2325) +Defined in: [libs/jast/jast/src/lib/jats.ts:2325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2325) ##### `data?` @@ -8873,13 +8873,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"collab"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2316) +Defined in: [libs/jast/jast/src/lib/jats.ts:2316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2316) ##### `position?` @@ -8890,7 +8890,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -8900,9 +8900,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2315) +Defined in: [libs/jast/jast/src/lib/jats.ts:2315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2315) -*** +--- ### `CollabAlternatives` @@ -8910,7 +8910,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CollabAlternatives** +- [`Node`](modules.md#node).**CollabAlternatives** #### Properties @@ -8926,17 +8926,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2303) +Defined in: [libs/jast/jast/src/lib/jats.ts:2303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2303) ##### `children` > [`Collab`](modules.md#collab)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2307) +Defined in: [libs/jast/jast/src/lib/jats.ts:2307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2307) ##### `data?` @@ -8946,13 +8946,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"collabAlternatives"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2302) +Defined in: [libs/jast/jast/src/lib/jats.ts:2302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2302) ##### `position?` @@ -8963,7 +8963,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -8973,9 +8973,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2301) +Defined in: [libs/jast/jast/src/lib/jats.ts:2301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2301) -*** +--- ### `CollabAlternativesChildrenMap` @@ -8985,9 +8985,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2301](https://github.com/TrialAndEr > [`Collab`](modules.md#collab)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2311) +Defined in: [libs/jast/jast/src/lib/jats.ts:2311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2311) -*** +--- ### `CollabChildrenMap` @@ -8997,291 +8997,291 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2311](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2329) +Defined in: [libs/jast/jast/src/lib/jats.ts:2329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2329) ##### `addrLine?` > [`AddrLine`](modules.md#addrline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2331) +Defined in: [libs/jast/jast/src/lib/jats.ts:2331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2331) ##### `address?` > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2333](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2333) +Defined in: [libs/jast/jast/src/lib/jats.ts:2333](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2333) ##### `aff?` > [`Aff`](modules.md#aff)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2335) +Defined in: [libs/jast/jast/src/lib/jats.ts:2335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2335) ##### `affAlternatives?` > [`AffAlternatives`](modules.md#affalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2337) +Defined in: [libs/jast/jast/src/lib/jats.ts:2337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2337) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2339) +Defined in: [libs/jast/jast/src/lib/jats.ts:2339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2339) ##### `authorComment?` > [`AuthorComment`](modules.md#authorcomment)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2341](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2341) +Defined in: [libs/jast/jast/src/lib/jats.ts:2341](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2341) ##### `bio?` > [`Bio`](modules.md#bio)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2343](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2343) +Defined in: [libs/jast/jast/src/lib/jats.ts:2343](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2343) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2345](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2345) +Defined in: [libs/jast/jast/src/lib/jats.ts:2345](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2345) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2347](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2347) +Defined in: [libs/jast/jast/src/lib/jats.ts:2347](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2347) ##### `city?` > [`City`](modules.md#city)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2349) +Defined in: [libs/jast/jast/src/lib/jats.ts:2349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2349) ##### `contribGroup?` > [`ContribGroup`](modules.md#contribgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2351](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2351) +Defined in: [libs/jast/jast/src/lib/jats.ts:2351](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2351) ##### `country?` > [`Country`](modules.md#country)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2353](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2353) +Defined in: [libs/jast/jast/src/lib/jats.ts:2353](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2353) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2355) +Defined in: [libs/jast/jast/src/lib/jats.ts:2355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2355) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2357](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2357) +Defined in: [libs/jast/jast/src/lib/jats.ts:2357](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2357) ##### `fax?` > [`Fax`](modules.md#fax)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2359) +Defined in: [libs/jast/jast/src/lib/jats.ts:2359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2359) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2361](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2361) +Defined in: [libs/jast/jast/src/lib/jats.ts:2361](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2361) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2363) +Defined in: [libs/jast/jast/src/lib/jats.ts:2363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2363) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2365](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2365) +Defined in: [libs/jast/jast/src/lib/jats.ts:2365](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2365) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2367) +Defined in: [libs/jast/jast/src/lib/jats.ts:2367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2367) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2369) +Defined in: [libs/jast/jast/src/lib/jats.ts:2369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2369) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2371) +Defined in: [libs/jast/jast/src/lib/jats.ts:2371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2371) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2373) +Defined in: [libs/jast/jast/src/lib/jats.ts:2373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2373) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2375) +Defined in: [libs/jast/jast/src/lib/jats.ts:2375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2375) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2377](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2377) +Defined in: [libs/jast/jast/src/lib/jats.ts:2377](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2377) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2379](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2379) +Defined in: [libs/jast/jast/src/lib/jats.ts:2379](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2379) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2381](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2381) +Defined in: [libs/jast/jast/src/lib/jats.ts:2381](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2381) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2383) +Defined in: [libs/jast/jast/src/lib/jats.ts:2383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2383) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2385) +Defined in: [libs/jast/jast/src/lib/jats.ts:2385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2385) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2387) +Defined in: [libs/jast/jast/src/lib/jats.ts:2387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2387) ##### `onBehalfof?` > [`OnBehalfof`](modules.md#onbehalfof)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2389) +Defined in: [libs/jast/jast/src/lib/jats.ts:2389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2389) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2391) +Defined in: [libs/jast/jast/src/lib/jats.ts:2391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2391) ##### `phone?` > [`Phone`](modules.md#phone)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2393) +Defined in: [libs/jast/jast/src/lib/jats.ts:2393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2393) ##### `postalCode?` > [`PostalCode`](modules.md#postalcode)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2395) +Defined in: [libs/jast/jast/src/lib/jats.ts:2395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2395) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2397) +Defined in: [libs/jast/jast/src/lib/jats.ts:2397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2397) ##### `role?` > [`Role`](modules.md#role)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2399) +Defined in: [libs/jast/jast/src/lib/jats.ts:2399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2399) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2401) +Defined in: [libs/jast/jast/src/lib/jats.ts:2401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2401) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2403) +Defined in: [libs/jast/jast/src/lib/jats.ts:2403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2403) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2405) +Defined in: [libs/jast/jast/src/lib/jats.ts:2405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2405) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2407) +Defined in: [libs/jast/jast/src/lib/jats.ts:2407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2407) ##### `state?` > [`State`](modules.md#state)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2409) +Defined in: [libs/jast/jast/src/lib/jats.ts:2409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2409) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2411) +Defined in: [libs/jast/jast/src/lib/jats.ts:2411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2411) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2413) +Defined in: [libs/jast/jast/src/lib/jats.ts:2413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2413) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2415) +Defined in: [libs/jast/jast/src/lib/jats.ts:2415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2415) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2417](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2417) +Defined in: [libs/jast/jast/src/lib/jats.ts:2417](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2417) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2419](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2419) +Defined in: [libs/jast/jast/src/lib/jats.ts:2419](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2419) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2421) +Defined in: [libs/jast/jast/src/lib/jats.ts:2421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2421) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2423](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2423) +Defined in: [libs/jast/jast/src/lib/jats.ts:2423](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2423) -*** +--- ### `Comment` @@ -9289,7 +9289,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Comment** +- [`Node`](modules.md#node).**Comment** #### Properties @@ -9306,18 +9306,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2454) +Defined in: [libs/jast/jast/src/lib/jats.ts:2454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2454) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CommentChildrenMap`](modules.md#commentchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2459](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2459) +Defined in: [libs/jast/jast/src/lib/jats.ts:2459](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2459) ##### `data?` @@ -9327,13 +9327,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"comment"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2453](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2453) +Defined in: [libs/jast/jast/src/lib/jats.ts:2453](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2453) ##### `position?` @@ -9344,7 +9344,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -9354,9 +9354,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2452) +Defined in: [libs/jast/jast/src/lib/jats.ts:2452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2452) -*** +--- ### `CommentChildrenMap` @@ -9366,225 +9366,225 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2452](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2465](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2465) +Defined in: [libs/jast/jast/src/lib/jats.ts:2465](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2465) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2467) +Defined in: [libs/jast/jast/src/lib/jats.ts:2467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2467) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2469](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2469) +Defined in: [libs/jast/jast/src/lib/jats.ts:2469](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2469) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2471) +Defined in: [libs/jast/jast/src/lib/jats.ts:2471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2471) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2473](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2473) +Defined in: [libs/jast/jast/src/lib/jats.ts:2473](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2473) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2475) +Defined in: [libs/jast/jast/src/lib/jats.ts:2475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2475) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2477](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2477) +Defined in: [libs/jast/jast/src/lib/jats.ts:2477](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2477) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2479) +Defined in: [libs/jast/jast/src/lib/jats.ts:2479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2479) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2481) +Defined in: [libs/jast/jast/src/lib/jats.ts:2481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2481) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2483](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2483) +Defined in: [libs/jast/jast/src/lib/jats.ts:2483](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2483) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2485) +Defined in: [libs/jast/jast/src/lib/jats.ts:2485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2485) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2487) +Defined in: [libs/jast/jast/src/lib/jats.ts:2487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2487) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2489](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2489) +Defined in: [libs/jast/jast/src/lib/jats.ts:2489](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2489) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2491) +Defined in: [libs/jast/jast/src/lib/jats.ts:2491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2491) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2493) +Defined in: [libs/jast/jast/src/lib/jats.ts:2493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2493) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2495](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2495) +Defined in: [libs/jast/jast/src/lib/jats.ts:2495](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2495) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2497) +Defined in: [libs/jast/jast/src/lib/jats.ts:2497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2497) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2499) +Defined in: [libs/jast/jast/src/lib/jats.ts:2499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2499) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2501) +Defined in: [libs/jast/jast/src/lib/jats.ts:2501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2501) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2503](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2503) +Defined in: [libs/jast/jast/src/lib/jats.ts:2503](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2503) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2505) +Defined in: [libs/jast/jast/src/lib/jats.ts:2505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2505) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2507) +Defined in: [libs/jast/jast/src/lib/jats.ts:2507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2507) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2509) +Defined in: [libs/jast/jast/src/lib/jats.ts:2509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2509) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2511) +Defined in: [libs/jast/jast/src/lib/jats.ts:2511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2511) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2513) +Defined in: [libs/jast/jast/src/lib/jats.ts:2513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2513) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2515) +Defined in: [libs/jast/jast/src/lib/jats.ts:2515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2515) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2517) +Defined in: [libs/jast/jast/src/lib/jats.ts:2517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2517) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2519](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2519) +Defined in: [libs/jast/jast/src/lib/jats.ts:2519](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2519) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2521) +Defined in: [libs/jast/jast/src/lib/jats.ts:2521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2521) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2523](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2523) +Defined in: [libs/jast/jast/src/lib/jats.ts:2523](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2523) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2525](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2525) +Defined in: [libs/jast/jast/src/lib/jats.ts:2525](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2525) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2527](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2527) +Defined in: [libs/jast/jast/src/lib/jats.ts:2527](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2527) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2529](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2529) +Defined in: [libs/jast/jast/src/lib/jats.ts:2529](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2529) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2463) +Defined in: [libs/jast/jast/src/lib/jats.ts:2463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2463) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2531) +Defined in: [libs/jast/jast/src/lib/jats.ts:2531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2531) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2533) +Defined in: [libs/jast/jast/src/lib/jats.ts:2533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2533) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2535) +Defined in: [libs/jast/jast/src/lib/jats.ts:2535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2535) -*** +--- ### `CompoundKwd` @@ -9592,7 +9592,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CompoundKwd** +- [`Node`](modules.md#node).**CompoundKwd** #### Properties @@ -9613,22 +9613,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `id`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `assigningAuthority`? | `string` | +| `id`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2603) +Defined in: [libs/jast/jast/src/lib/jats.ts:2603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2603) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CompoundKwdChildrenMap`](modules.md#compoundkwdchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2612) +Defined in: [libs/jast/jast/src/lib/jats.ts:2612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2612) ##### `data?` @@ -9638,13 +9638,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"compoundKwd"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2602) +Defined in: [libs/jast/jast/src/lib/jats.ts:2602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2602) ##### `position?` @@ -9655,7 +9655,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -9665,9 +9665,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2601) +Defined in: [libs/jast/jast/src/lib/jats.ts:2601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2601) -*** +--- ### `CompoundKwdChildrenMap` @@ -9677,15 +9677,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2601](https://github.com/TrialAndEr > [`CompoundKwdpart`](modules.md#compoundkwdpart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2618) +Defined in: [libs/jast/jast/src/lib/jats.ts:2618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2618) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2616) +Defined in: [libs/jast/jast/src/lib/jats.ts:2616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2616) -*** +--- ### `CompoundKwdpart` @@ -9693,7 +9693,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CompoundKwdpart** +- [`Node`](modules.md#node).**CompoundKwdpart** #### Properties @@ -9709,17 +9709,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2541) +Defined in: [libs/jast/jast/src/lib/jats.ts:2541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2541) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CompoundKwdpartChildrenMap`](modules.md#compoundkwdpartchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2545) +Defined in: [libs/jast/jast/src/lib/jats.ts:2545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2545) ##### `data?` @@ -9729,13 +9729,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"compoundKwdpart"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2540) +Defined in: [libs/jast/jast/src/lib/jats.ts:2540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2540) ##### `position?` @@ -9746,7 +9746,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -9756,9 +9756,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2539) +Defined in: [libs/jast/jast/src/lib/jats.ts:2539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2539) -*** +--- ### `CompoundKwdpartChildrenMap` @@ -9768,153 +9768,153 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2539](https://github.com/TrialAndEr > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2551) +Defined in: [libs/jast/jast/src/lib/jats.ts:2551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2551) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2553) +Defined in: [libs/jast/jast/src/lib/jats.ts:2553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2553) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2555) +Defined in: [libs/jast/jast/src/lib/jats.ts:2555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2555) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2557) +Defined in: [libs/jast/jast/src/lib/jats.ts:2557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2557) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2559](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2559) +Defined in: [libs/jast/jast/src/lib/jats.ts:2559](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2559) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2561) +Defined in: [libs/jast/jast/src/lib/jats.ts:2561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2561) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2563) +Defined in: [libs/jast/jast/src/lib/jats.ts:2563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2563) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2565) +Defined in: [libs/jast/jast/src/lib/jats.ts:2565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2565) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2567) +Defined in: [libs/jast/jast/src/lib/jats.ts:2567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2567) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2569) +Defined in: [libs/jast/jast/src/lib/jats.ts:2569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2569) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2571) +Defined in: [libs/jast/jast/src/lib/jats.ts:2571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2571) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2573) +Defined in: [libs/jast/jast/src/lib/jats.ts:2573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2573) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2575) +Defined in: [libs/jast/jast/src/lib/jats.ts:2575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2575) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2577) +Defined in: [libs/jast/jast/src/lib/jats.ts:2577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2577) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2579) +Defined in: [libs/jast/jast/src/lib/jats.ts:2579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2579) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2581) +Defined in: [libs/jast/jast/src/lib/jats.ts:2581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2581) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2583) +Defined in: [libs/jast/jast/src/lib/jats.ts:2583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2583) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2585) +Defined in: [libs/jast/jast/src/lib/jats.ts:2585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2585) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2587](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2587) +Defined in: [libs/jast/jast/src/lib/jats.ts:2587](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2587) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2589) +Defined in: [libs/jast/jast/src/lib/jats.ts:2589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2589) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2591) +Defined in: [libs/jast/jast/src/lib/jats.ts:2591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2591) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2593) +Defined in: [libs/jast/jast/src/lib/jats.ts:2593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2593) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2549) +Defined in: [libs/jast/jast/src/lib/jats.ts:2549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2549) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2595) +Defined in: [libs/jast/jast/src/lib/jats.ts:2595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2595) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2597) +Defined in: [libs/jast/jast/src/lib/jats.ts:2597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2597) -*** +--- ### `CompoundSubject` @@ -9922,7 +9922,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CompoundSubject** +- [`Node`](modules.md#node).**CompoundSubject** #### Properties @@ -9943,22 +9943,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `id`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `assigningAuthority`? | `string` | +| `id`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2680) +Defined in: [libs/jast/jast/src/lib/jats.ts:2680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2680) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CompoundSubjectChildrenMap`](modules.md#compoundsubjectchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2689](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2689) +Defined in: [libs/jast/jast/src/lib/jats.ts:2689](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2689) ##### `data?` @@ -9968,13 +9968,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"compoundSubject"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2679](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2679) +Defined in: [libs/jast/jast/src/lib/jats.ts:2679](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2679) ##### `position?` @@ -9985,7 +9985,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -9995,9 +9995,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2678) +Defined in: [libs/jast/jast/src/lib/jats.ts:2678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2678) -*** +--- ### `CompoundSubjectChildrenMap` @@ -10007,15 +10007,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2678](https://github.com/TrialAndEr > [`CompoundSubjectpart`](modules.md#compoundsubjectpart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2695](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2695) +Defined in: [libs/jast/jast/src/lib/jats.ts:2695](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2695) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2693](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2693) +Defined in: [libs/jast/jast/src/lib/jats.ts:2693](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2693) -*** +--- ### `CompoundSubjectpart` @@ -10023,7 +10023,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CompoundSubjectpart** +- [`Node`](modules.md#node).**CompoundSubjectpart** #### Properties @@ -10039,17 +10039,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2624) +Defined in: [libs/jast/jast/src/lib/jats.ts:2624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2624) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CompoundSubjectpartChildrenMap`](modules.md#compoundsubjectpartchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2628) +Defined in: [libs/jast/jast/src/lib/jats.ts:2628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2628) ##### `data?` @@ -10059,13 +10059,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"compoundSubjectpart"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2623) +Defined in: [libs/jast/jast/src/lib/jats.ts:2623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2623) ##### `position?` @@ -10076,7 +10076,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -10086,9 +10086,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2622) +Defined in: [libs/jast/jast/src/lib/jats.ts:2622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2622) -*** +--- ### `CompoundSubjectpartChildrenMap` @@ -10098,135 +10098,135 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2622](https://github.com/TrialAndEr > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2634) +Defined in: [libs/jast/jast/src/lib/jats.ts:2634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2634) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2636) +Defined in: [libs/jast/jast/src/lib/jats.ts:2636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2636) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2638) +Defined in: [libs/jast/jast/src/lib/jats.ts:2638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2638) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2640) +Defined in: [libs/jast/jast/src/lib/jats.ts:2640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2640) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2642) +Defined in: [libs/jast/jast/src/lib/jats.ts:2642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2642) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2644) +Defined in: [libs/jast/jast/src/lib/jats.ts:2644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2644) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2646) +Defined in: [libs/jast/jast/src/lib/jats.ts:2646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2646) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2648) +Defined in: [libs/jast/jast/src/lib/jats.ts:2648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2648) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2650) +Defined in: [libs/jast/jast/src/lib/jats.ts:2650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2650) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2652) +Defined in: [libs/jast/jast/src/lib/jats.ts:2652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2652) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2654) +Defined in: [libs/jast/jast/src/lib/jats.ts:2654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2654) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2656) +Defined in: [libs/jast/jast/src/lib/jats.ts:2656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2656) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2658) +Defined in: [libs/jast/jast/src/lib/jats.ts:2658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2658) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2660) +Defined in: [libs/jast/jast/src/lib/jats.ts:2660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2660) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2662) +Defined in: [libs/jast/jast/src/lib/jats.ts:2662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2662) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2664) +Defined in: [libs/jast/jast/src/lib/jats.ts:2664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2664) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2666) +Defined in: [libs/jast/jast/src/lib/jats.ts:2666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2666) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2668) +Defined in: [libs/jast/jast/src/lib/jats.ts:2668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2668) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2670) +Defined in: [libs/jast/jast/src/lib/jats.ts:2670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2670) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2672) +Defined in: [libs/jast/jast/src/lib/jats.ts:2672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2672) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2632) +Defined in: [libs/jast/jast/src/lib/jats.ts:2632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2632) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2674) +Defined in: [libs/jast/jast/src/lib/jats.ts:2674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2674) -*** +--- ### `ConfAcronym` @@ -10234,7 +10234,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ConfAcronym** +- [`Node`](modules.md#node).**ConfAcronym** #### Properties @@ -10251,18 +10251,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2701](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2701) +Defined in: [libs/jast/jast/src/lib/jats.ts:2701](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2701) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2706) +Defined in: [libs/jast/jast/src/lib/jats.ts:2706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2706) ##### `data?` @@ -10272,13 +10272,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"confAcronym"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2700) +Defined in: [libs/jast/jast/src/lib/jats.ts:2700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2700) ##### `position?` @@ -10289,7 +10289,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -10299,9 +10299,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2699](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2699) +Defined in: [libs/jast/jast/src/lib/jats.ts:2699](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2699) -*** +--- ### `ConfAcronymChildrenMap` @@ -10311,9 +10311,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2699](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2710) +Defined in: [libs/jast/jast/src/lib/jats.ts:2710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2710) -*** +--- ### `ConfDate` @@ -10321,7 +10321,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ConfDate** +- [`Node`](modules.md#node).**ConfDate** #### Properties @@ -10340,20 +10340,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `calendar`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `calendar`? | `string` | +| `id`? | `string` | | `iso8601Date`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2716) +Defined in: [libs/jast/jast/src/lib/jats.ts:2716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2716) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2723](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2723) +Defined in: [libs/jast/jast/src/lib/jats.ts:2723](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2723) ##### `data?` @@ -10363,13 +10363,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"confDate"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2715](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2715) +Defined in: [libs/jast/jast/src/lib/jats.ts:2715](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2715) ##### `position?` @@ -10380,7 +10380,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -10390,9 +10390,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2714) +Defined in: [libs/jast/jast/src/lib/jats.ts:2714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2714) -*** +--- ### `ConfDateChildrenMap` @@ -10402,9 +10402,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2714](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2727](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2727) +Defined in: [libs/jast/jast/src/lib/jats.ts:2727](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2727) -*** +--- ### `ConfLoc` @@ -10412,7 +10412,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ConfLoc** +- [`Node`](modules.md#node).**ConfLoc** #### Properties @@ -10429,18 +10429,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2763) +Defined in: [libs/jast/jast/src/lib/jats.ts:2763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2763) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ConfLocChildrenMap`](modules.md#conflocchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2768) +Defined in: [libs/jast/jast/src/lib/jats.ts:2768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2768) ##### `data?` @@ -10450,13 +10450,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"confLoc"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2762) +Defined in: [libs/jast/jast/src/lib/jats.ts:2762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2762) ##### `position?` @@ -10467,7 +10467,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -10477,9 +10477,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2761) +Defined in: [libs/jast/jast/src/lib/jats.ts:2761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2761) -*** +--- ### `ConfLocChildrenMap` @@ -10489,63 +10489,63 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2761](https://github.com/TrialAndEr > [`AddrLine`](modules.md#addrline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2774) +Defined in: [libs/jast/jast/src/lib/jats.ts:2774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2774) ##### `city?` > [`City`](modules.md#city)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2776) +Defined in: [libs/jast/jast/src/lib/jats.ts:2776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2776) ##### `country?` > [`Country`](modules.md#country)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2778) +Defined in: [libs/jast/jast/src/lib/jats.ts:2778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2778) ##### `fax?` > [`Fax`](modules.md#fax)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2780) +Defined in: [libs/jast/jast/src/lib/jats.ts:2780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2780) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2782) +Defined in: [libs/jast/jast/src/lib/jats.ts:2782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2782) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2784) +Defined in: [libs/jast/jast/src/lib/jats.ts:2784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2784) ##### `phone?` > [`Phone`](modules.md#phone)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2786) +Defined in: [libs/jast/jast/src/lib/jats.ts:2786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2786) ##### `postalCode?` > [`PostalCode`](modules.md#postalcode)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2788) +Defined in: [libs/jast/jast/src/lib/jats.ts:2788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2788) ##### `state?` > [`State`](modules.md#state)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2790) +Defined in: [libs/jast/jast/src/lib/jats.ts:2790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2790) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2772) +Defined in: [libs/jast/jast/src/lib/jats.ts:2772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2772) -*** +--- ### `ConfName` @@ -10553,7 +10553,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ConfName** +- [`Node`](modules.md#node).**ConfName** #### Properties @@ -10570,18 +10570,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2796) +Defined in: [libs/jast/jast/src/lib/jats.ts:2796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2796) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2801](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2801) +Defined in: [libs/jast/jast/src/lib/jats.ts:2801](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2801) ##### `data?` @@ -10591,13 +10591,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"confName"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2795](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2795) +Defined in: [libs/jast/jast/src/lib/jats.ts:2795](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2795) ##### `position?` @@ -10608,7 +10608,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -10618,9 +10618,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2794) +Defined in: [libs/jast/jast/src/lib/jats.ts:2794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2794) -*** +--- ### `ConfNameChildrenMap` @@ -10630,9 +10630,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2794](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2805) +Defined in: [libs/jast/jast/src/lib/jats.ts:2805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2805) -*** +--- ### `ConfNum` @@ -10640,7 +10640,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ConfNum** +- [`Node`](modules.md#node).**ConfNum** #### Properties @@ -10657,18 +10657,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2811](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2811) +Defined in: [libs/jast/jast/src/lib/jats.ts:2811](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2811) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2816) +Defined in: [libs/jast/jast/src/lib/jats.ts:2816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2816) ##### `data?` @@ -10678,13 +10678,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"confNum"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2810) +Defined in: [libs/jast/jast/src/lib/jats.ts:2810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2810) ##### `position?` @@ -10695,7 +10695,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -10705,9 +10705,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2809](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2809) +Defined in: [libs/jast/jast/src/lib/jats.ts:2809](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2809) -*** +--- ### `ConfNumChildrenMap` @@ -10717,9 +10717,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2809](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2820) +Defined in: [libs/jast/jast/src/lib/jats.ts:2820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2820) -*** +--- ### `ConfSponsor` @@ -10727,7 +10727,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ConfSponsor** +- [`Node`](modules.md#node).**ConfSponsor** #### Properties @@ -10744,18 +10744,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2826) +Defined in: [libs/jast/jast/src/lib/jats.ts:2826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2826) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ConfSponsorChildrenMap`](modules.md#confsponsorchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2831](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2831) +Defined in: [libs/jast/jast/src/lib/jats.ts:2831](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2831) ##### `data?` @@ -10765,13 +10765,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"confSponsor"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2825](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2825) +Defined in: [libs/jast/jast/src/lib/jats.ts:2825](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2825) ##### `position?` @@ -10782,7 +10782,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -10792,9 +10792,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2824) +Defined in: [libs/jast/jast/src/lib/jats.ts:2824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2824) -*** +--- ### `ConfSponsorChildrenMap` @@ -10804,21 +10804,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2824](https://github.com/TrialAndEr > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2837](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2837) +Defined in: [libs/jast/jast/src/lib/jats.ts:2837](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2837) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2839](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2839) +Defined in: [libs/jast/jast/src/lib/jats.ts:2839](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2839) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2835](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2835) +Defined in: [libs/jast/jast/src/lib/jats.ts:2835](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2835) -*** +--- ### `ConfTheme` @@ -10826,7 +10826,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ConfTheme** +- [`Node`](modules.md#node).**ConfTheme** #### Properties @@ -10843,18 +10843,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2845](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2845) +Defined in: [libs/jast/jast/src/lib/jats.ts:2845](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2845) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ConfThemeChildrenMap`](modules.md#confthemechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2850) +Defined in: [libs/jast/jast/src/lib/jats.ts:2850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2850) ##### `data?` @@ -10864,13 +10864,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"confTheme"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2844) +Defined in: [libs/jast/jast/src/lib/jats.ts:2844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2844) ##### `position?` @@ -10881,7 +10881,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -10891,9 +10891,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2843](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2843) +Defined in: [libs/jast/jast/src/lib/jats.ts:2843](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2843) -*** +--- ### `ConfThemeChildrenMap` @@ -10903,165 +10903,165 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2843](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2856) +Defined in: [libs/jast/jast/src/lib/jats.ts:2856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2856) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2858) +Defined in: [libs/jast/jast/src/lib/jats.ts:2858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2858) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2860) +Defined in: [libs/jast/jast/src/lib/jats.ts:2860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2860) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2862) +Defined in: [libs/jast/jast/src/lib/jats.ts:2862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2862) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2864) +Defined in: [libs/jast/jast/src/lib/jats.ts:2864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2864) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2866) +Defined in: [libs/jast/jast/src/lib/jats.ts:2866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2866) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2868) +Defined in: [libs/jast/jast/src/lib/jats.ts:2868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2868) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2870) +Defined in: [libs/jast/jast/src/lib/jats.ts:2870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2870) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2872) +Defined in: [libs/jast/jast/src/lib/jats.ts:2872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2872) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2874) +Defined in: [libs/jast/jast/src/lib/jats.ts:2874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2874) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2876) +Defined in: [libs/jast/jast/src/lib/jats.ts:2876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2876) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2878) +Defined in: [libs/jast/jast/src/lib/jats.ts:2878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2878) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2880) +Defined in: [libs/jast/jast/src/lib/jats.ts:2880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2880) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2882) +Defined in: [libs/jast/jast/src/lib/jats.ts:2882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2882) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2884) +Defined in: [libs/jast/jast/src/lib/jats.ts:2884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2884) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2886) +Defined in: [libs/jast/jast/src/lib/jats.ts:2886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2886) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2888) +Defined in: [libs/jast/jast/src/lib/jats.ts:2888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2888) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2890) +Defined in: [libs/jast/jast/src/lib/jats.ts:2890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2890) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2892) +Defined in: [libs/jast/jast/src/lib/jats.ts:2892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2892) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2894) +Defined in: [libs/jast/jast/src/lib/jats.ts:2894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2894) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2896) +Defined in: [libs/jast/jast/src/lib/jats.ts:2896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2896) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2898) +Defined in: [libs/jast/jast/src/lib/jats.ts:2898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2898) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2900) +Defined in: [libs/jast/jast/src/lib/jats.ts:2900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2900) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2902) +Defined in: [libs/jast/jast/src/lib/jats.ts:2902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2902) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2904) +Defined in: [libs/jast/jast/src/lib/jats.ts:2904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2904) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2854) +Defined in: [libs/jast/jast/src/lib/jats.ts:2854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2854) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2906) +Defined in: [libs/jast/jast/src/lib/jats.ts:2906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2906) -*** +--- ### `Conference` @@ -11069,7 +11069,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Conference** +- [`Node`](modules.md#node).**Conference** #### Properties @@ -11087,19 +11087,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2733](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2733) +Defined in: [libs/jast/jast/src/lib/jats.ts:2733](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2733) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ConferenceChildrenMap`](modules.md#conferencechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2739) +Defined in: [libs/jast/jast/src/lib/jats.ts:2739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2739) ##### `data?` @@ -11109,13 +11109,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"conference"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2732) +Defined in: [libs/jast/jast/src/lib/jats.ts:2732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2732) ##### `position?` @@ -11126,7 +11126,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -11136,9 +11136,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2731](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2731) +Defined in: [libs/jast/jast/src/lib/jats.ts:2731](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2731) -*** +--- ### `ConferenceChildrenMap` @@ -11148,51 +11148,51 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2731](https://github.com/TrialAndEr > [`ConfAcronym`](modules.md#confacronym)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2745) +Defined in: [libs/jast/jast/src/lib/jats.ts:2745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2745) ##### `confDate` > [`ConfDate`](modules.md#confdate) -Defined in: [libs/jast/jast/src/lib/jats.ts:2747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2747) +Defined in: [libs/jast/jast/src/lib/jats.ts:2747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2747) ##### `confLoc?` > [`ConfLoc`](modules.md#confloc) -Defined in: [libs/jast/jast/src/lib/jats.ts:2749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2749) +Defined in: [libs/jast/jast/src/lib/jats.ts:2749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2749) ##### `confName` > [`ConfName`](modules.md#confname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2751) +Defined in: [libs/jast/jast/src/lib/jats.ts:2751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2751) ##### `confNum?` > [`ConfNum`](modules.md#confnum) -Defined in: [libs/jast/jast/src/lib/jats.ts:2753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2753) +Defined in: [libs/jast/jast/src/lib/jats.ts:2753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2753) ##### `confSponsor?` > [`ConfSponsor`](modules.md#confsponsor)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2755) +Defined in: [libs/jast/jast/src/lib/jats.ts:2755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2755) ##### `confTheme?` > [`ConfTheme`](modules.md#conftheme) -Defined in: [libs/jast/jast/src/lib/jats.ts:2757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2757) +Defined in: [libs/jast/jast/src/lib/jats.ts:2757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2757) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2743](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2743) +Defined in: [libs/jast/jast/src/lib/jats.ts:2743](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2743) -*** +--- ### `Contrib` @@ -11200,7 +11200,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Contrib** +- [`Node`](modules.md#node).**Contrib** #### Properties @@ -11223,24 +11223,24 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `contribType`? | `string` | -| `corresp`? | `ContribTypeCorresp` | -| `deceased`? | `ContribTypeDeceased` | +| Member | Type | +| :-------------- | :------------------------ | +| `contribType`? | `string` | +| `corresp`? | `ContribTypeCorresp` | +| `deceased`? | `ContribTypeDeceased` | | `equalContrib`? | `ContribTypeEqualContrib` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `rid`? | `string` | -| `specificUse`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `rid`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2970](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2970) +Defined in: [libs/jast/jast/src/lib/jats.ts:2970](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2970) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ContribChildrenMap`](modules.md#contribchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2982](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2982) +Defined in: [libs/jast/jast/src/lib/jats.ts:2982](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2982) ##### `data?` @@ -11250,13 +11250,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"contrib"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2969) +Defined in: [libs/jast/jast/src/lib/jats.ts:2969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2969) ##### `position?` @@ -11267,7 +11267,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -11277,9 +11277,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2968](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2968) +Defined in: [libs/jast/jast/src/lib/jats.ts:2968](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2968) -*** +--- ### `ContribChildrenMap` @@ -11289,117 +11289,117 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2968](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2986) +Defined in: [libs/jast/jast/src/lib/jats.ts:2986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2986) ##### `aff?` > [`Aff`](modules.md#aff)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2988) +Defined in: [libs/jast/jast/src/lib/jats.ts:2988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2988) ##### `affAlternatives?` > [`AffAlternatives`](modules.md#affalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2990](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2990) +Defined in: [libs/jast/jast/src/lib/jats.ts:2990](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2990) ##### `anonymous?` > [`Anonymous`](modules.md#anonymous)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2992](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2992) +Defined in: [libs/jast/jast/src/lib/jats.ts:2992](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2992) ##### `authorComment?` > [`AuthorComment`](modules.md#authorcomment)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2994) +Defined in: [libs/jast/jast/src/lib/jats.ts:2994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2994) ##### `bio?` > [`Bio`](modules.md#bio)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2996) +Defined in: [libs/jast/jast/src/lib/jats.ts:2996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2996) ##### `collab?` > [`Collab`](modules.md#collab)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2998) +Defined in: [libs/jast/jast/src/lib/jats.ts:2998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2998) ##### `collabAlternatives?` > [`CollabAlternatives`](modules.md#collabalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3000) +Defined in: [libs/jast/jast/src/lib/jats.ts:3000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3000) ##### `contribId?` > [`ContribId`](modules.md#contribid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3002) +Defined in: [libs/jast/jast/src/lib/jats.ts:3002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3002) ##### `degrees?` > [`Degrees`](modules.md#degrees)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3004) +Defined in: [libs/jast/jast/src/lib/jats.ts:3004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3004) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3006) +Defined in: [libs/jast/jast/src/lib/jats.ts:3006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3006) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3008) +Defined in: [libs/jast/jast/src/lib/jats.ts:3008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3008) ##### `name?` > [`Name`](modules.md#name)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3010) +Defined in: [libs/jast/jast/src/lib/jats.ts:3010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3010) ##### `nameAlternatives?` > [`NameAlternatives`](modules.md#namealternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3012) +Defined in: [libs/jast/jast/src/lib/jats.ts:3012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3012) ##### `onBehalfof?` > [`OnBehalfof`](modules.md#onbehalfof)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3014) +Defined in: [libs/jast/jast/src/lib/jats.ts:3014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3014) ##### `role?` > [`Role`](modules.md#role)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3016) +Defined in: [libs/jast/jast/src/lib/jats.ts:3016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3016) ##### `stringName?` > [`StringName`](modules.md#stringname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3018) +Defined in: [libs/jast/jast/src/lib/jats.ts:3018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3018) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3020) +Defined in: [libs/jast/jast/src/lib/jats.ts:3020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3020) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3022) +Defined in: [libs/jast/jast/src/lib/jats.ts:3022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3022) -*** +--- ### `ContribGroup` @@ -11407,7 +11407,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ContribGroup** +- [`Node`](modules.md#node).**ContribGroup** #### Properties @@ -11425,19 +11425,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------------- | :------- | | `contentType`? | `string` | -| `id`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2912) +Defined in: [libs/jast/jast/src/lib/jats.ts:2912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2912) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ContribGroupChildrenMap`](modules.md#contribgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2918) +Defined in: [libs/jast/jast/src/lib/jats.ts:2918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2918) ##### `data?` @@ -11447,13 +11447,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"contribGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2911](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2911) +Defined in: [libs/jast/jast/src/lib/jats.ts:2911](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2911) ##### `position?` @@ -11464,7 +11464,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -11474,9 +11474,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2910) +Defined in: [libs/jast/jast/src/lib/jats.ts:2910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2910) -*** +--- ### `ContribGroupChildrenMap` @@ -11486,75 +11486,75 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2910](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2922) +Defined in: [libs/jast/jast/src/lib/jats.ts:2922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2922) ##### `aff?` > [`Aff`](modules.md#aff)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2924) +Defined in: [libs/jast/jast/src/lib/jats.ts:2924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2924) ##### `affAlternatives?` > [`AffAlternatives`](modules.md#affalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2926) +Defined in: [libs/jast/jast/src/lib/jats.ts:2926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2926) ##### `authorComment?` > [`AuthorComment`](modules.md#authorcomment)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2928) +Defined in: [libs/jast/jast/src/lib/jats.ts:2928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2928) ##### `bio?` > [`Bio`](modules.md#bio)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2930) +Defined in: [libs/jast/jast/src/lib/jats.ts:2930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2930) ##### `contrib` > [`Contrib`](modules.md#contrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2932) +Defined in: [libs/jast/jast/src/lib/jats.ts:2932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2932) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2934) +Defined in: [libs/jast/jast/src/lib/jats.ts:2934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2934) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2936) +Defined in: [libs/jast/jast/src/lib/jats.ts:2936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2936) ##### `onBehalfof?` > [`OnBehalfof`](modules.md#onbehalfof)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2938](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2938) +Defined in: [libs/jast/jast/src/lib/jats.ts:2938](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2938) ##### `role?` > [`Role`](modules.md#role)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2940) +Defined in: [libs/jast/jast/src/lib/jats.ts:2940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2940) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2942) +Defined in: [libs/jast/jast/src/lib/jats.ts:2942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2942) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2944) +Defined in: [libs/jast/jast/src/lib/jats.ts:2944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2944) -*** +--- ### `ContribId` @@ -11562,7 +11562,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ContribId** +- [`Node`](modules.md#node).**ContribId** #### Properties @@ -11582,21 +11582,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `authenticated`? | `ContribIdTypeAuthenticated` | -| `contribIdtype`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | +| Member | Type | +| :-------------------- | :--------------------------- | +| `assigningAuthority`? | `string` | +| `authenticated`? | `ContribIdTypeAuthenticated` | +| `contribIdtype`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:2950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2950) +Defined in: [libs/jast/jast/src/lib/jats.ts:2950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2950) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:2958](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2958) +Defined in: [libs/jast/jast/src/lib/jats.ts:2958](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2958) ##### `data?` @@ -11606,13 +11606,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"contribId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:2949](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2949) +Defined in: [libs/jast/jast/src/lib/jats.ts:2949](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2949) ##### `position?` @@ -11623,7 +11623,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -11633,9 +11633,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:2948](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2948) +Defined in: [libs/jast/jast/src/lib/jats.ts:2948](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2948) -*** +--- ### `ContribIdChildrenMap` @@ -11645,9 +11645,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:2948](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:2962](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2962) +Defined in: [libs/jast/jast/src/lib/jats.ts:2962](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L2962) -*** +--- ### `ContributedResourcegroup` @@ -11655,7 +11655,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ContributedResourcegroup** +- [`Node`](modules.md#node).**ContributedResourcegroup** #### Properties @@ -11673,19 +11673,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :-------------- | :------- | +| `id`? | `string` | | `resourceType`? | `string` | -| `specificUse`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3034) +Defined in: [libs/jast/jast/src/lib/jats.ts:3034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3034) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ContributedResourcegroupChildrenMap`](modules.md#contributedresourcegroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3040](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3040) +Defined in: [libs/jast/jast/src/lib/jats.ts:3040](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3040) ##### `data?` @@ -11695,13 +11695,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"contributedResourcegroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3033) +Defined in: [libs/jast/jast/src/lib/jats.ts:3033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3033) ##### `position?` @@ -11712,7 +11712,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -11722,9 +11722,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3032](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3032) +Defined in: [libs/jast/jast/src/lib/jats.ts:3032](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3032) -*** +--- ### `ContributedResourcegroupChildrenMap` @@ -11734,21 +11734,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3032](https://github.com/TrialAndEr > [`AwardGroup`](modules.md#awardgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3044) +Defined in: [libs/jast/jast/src/lib/jats.ts:3044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3044) ##### `resourceGroup?` > [`ResourceGroup`](modules.md#resourcegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3046) +Defined in: [libs/jast/jast/src/lib/jats.ts:3046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3046) ##### `supportDescription?` > [`SupportDescription`](modules.md#supportdescription)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3048) +Defined in: [libs/jast/jast/src/lib/jats.ts:3048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3048) -*** +--- ### `CopyrightHolder` @@ -11756,7 +11756,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CopyrightHolder** +- [`Node`](modules.md#node).**CopyrightHolder** #### Properties @@ -11773,18 +11773,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3054) +Defined in: [libs/jast/jast/src/lib/jats.ts:3054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3054) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CopyrightHolderChildrenMap`](modules.md#copyrightholderchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3059) +Defined in: [libs/jast/jast/src/lib/jats.ts:3059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3059) ##### `data?` @@ -11794,13 +11794,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"copyrightHolder"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3053) +Defined in: [libs/jast/jast/src/lib/jats.ts:3053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3053) ##### `position?` @@ -11811,7 +11811,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -11821,9 +11821,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3052](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3052) +Defined in: [libs/jast/jast/src/lib/jats.ts:3052](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3052) -*** +--- ### `CopyrightHolderChildrenMap` @@ -11833,33 +11833,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3052](https://github.com/TrialAndEr > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3065) +Defined in: [libs/jast/jast/src/lib/jats.ts:3065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3065) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3067) +Defined in: [libs/jast/jast/src/lib/jats.ts:3067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3067) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3069) +Defined in: [libs/jast/jast/src/lib/jats.ts:3069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3069) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3071) +Defined in: [libs/jast/jast/src/lib/jats.ts:3071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3071) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3063) +Defined in: [libs/jast/jast/src/lib/jats.ts:3063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3063) -*** +--- ### `CopyrightStatement` @@ -11867,7 +11867,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CopyrightStatement** +- [`Node`](modules.md#node).**CopyrightStatement** #### Properties @@ -11884,18 +11884,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3077) +Defined in: [libs/jast/jast/src/lib/jats.ts:3077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3077) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CopyrightStatementChildrenMap`](modules.md#copyrightstatementchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3082) +Defined in: [libs/jast/jast/src/lib/jats.ts:3082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3082) ##### `data?` @@ -11905,13 +11905,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"copyrightStatement"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3076) +Defined in: [libs/jast/jast/src/lib/jats.ts:3076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3076) ##### `position?` @@ -11922,7 +11922,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -11932,9 +11932,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3075) +Defined in: [libs/jast/jast/src/lib/jats.ts:3075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3075) -*** +--- ### `CopyrightStatementChildrenMap` @@ -11944,117 +11944,117 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3075](https://github.com/TrialAndEr > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3088) +Defined in: [libs/jast/jast/src/lib/jats.ts:3088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3088) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3090) +Defined in: [libs/jast/jast/src/lib/jats.ts:3090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3090) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3092) +Defined in: [libs/jast/jast/src/lib/jats.ts:3092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3092) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3094) +Defined in: [libs/jast/jast/src/lib/jats.ts:3094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3094) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3096) +Defined in: [libs/jast/jast/src/lib/jats.ts:3096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3096) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3098) +Defined in: [libs/jast/jast/src/lib/jats.ts:3098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3098) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3100) +Defined in: [libs/jast/jast/src/lib/jats.ts:3100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3100) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3102) +Defined in: [libs/jast/jast/src/lib/jats.ts:3102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3102) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3104) +Defined in: [libs/jast/jast/src/lib/jats.ts:3104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3104) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3106) +Defined in: [libs/jast/jast/src/lib/jats.ts:3106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3106) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3108) +Defined in: [libs/jast/jast/src/lib/jats.ts:3108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3108) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3110) +Defined in: [libs/jast/jast/src/lib/jats.ts:3110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3110) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3112](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3112) +Defined in: [libs/jast/jast/src/lib/jats.ts:3112](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3112) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3114) +Defined in: [libs/jast/jast/src/lib/jats.ts:3114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3114) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3116) +Defined in: [libs/jast/jast/src/lib/jats.ts:3116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3116) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3118) +Defined in: [libs/jast/jast/src/lib/jats.ts:3118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3118) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3086) +Defined in: [libs/jast/jast/src/lib/jats.ts:3086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3086) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3120) +Defined in: [libs/jast/jast/src/lib/jats.ts:3120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3120) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3122) +Defined in: [libs/jast/jast/src/lib/jats.ts:3122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3122) -*** +--- ### `CopyrightYear` @@ -12062,7 +12062,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CopyrightYear** +- [`Node`](modules.md#node).**CopyrightYear** #### Properties @@ -12079,18 +12079,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3128) +Defined in: [libs/jast/jast/src/lib/jats.ts:3128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3128) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3133) +Defined in: [libs/jast/jast/src/lib/jats.ts:3133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3133) ##### `data?` @@ -12100,13 +12100,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"copyrightYear"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3127) +Defined in: [libs/jast/jast/src/lib/jats.ts:3127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3127) ##### `position?` @@ -12117,7 +12117,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -12127,9 +12127,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3126) +Defined in: [libs/jast/jast/src/lib/jats.ts:3126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3126) -*** +--- ### `CopyrightYearChildrenMap` @@ -12139,9 +12139,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3126](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3137) +Defined in: [libs/jast/jast/src/lib/jats.ts:3137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3137) -*** +--- ### `Corresp` @@ -12149,7 +12149,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Corresp** +- [`Node`](modules.md#node).**Corresp** #### Properties @@ -12166,18 +12166,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3143) +Defined in: [libs/jast/jast/src/lib/jats.ts:3143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3143) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CorrespChildrenMap`](modules.md#correspchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3148) +Defined in: [libs/jast/jast/src/lib/jats.ts:3148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3148) ##### `data?` @@ -12187,13 +12187,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"corresp"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3142) +Defined in: [libs/jast/jast/src/lib/jats.ts:3142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3142) ##### `position?` @@ -12204,7 +12204,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -12214,9 +12214,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3141) +Defined in: [libs/jast/jast/src/lib/jats.ts:3141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3141) -*** +--- ### `CorrespChildrenMap` @@ -12226,177 +12226,177 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3141](https://github.com/TrialAndEr > [`AddrLine`](modules.md#addrline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3154) +Defined in: [libs/jast/jast/src/lib/jats.ts:3154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3154) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3156](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3156) +Defined in: [libs/jast/jast/src/lib/jats.ts:3156](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3156) ##### `city?` > [`City`](modules.md#city)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3158) +Defined in: [libs/jast/jast/src/lib/jats.ts:3158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3158) ##### `country?` > [`Country`](modules.md#country)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3160) +Defined in: [libs/jast/jast/src/lib/jats.ts:3160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3160) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3162](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3162) +Defined in: [libs/jast/jast/src/lib/jats.ts:3162](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3162) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3164) +Defined in: [libs/jast/jast/src/lib/jats.ts:3164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3164) ##### `fax?` > [`Fax`](modules.md#fax)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3166) +Defined in: [libs/jast/jast/src/lib/jats.ts:3166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3166) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3168) +Defined in: [libs/jast/jast/src/lib/jats.ts:3168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3168) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3170) +Defined in: [libs/jast/jast/src/lib/jats.ts:3170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3170) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3172) +Defined in: [libs/jast/jast/src/lib/jats.ts:3172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3172) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3174) +Defined in: [libs/jast/jast/src/lib/jats.ts:3174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3174) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3176) +Defined in: [libs/jast/jast/src/lib/jats.ts:3176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3176) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3178) +Defined in: [libs/jast/jast/src/lib/jats.ts:3178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3178) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3180) +Defined in: [libs/jast/jast/src/lib/jats.ts:3180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3180) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3182) +Defined in: [libs/jast/jast/src/lib/jats.ts:3182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3182) ##### `phone?` > [`Phone`](modules.md#phone)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3184) +Defined in: [libs/jast/jast/src/lib/jats.ts:3184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3184) ##### `postalCode?` > [`PostalCode`](modules.md#postalcode)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3186](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3186) +Defined in: [libs/jast/jast/src/lib/jats.ts:3186](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3186) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3188) +Defined in: [libs/jast/jast/src/lib/jats.ts:3188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3188) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3190) +Defined in: [libs/jast/jast/src/lib/jats.ts:3190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3190) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3192) +Defined in: [libs/jast/jast/src/lib/jats.ts:3192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3192) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3194) +Defined in: [libs/jast/jast/src/lib/jats.ts:3194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3194) ##### `state?` > [`State`](modules.md#state)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3196) +Defined in: [libs/jast/jast/src/lib/jats.ts:3196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3196) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3198) +Defined in: [libs/jast/jast/src/lib/jats.ts:3198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3198) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3200) +Defined in: [libs/jast/jast/src/lib/jats.ts:3200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3200) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3202) +Defined in: [libs/jast/jast/src/lib/jats.ts:3202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3202) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3204) +Defined in: [libs/jast/jast/src/lib/jats.ts:3204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3204) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3152) +Defined in: [libs/jast/jast/src/lib/jats.ts:3152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3152) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3206) +Defined in: [libs/jast/jast/src/lib/jats.ts:3206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3206) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3208) +Defined in: [libs/jast/jast/src/lib/jats.ts:3208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3208) -*** +--- ### `Count` @@ -12404,7 +12404,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Count** +- [`Node`](modules.md#node).**Count** #### Properties @@ -12422,19 +12422,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `count` | `string` | +| Member | Type | +| :---------- | :------- | +| `count` | `string` | | `countType` | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3256) +Defined in: [libs/jast/jast/src/lib/jats.ts:3256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3256) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:3261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3261) +Defined in: [libs/jast/jast/src/lib/jats.ts:3261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3261) ##### `data?` @@ -12444,13 +12444,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"count"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3255) +Defined in: [libs/jast/jast/src/lib/jats.ts:3255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3255) ##### `position?` @@ -12461,7 +12461,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -12471,9 +12471,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3254) +Defined in: [libs/jast/jast/src/lib/jats.ts:3254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3254) -*** +--- ### `Country` @@ -12481,7 +12481,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Country** +- [`Node`](modules.md#node).**Country** #### Properties @@ -12499,19 +12499,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `country`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `country`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3214) +Defined in: [libs/jast/jast/src/lib/jats.ts:3214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3214) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3220) +Defined in: [libs/jast/jast/src/lib/jats.ts:3220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3220) ##### `data?` @@ -12521,13 +12521,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"country"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3213) +Defined in: [libs/jast/jast/src/lib/jats.ts:3213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3213) ##### `position?` @@ -12538,7 +12538,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -12548,9 +12548,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3212](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3212) +Defined in: [libs/jast/jast/src/lib/jats.ts:3212](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3212) -*** +--- ### `CountryChildrenMap` @@ -12560,9 +12560,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3212](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3224) +Defined in: [libs/jast/jast/src/lib/jats.ts:3224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3224) -*** +--- ### `Counts` @@ -12570,7 +12570,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Counts** +- [`Node`](modules.md#node).**Counts** #### Properties @@ -12586,17 +12586,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3230) +Defined in: [libs/jast/jast/src/lib/jats.ts:3230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3230) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CountsChildrenMap`](modules.md#countschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3234) +Defined in: [libs/jast/jast/src/lib/jats.ts:3234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3234) ##### `data?` @@ -12606,13 +12606,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"counts"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3229) +Defined in: [libs/jast/jast/src/lib/jats.ts:3229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3229) ##### `position?` @@ -12623,7 +12623,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -12633,9 +12633,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3228) +Defined in: [libs/jast/jast/src/lib/jats.ts:3228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3228) -*** +--- ### `CountsChildrenMap` @@ -12645,45 +12645,45 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3228](https://github.com/TrialAndEr > [`Count`](modules.md#count)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3238) +Defined in: [libs/jast/jast/src/lib/jats.ts:3238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3238) ##### `equationCount?` > [`EquationCount`](modules.md#equationcount) -Defined in: [libs/jast/jast/src/lib/jats.ts:3240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3240) +Defined in: [libs/jast/jast/src/lib/jats.ts:3240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3240) ##### `figCount?` > [`FigCount`](modules.md#figcount) -Defined in: [libs/jast/jast/src/lib/jats.ts:3242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3242) +Defined in: [libs/jast/jast/src/lib/jats.ts:3242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3242) ##### `pageCount?` > [`PageCount`](modules.md#pagecount) -Defined in: [libs/jast/jast/src/lib/jats.ts:3244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3244) +Defined in: [libs/jast/jast/src/lib/jats.ts:3244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3244) ##### `refCount?` > [`RefCount`](modules.md#refcount) -Defined in: [libs/jast/jast/src/lib/jats.ts:3246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3246) +Defined in: [libs/jast/jast/src/lib/jats.ts:3246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3246) ##### `tableCount?` > [`TableCount`](modules.md#tablecount) -Defined in: [libs/jast/jast/src/lib/jats.ts:3248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3248) +Defined in: [libs/jast/jast/src/lib/jats.ts:3248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3248) ##### `wordCount?` > [`WordCount`](modules.md#wordcount) -Defined in: [libs/jast/jast/src/lib/jats.ts:3250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3250) +Defined in: [libs/jast/jast/src/lib/jats.ts:3250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3250) -*** +--- ### `CustomMeta` @@ -12691,7 +12691,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CustomMeta** +- [`Node`](modules.md#node).**CustomMeta** #### Properties @@ -12714,24 +12714,24 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `assigningAuthority`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3284](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3284) +Defined in: [libs/jast/jast/src/lib/jats.ts:3284](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3284) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CustomMetaChildrenMap`](modules.md#custommetachildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3295) +Defined in: [libs/jast/jast/src/lib/jats.ts:3295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3295) ##### `data?` @@ -12741,13 +12741,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"customMeta"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3283) +Defined in: [libs/jast/jast/src/lib/jats.ts:3283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3283) ##### `position?` @@ -12758,7 +12758,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -12768,9 +12768,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3282) +Defined in: [libs/jast/jast/src/lib/jats.ts:3282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3282) -*** +--- ### `CustomMetaChildrenMap` @@ -12780,15 +12780,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3282](https://github.com/TrialAndEr > [`MetaName`](modules.md#metaname) -Defined in: [libs/jast/jast/src/lib/jats.ts:3299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3299) +Defined in: [libs/jast/jast/src/lib/jats.ts:3299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3299) ##### `metaValue` > [`MetaValue`](modules.md#metavalue) -Defined in: [libs/jast/jast/src/lib/jats.ts:3301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3301) +Defined in: [libs/jast/jast/src/lib/jats.ts:3301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3301) -*** +--- ### `CustomMetagroup` @@ -12796,7 +12796,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**CustomMetagroup** +- [`Node`](modules.md#node).**CustomMetagroup** #### Properties @@ -12813,18 +12813,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3267](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3267) +Defined in: [libs/jast/jast/src/lib/jats.ts:3267](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3267) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`CustomMetagroupChildrenMap`](modules.md#custommetagroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3272) +Defined in: [libs/jast/jast/src/lib/jats.ts:3272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3272) ##### `data?` @@ -12834,13 +12834,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"customMetagroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3266) +Defined in: [libs/jast/jast/src/lib/jats.ts:3266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3266) ##### `position?` @@ -12851,7 +12851,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -12861,9 +12861,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3265) +Defined in: [libs/jast/jast/src/lib/jats.ts:3265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3265) -*** +--- ### `CustomMetagroupChildrenMap` @@ -12873,15 +12873,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3265](https://github.com/TrialAndEr > [`CustomMeta`](modules.md#custommeta)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3278) +Defined in: [libs/jast/jast/src/lib/jats.ts:3278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3278) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3276) +Defined in: [libs/jast/jast/src/lib/jats.ts:3276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3276) -*** +--- ### `DataTitle` @@ -12889,7 +12889,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**DataTitle** +- [`Node`](modules.md#node).**DataTitle** #### Properties @@ -12906,18 +12906,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3307) +Defined in: [libs/jast/jast/src/lib/jats.ts:3307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3307) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`DataTitleChildrenMap`](modules.md#datatitlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3312) +Defined in: [libs/jast/jast/src/lib/jats.ts:3312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3312) ##### `data?` @@ -12927,13 +12927,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"dataTitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3306) +Defined in: [libs/jast/jast/src/lib/jats.ts:3306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3306) ##### `position?` @@ -12944,7 +12944,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -12954,9 +12954,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3305) +Defined in: [libs/jast/jast/src/lib/jats.ts:3305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3305) -*** +--- ### `DataTitleChildrenMap` @@ -12966,135 +12966,135 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3305](https://github.com/TrialAndEr > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3318) +Defined in: [libs/jast/jast/src/lib/jats.ts:3318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3318) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3320) +Defined in: [libs/jast/jast/src/lib/jats.ts:3320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3320) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3322) +Defined in: [libs/jast/jast/src/lib/jats.ts:3322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3322) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3324) +Defined in: [libs/jast/jast/src/lib/jats.ts:3324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3324) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3326) +Defined in: [libs/jast/jast/src/lib/jats.ts:3326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3326) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3328) +Defined in: [libs/jast/jast/src/lib/jats.ts:3328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3328) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3330) +Defined in: [libs/jast/jast/src/lib/jats.ts:3330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3330) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3332) +Defined in: [libs/jast/jast/src/lib/jats.ts:3332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3332) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3334) +Defined in: [libs/jast/jast/src/lib/jats.ts:3334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3334) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3336) +Defined in: [libs/jast/jast/src/lib/jats.ts:3336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3336) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3338) +Defined in: [libs/jast/jast/src/lib/jats.ts:3338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3338) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3340) +Defined in: [libs/jast/jast/src/lib/jats.ts:3340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3340) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3342) +Defined in: [libs/jast/jast/src/lib/jats.ts:3342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3342) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3344) +Defined in: [libs/jast/jast/src/lib/jats.ts:3344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3344) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3346) +Defined in: [libs/jast/jast/src/lib/jats.ts:3346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3346) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3348) +Defined in: [libs/jast/jast/src/lib/jats.ts:3348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3348) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3350) +Defined in: [libs/jast/jast/src/lib/jats.ts:3350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3350) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3352) +Defined in: [libs/jast/jast/src/lib/jats.ts:3352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3352) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3354) +Defined in: [libs/jast/jast/src/lib/jats.ts:3354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3354) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3316) +Defined in: [libs/jast/jast/src/lib/jats.ts:3316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3316) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3356) +Defined in: [libs/jast/jast/src/lib/jats.ts:3356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3356) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3358) +Defined in: [libs/jast/jast/src/lib/jats.ts:3358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3358) -*** +--- ### `Date` @@ -13102,7 +13102,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Date** +- [`Node`](modules.md#node).**Date** #### Properties @@ -13123,22 +13123,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `calendar`? | `string` | -| `dateType`? | `string` | -| `id`? | `string` | -| `iso8601Date`? | `string` | +| Member | Type | +| :------------------- | :------- | +| `calendar`? | `string` | +| `dateType`? | `string` | +| `id`? | `string` | +| `iso8601Date`? | `string` | | `publicationFormat`? | `string` | -| `specificUse`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3391) +Defined in: [libs/jast/jast/src/lib/jats.ts:3391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3391) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`DateChildrenMap`](modules.md#datechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3400) +Defined in: [libs/jast/jast/src/lib/jats.ts:3400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3400) ##### `data?` @@ -13148,13 +13148,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"date"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3390) +Defined in: [libs/jast/jast/src/lib/jats.ts:3390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3390) ##### `position?` @@ -13165,7 +13165,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -13175,9 +13175,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3389) +Defined in: [libs/jast/jast/src/lib/jats.ts:3389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3389) -*** +--- ### `DateChildrenMap` @@ -13187,33 +13187,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3389](https://github.com/TrialAndEr > [`Day`](modules.md#day) -Defined in: [libs/jast/jast/src/lib/jats.ts:3404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3404) +Defined in: [libs/jast/jast/src/lib/jats.ts:3404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3404) ##### `era?` > [`Era`](modules.md#era) -Defined in: [libs/jast/jast/src/lib/jats.ts:3406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3406) +Defined in: [libs/jast/jast/src/lib/jats.ts:3406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3406) ##### `month?` > [`Month`](modules.md#month) -Defined in: [libs/jast/jast/src/lib/jats.ts:3408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3408) +Defined in: [libs/jast/jast/src/lib/jats.ts:3408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3408) ##### `season?` > [`Season`](modules.md#season) -Defined in: [libs/jast/jast/src/lib/jats.ts:3410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3410) +Defined in: [libs/jast/jast/src/lib/jats.ts:3410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3410) ##### `year` > [`Year`](modules.md#year) -Defined in: [libs/jast/jast/src/lib/jats.ts:3412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3412) +Defined in: [libs/jast/jast/src/lib/jats.ts:3412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3412) -*** +--- ### `DateIncitation` @@ -13221,7 +13221,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**DateIncitation** +- [`Node`](modules.md#node).**DateIncitation** #### Properties @@ -13240,20 +13240,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `calendar`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `calendar`? | `string` | +| `id`? | `string` | | `iso8601Date`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3364) +Defined in: [libs/jast/jast/src/lib/jats.ts:3364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3364) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`DateIncitationChildrenMap`](modules.md#dateincitationchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3371) +Defined in: [libs/jast/jast/src/lib/jats.ts:3371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3371) ##### `data?` @@ -13263,13 +13263,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"dateIncitation"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3363) +Defined in: [libs/jast/jast/src/lib/jats.ts:3363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3363) ##### `position?` @@ -13280,7 +13280,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -13290,9 +13290,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3362) +Defined in: [libs/jast/jast/src/lib/jats.ts:3362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3362) -*** +--- ### `DateIncitationChildrenMap` @@ -13302,39 +13302,39 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3362](https://github.com/TrialAndEr > [`Day`](modules.md#day)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3377](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3377) +Defined in: [libs/jast/jast/src/lib/jats.ts:3377](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3377) ##### `era?` > [`Era`](modules.md#era)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3379](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3379) +Defined in: [libs/jast/jast/src/lib/jats.ts:3379](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3379) ##### `month?` > [`Month`](modules.md#month)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3381](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3381) +Defined in: [libs/jast/jast/src/lib/jats.ts:3381](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3381) ##### `season?` > [`Season`](modules.md#season)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3383) +Defined in: [libs/jast/jast/src/lib/jats.ts:3383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3383) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3375) +Defined in: [libs/jast/jast/src/lib/jats.ts:3375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3375) ##### `year?` > [`Year`](modules.md#year)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3385) +Defined in: [libs/jast/jast/src/lib/jats.ts:3385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3385) -*** +--- ### `Day` @@ -13342,7 +13342,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Day** +- [`Node`](modules.md#node).**Day** #### Properties @@ -13359,18 +13359,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3418](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3418) +Defined in: [libs/jast/jast/src/lib/jats.ts:3418](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3418) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3423](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3423) +Defined in: [libs/jast/jast/src/lib/jats.ts:3423](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3423) ##### `data?` @@ -13380,13 +13380,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"day"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3417](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3417) +Defined in: [libs/jast/jast/src/lib/jats.ts:3417](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3417) ##### `position?` @@ -13397,7 +13397,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -13407,9 +13407,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3416) +Defined in: [libs/jast/jast/src/lib/jats.ts:3416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3416) -*** +--- ### `DayChildrenMap` @@ -13419,9 +13419,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3416](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3427) +Defined in: [libs/jast/jast/src/lib/jats.ts:3427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3427) -*** +--- ### `Def` @@ -13429,7 +13429,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Def** +- [`Node`](modules.md#node).**Def** #### Properties @@ -13447,19 +13447,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3563) +Defined in: [libs/jast/jast/src/lib/jats.ts:3563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3563) ##### `children` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3569) +Defined in: [libs/jast/jast/src/lib/jats.ts:3569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3569) ##### `data?` @@ -13469,13 +13469,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"def"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3562) +Defined in: [libs/jast/jast/src/lib/jats.ts:3562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3562) ##### `position?` @@ -13486,7 +13486,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -13496,9 +13496,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3561) +Defined in: [libs/jast/jast/src/lib/jats.ts:3561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3561) -*** +--- ### `DefChildrenMap` @@ -13508,9 +13508,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3561](https://github.com/TrialAndEr > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3573) +Defined in: [libs/jast/jast/src/lib/jats.ts:3573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3573) -*** +--- ### `DefHead` @@ -13518,7 +13518,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**DefHead** +- [`Node`](modules.md#node).**DefHead** #### Properties @@ -13534,17 +13534,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3433) +Defined in: [libs/jast/jast/src/lib/jats.ts:3433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3433) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`DefHeadChildrenMap`](modules.md#defheadchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3437) +Defined in: [libs/jast/jast/src/lib/jats.ts:3437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3437) ##### `data?` @@ -13554,13 +13554,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"defHead"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3432) +Defined in: [libs/jast/jast/src/lib/jats.ts:3432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3432) ##### `position?` @@ -13571,7 +13571,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -13581,9 +13581,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3431) +Defined in: [libs/jast/jast/src/lib/jats.ts:3431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3431) -*** +--- ### `DefHeadChildrenMap` @@ -13593,219 +13593,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3431](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3441) +Defined in: [libs/jast/jast/src/lib/jats.ts:3441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3441) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3443](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3443) +Defined in: [libs/jast/jast/src/lib/jats.ts:3443](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3443) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3445) +Defined in: [libs/jast/jast/src/lib/jats.ts:3445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3445) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3447) +Defined in: [libs/jast/jast/src/lib/jats.ts:3447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3447) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3449) +Defined in: [libs/jast/jast/src/lib/jats.ts:3449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3449) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3451) +Defined in: [libs/jast/jast/src/lib/jats.ts:3451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3451) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3453](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3453) +Defined in: [libs/jast/jast/src/lib/jats.ts:3453](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3453) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3455](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3455) +Defined in: [libs/jast/jast/src/lib/jats.ts:3455](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3455) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3457](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3457) +Defined in: [libs/jast/jast/src/lib/jats.ts:3457](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3457) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3459](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3459) +Defined in: [libs/jast/jast/src/lib/jats.ts:3459](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3459) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3461](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3461) +Defined in: [libs/jast/jast/src/lib/jats.ts:3461](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3461) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3463) +Defined in: [libs/jast/jast/src/lib/jats.ts:3463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3463) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3465](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3465) +Defined in: [libs/jast/jast/src/lib/jats.ts:3465](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3465) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3467) +Defined in: [libs/jast/jast/src/lib/jats.ts:3467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3467) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3469](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3469) +Defined in: [libs/jast/jast/src/lib/jats.ts:3469](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3469) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3471) +Defined in: [libs/jast/jast/src/lib/jats.ts:3471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3471) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3473](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3473) +Defined in: [libs/jast/jast/src/lib/jats.ts:3473](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3473) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3475) +Defined in: [libs/jast/jast/src/lib/jats.ts:3475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3475) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3477](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3477) +Defined in: [libs/jast/jast/src/lib/jats.ts:3477](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3477) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3479) +Defined in: [libs/jast/jast/src/lib/jats.ts:3479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3479) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3481) +Defined in: [libs/jast/jast/src/lib/jats.ts:3481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3481) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3483](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3483) +Defined in: [libs/jast/jast/src/lib/jats.ts:3483](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3483) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3485) +Defined in: [libs/jast/jast/src/lib/jats.ts:3485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3485) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3487) +Defined in: [libs/jast/jast/src/lib/jats.ts:3487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3487) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3489](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3489) +Defined in: [libs/jast/jast/src/lib/jats.ts:3489](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3489) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3491) +Defined in: [libs/jast/jast/src/lib/jats.ts:3491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3491) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3493) +Defined in: [libs/jast/jast/src/lib/jats.ts:3493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3493) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3495](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3495) +Defined in: [libs/jast/jast/src/lib/jats.ts:3495](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3495) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3497) +Defined in: [libs/jast/jast/src/lib/jats.ts:3497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3497) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3499) +Defined in: [libs/jast/jast/src/lib/jats.ts:3499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3499) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3501) +Defined in: [libs/jast/jast/src/lib/jats.ts:3501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3501) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3503](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3503) +Defined in: [libs/jast/jast/src/lib/jats.ts:3503](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3503) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3505) +Defined in: [libs/jast/jast/src/lib/jats.ts:3505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3505) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3507) +Defined in: [libs/jast/jast/src/lib/jats.ts:3507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3507) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3509) +Defined in: [libs/jast/jast/src/lib/jats.ts:3509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3509) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3511) +Defined in: [libs/jast/jast/src/lib/jats.ts:3511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3511) -*** +--- ### `DefItem` @@ -13813,7 +13813,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**DefItem** +- [`Node`](modules.md#node).**DefItem** #### Properties @@ -13830,18 +13830,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3517) +Defined in: [libs/jast/jast/src/lib/jats.ts:3517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3517) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`DefItemChildrenMap`](modules.md#defitemchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3522) +Defined in: [libs/jast/jast/src/lib/jats.ts:3522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3522) ##### `data?` @@ -13851,13 +13851,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"defItem"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3516) +Defined in: [libs/jast/jast/src/lib/jats.ts:3516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3516) ##### `position?` @@ -13868,7 +13868,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -13878,9 +13878,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3515) +Defined in: [libs/jast/jast/src/lib/jats.ts:3515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3515) -*** +--- ### `DefItemChildrenMap` @@ -13890,15 +13890,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3515](https://github.com/TrialAndEr > [`Def`](modules.md#def)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3526) +Defined in: [libs/jast/jast/src/lib/jats.ts:3526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3526) ##### `term` > [`Term`](modules.md#term) -Defined in: [libs/jast/jast/src/lib/jats.ts:3528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3528) +Defined in: [libs/jast/jast/src/lib/jats.ts:3528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3528) -*** +--- ### `DefList` @@ -13906,7 +13906,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**DefList** +- [`Node`](modules.md#node).**DefList** #### Properties @@ -13927,22 +13927,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :--------------- | :------- | | `continuedFrom`? | `string` | -| `id`? | `string` | -| `listContent`? | `string` | -| `listType`? | `string` | -| `prefixWord`? | `string` | -| `specificUse`? | `string` | +| `id`? | `string` | +| `listContent`? | `string` | +| `listType`? | `string` | +| `prefixWord`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3534) +Defined in: [libs/jast/jast/src/lib/jats.ts:3534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3534) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`DefListChildrenMap`](modules.md#deflistchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3543) +Defined in: [libs/jast/jast/src/lib/jats.ts:3543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3543) ##### `data?` @@ -13952,13 +13952,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"defList"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3533) +Defined in: [libs/jast/jast/src/lib/jats.ts:3533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3533) ##### `position?` @@ -13969,7 +13969,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -13979,9 +13979,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3532) +Defined in: [libs/jast/jast/src/lib/jats.ts:3532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3532) -*** +--- ### `DefListChildrenMap` @@ -13991,39 +13991,39 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3532](https://github.com/TrialAndEr > [`DefHead`](modules.md#defhead) -Defined in: [libs/jast/jast/src/lib/jats.ts:3547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3547) +Defined in: [libs/jast/jast/src/lib/jats.ts:3547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3547) ##### `defItem?` > [`DefItem`](modules.md#defitem)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3549) +Defined in: [libs/jast/jast/src/lib/jats.ts:3549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3549) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3551) +Defined in: [libs/jast/jast/src/lib/jats.ts:3551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3551) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:3553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3553) +Defined in: [libs/jast/jast/src/lib/jats.ts:3553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3553) ##### `termHead?` > [`TermHead`](modules.md#termhead) -Defined in: [libs/jast/jast/src/lib/jats.ts:3555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3555) +Defined in: [libs/jast/jast/src/lib/jats.ts:3555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3555) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:3557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3557) +Defined in: [libs/jast/jast/src/lib/jats.ts:3557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3557) -*** +--- ### `Degrees` @@ -14031,7 +14031,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Degrees** +- [`Node`](modules.md#node).**Degrees** #### Properties @@ -14048,18 +14048,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3579) +Defined in: [libs/jast/jast/src/lib/jats.ts:3579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3579) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3584) +Defined in: [libs/jast/jast/src/lib/jats.ts:3584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3584) ##### `data?` @@ -14069,13 +14069,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"degrees"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3578](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3578) +Defined in: [libs/jast/jast/src/lib/jats.ts:3578](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3578) ##### `position?` @@ -14086,7 +14086,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -14096,9 +14096,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3577) +Defined in: [libs/jast/jast/src/lib/jats.ts:3577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3577) -*** +--- ### `DegreesChildrenMap` @@ -14108,9 +14108,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3577](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3588) +Defined in: [libs/jast/jast/src/lib/jats.ts:3588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3588) -*** +--- ### `DispFormula` @@ -14118,7 +14118,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**DispFormula** +- [`Node`](modules.md#node).**DispFormula** #### Properties @@ -14135,18 +14135,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3634) +Defined in: [libs/jast/jast/src/lib/jats.ts:3634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3634) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`DispFormulaChildrenMap`](modules.md#dispformulachildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3639](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3639) +Defined in: [libs/jast/jast/src/lib/jats.ts:3639](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3639) ##### `data?` @@ -14156,13 +14156,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"dispFormula"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3633](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3633) +Defined in: [libs/jast/jast/src/lib/jats.ts:3633](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3633) ##### `position?` @@ -14173,7 +14173,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -14183,9 +14183,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3632) +Defined in: [libs/jast/jast/src/lib/jats.ts:3632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3632) -*** +--- ### `DispFormulaChildrenMap` @@ -14195,243 +14195,243 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3632](https://github.com/TrialAndEr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3645](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3645) +Defined in: [libs/jast/jast/src/lib/jats.ts:3645](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3645) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3647](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3647) +Defined in: [libs/jast/jast/src/lib/jats.ts:3647](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3647) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3649](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3649) +Defined in: [libs/jast/jast/src/lib/jats.ts:3649](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3649) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3651](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3651) +Defined in: [libs/jast/jast/src/lib/jats.ts:3651](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3651) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3653](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3653) +Defined in: [libs/jast/jast/src/lib/jats.ts:3653](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3653) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3655) +Defined in: [libs/jast/jast/src/lib/jats.ts:3655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3655) ##### `caption?` > [`Caption`](modules.md#caption)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3657) +Defined in: [libs/jast/jast/src/lib/jats.ts:3657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3657) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3659](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3659) +Defined in: [libs/jast/jast/src/lib/jats.ts:3659](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3659) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3661](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3661) +Defined in: [libs/jast/jast/src/lib/jats.ts:3661](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3661) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3663](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3663) +Defined in: [libs/jast/jast/src/lib/jats.ts:3663](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3663) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3665](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3665) +Defined in: [libs/jast/jast/src/lib/jats.ts:3665](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3665) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3667](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3667) +Defined in: [libs/jast/jast/src/lib/jats.ts:3667](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3667) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3669](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3669) +Defined in: [libs/jast/jast/src/lib/jats.ts:3669](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3669) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3671](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3671) +Defined in: [libs/jast/jast/src/lib/jats.ts:3671](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3671) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3673](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3673) +Defined in: [libs/jast/jast/src/lib/jats.ts:3673](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3673) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3675](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3675) +Defined in: [libs/jast/jast/src/lib/jats.ts:3675](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3675) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3677](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3677) +Defined in: [libs/jast/jast/src/lib/jats.ts:3677](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3677) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3679](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3679) +Defined in: [libs/jast/jast/src/lib/jats.ts:3679](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3679) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3681](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3681) +Defined in: [libs/jast/jast/src/lib/jats.ts:3681](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3681) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3683](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3683) +Defined in: [libs/jast/jast/src/lib/jats.ts:3683](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3683) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3685](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3685) +Defined in: [libs/jast/jast/src/lib/jats.ts:3685](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3685) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3687](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3687) +Defined in: [libs/jast/jast/src/lib/jats.ts:3687](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3687) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3689](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3689) +Defined in: [libs/jast/jast/src/lib/jats.ts:3689](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3689) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3691](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3691) +Defined in: [libs/jast/jast/src/lib/jats.ts:3691](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3691) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3693](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3693) +Defined in: [libs/jast/jast/src/lib/jats.ts:3693](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3693) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3695](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3695) +Defined in: [libs/jast/jast/src/lib/jats.ts:3695](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3695) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3697](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3697) +Defined in: [libs/jast/jast/src/lib/jats.ts:3697](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3697) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3699](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3699) +Defined in: [libs/jast/jast/src/lib/jats.ts:3699](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3699) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3701](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3701) +Defined in: [libs/jast/jast/src/lib/jats.ts:3701](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3701) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3703](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3703) +Defined in: [libs/jast/jast/src/lib/jats.ts:3703](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3703) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3705](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3705) +Defined in: [libs/jast/jast/src/lib/jats.ts:3705](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3705) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3707](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3707) +Defined in: [libs/jast/jast/src/lib/jats.ts:3707](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3707) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3709](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3709) +Defined in: [libs/jast/jast/src/lib/jats.ts:3709](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3709) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3711](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3711) +Defined in: [libs/jast/jast/src/lib/jats.ts:3711](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3711) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3712) +Defined in: [libs/jast/jast/src/lib/jats.ts:3712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3712) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3714) +Defined in: [libs/jast/jast/src/lib/jats.ts:3714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3714) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3716) +Defined in: [libs/jast/jast/src/lib/jats.ts:3716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3716) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3643](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3643) +Defined in: [libs/jast/jast/src/lib/jats.ts:3643](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3643) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3718) +Defined in: [libs/jast/jast/src/lib/jats.ts:3718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3718) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3720) +Defined in: [libs/jast/jast/src/lib/jats.ts:3720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3720) -*** +--- ### `DispFormulagroup` @@ -14439,7 +14439,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**DispFormulagroup** +- [`Node`](modules.md#node).**DispFormulagroup** #### Properties @@ -14456,18 +14456,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3594) +Defined in: [libs/jast/jast/src/lib/jats.ts:3594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3594) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`DispFormulagroupChildrenMap`](modules.md#dispformulagroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3599](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3599) +Defined in: [libs/jast/jast/src/lib/jats.ts:3599](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3599) ##### `data?` @@ -14477,13 +14477,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"dispFormulagroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3593) +Defined in: [libs/jast/jast/src/lib/jats.ts:3593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3593) ##### `position?` @@ -14494,7 +14494,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -14504,9 +14504,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3592) +Defined in: [libs/jast/jast/src/lib/jats.ts:3592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3592) -*** +--- ### `DispFormulagroupChildrenMap` @@ -14516,87 +14516,87 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3592](https://github.com/TrialAndEr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3605) +Defined in: [libs/jast/jast/src/lib/jats.ts:3605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3605) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3607](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3607) +Defined in: [libs/jast/jast/src/lib/jats.ts:3607](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3607) ##### `caption?` > [`Caption`](modules.md#caption) -Defined in: [libs/jast/jast/src/lib/jats.ts:3609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3609) +Defined in: [libs/jast/jast/src/lib/jats.ts:3609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3609) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3611) +Defined in: [libs/jast/jast/src/lib/jats.ts:3611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3611) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3613) +Defined in: [libs/jast/jast/src/lib/jats.ts:3613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3613) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3615) +Defined in: [libs/jast/jast/src/lib/jats.ts:3615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3615) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3617) +Defined in: [libs/jast/jast/src/lib/jats.ts:3617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3617) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3619) +Defined in: [libs/jast/jast/src/lib/jats.ts:3619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3619) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:3621](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3621) +Defined in: [libs/jast/jast/src/lib/jats.ts:3621](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3621) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3623) +Defined in: [libs/jast/jast/src/lib/jats.ts:3623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3623) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3625) +Defined in: [libs/jast/jast/src/lib/jats.ts:3625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3625) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3626) +Defined in: [libs/jast/jast/src/lib/jats.ts:3626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3626) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3603) +Defined in: [libs/jast/jast/src/lib/jats.ts:3603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3603) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3628) +Defined in: [libs/jast/jast/src/lib/jats.ts:3628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3628) -*** +--- ### `DispQuote` @@ -14604,7 +14604,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**DispQuote** +- [`Node`](modules.md#node).**DispQuote** #### Properties @@ -14621,18 +14621,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3726) +Defined in: [libs/jast/jast/src/lib/jats.ts:3726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3726) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`DispQuoteChildrenMap`](modules.md#dispquotechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3731](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3731) +Defined in: [libs/jast/jast/src/lib/jats.ts:3731](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3731) ##### `data?` @@ -14642,13 +14642,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"dispQuote"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3725](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3725) +Defined in: [libs/jast/jast/src/lib/jats.ts:3725](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3725) ##### `position?` @@ -14659,7 +14659,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -14669,9 +14669,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3724) +Defined in: [libs/jast/jast/src/lib/jats.ts:3724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3724) -*** +--- ### `DispQuoteChildrenMap` @@ -14681,231 +14681,231 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3724](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3737](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3737) +Defined in: [libs/jast/jast/src/lib/jats.ts:3737](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3737) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3739) +Defined in: [libs/jast/jast/src/lib/jats.ts:3739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3739) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3741](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3741) +Defined in: [libs/jast/jast/src/lib/jats.ts:3741](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3741) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3743](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3743) +Defined in: [libs/jast/jast/src/lib/jats.ts:3743](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3743) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3745) +Defined in: [libs/jast/jast/src/lib/jats.ts:3745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3745) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3747) +Defined in: [libs/jast/jast/src/lib/jats.ts:3747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3747) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3749) +Defined in: [libs/jast/jast/src/lib/jats.ts:3749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3749) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3751) +Defined in: [libs/jast/jast/src/lib/jats.ts:3751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3751) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3753) +Defined in: [libs/jast/jast/src/lib/jats.ts:3753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3753) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3755) +Defined in: [libs/jast/jast/src/lib/jats.ts:3755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3755) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3757) +Defined in: [libs/jast/jast/src/lib/jats.ts:3757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3757) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3759) +Defined in: [libs/jast/jast/src/lib/jats.ts:3759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3759) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3761) +Defined in: [libs/jast/jast/src/lib/jats.ts:3761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3761) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3763) +Defined in: [libs/jast/jast/src/lib/jats.ts:3763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3763) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3765](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3765) +Defined in: [libs/jast/jast/src/lib/jats.ts:3765](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3765) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3767](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3767) +Defined in: [libs/jast/jast/src/lib/jats.ts:3767](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3767) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3769) +Defined in: [libs/jast/jast/src/lib/jats.ts:3769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3769) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3771](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3771) +Defined in: [libs/jast/jast/src/lib/jats.ts:3771](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3771) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:3773](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3773) +Defined in: [libs/jast/jast/src/lib/jats.ts:3773](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3773) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3775](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3775) +Defined in: [libs/jast/jast/src/lib/jats.ts:3775](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3775) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3777) +Defined in: [libs/jast/jast/src/lib/jats.ts:3777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3777) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3779](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3779) +Defined in: [libs/jast/jast/src/lib/jats.ts:3779](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3779) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3781](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3781) +Defined in: [libs/jast/jast/src/lib/jats.ts:3781](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3781) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3783](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3783) +Defined in: [libs/jast/jast/src/lib/jats.ts:3783](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3783) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3785](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3785) +Defined in: [libs/jast/jast/src/lib/jats.ts:3785](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3785) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3787](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3787) +Defined in: [libs/jast/jast/src/lib/jats.ts:3787](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3787) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3789](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3789) +Defined in: [libs/jast/jast/src/lib/jats.ts:3789](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3789) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3791](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3791) +Defined in: [libs/jast/jast/src/lib/jats.ts:3791](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3791) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3793](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3793) +Defined in: [libs/jast/jast/src/lib/jats.ts:3793](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3793) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3795](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3795) +Defined in: [libs/jast/jast/src/lib/jats.ts:3795](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3795) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3797](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3797) +Defined in: [libs/jast/jast/src/lib/jats.ts:3797](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3797) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3799](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3799) +Defined in: [libs/jast/jast/src/lib/jats.ts:3799](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3799) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3801](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3801) +Defined in: [libs/jast/jast/src/lib/jats.ts:3801](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3801) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3803](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3803) +Defined in: [libs/jast/jast/src/lib/jats.ts:3803](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3803) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3805) +Defined in: [libs/jast/jast/src/lib/jats.ts:3805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3805) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3735](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3735) +Defined in: [libs/jast/jast/src/lib/jats.ts:3735](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3735) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:3807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3807) +Defined in: [libs/jast/jast/src/lib/jats.ts:3807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3807) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3809](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3809) +Defined in: [libs/jast/jast/src/lib/jats.ts:3809](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3809) -*** +--- ### `Edition` @@ -14913,7 +14913,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Edition** +- [`Node`](modules.md#node).**Edition** #### Properties @@ -14931,19 +14931,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `designator`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `designator`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3815](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3815) +Defined in: [libs/jast/jast/src/lib/jats.ts:3815](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3815) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`EditionChildrenMap`](modules.md#editionchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3821](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3821) +Defined in: [libs/jast/jast/src/lib/jats.ts:3821](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3821) ##### `data?` @@ -14953,13 +14953,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"edition"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3814) +Defined in: [libs/jast/jast/src/lib/jats.ts:3814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3814) ##### `position?` @@ -14970,7 +14970,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -14980,9 +14980,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3813](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3813) +Defined in: [libs/jast/jast/src/lib/jats.ts:3813](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3813) -*** +--- ### `EditionChildrenMap` @@ -14992,21 +14992,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3813](https://github.com/TrialAndEr > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3827](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3827) +Defined in: [libs/jast/jast/src/lib/jats.ts:3827](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3827) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3829](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3829) +Defined in: [libs/jast/jast/src/lib/jats.ts:3829](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3829) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:3825](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3825) +Defined in: [libs/jast/jast/src/lib/jats.ts:3825](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3825) -*** +--- ### `Element` @@ -15014,7 +15014,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Element** +- [`Node`](modules.md#node).**Element** #### Properties @@ -15022,13 +15022,13 @@ Syntactic units in unist syntax trees are called nodes. > [`Attributes`](modules.md#attributes) -Defined in: [libs/jast/jast/src/lib/rejour.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L30) +Defined in: [libs/jast/jast/src/lib/rejour.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L30) ##### `children?` > ([`Text`](modules.md#text) | [`Bold`](modules.md#bold) | [`FixedCase`](modules.md#fixedcase) | [`Italic`](modules.md#italic) | [`Monospace`](modules.md#monospace) | [`NamedContent`](modules.md#namedcontent) | [`Overline`](modules.md#overline) | [`Roman`](modules.md#roman) | [`Ruby`](modules.md#ruby) | [`SansSerif`](modules.md#sansserif) | [`Sc`](modules.md#sc) | [`Strike`](modules.md#strike) | [`StyledContent`](modules.md#styledcontent) | [`Sub`](modules.md#sub) | [`Sup`](modules.md#sup) | [`Underline`](modules.md#underline) | [`AbbrevJournaltitle`](modules.md#abbrevjournaltitle) | [`Abbrev`](modules.md#abbrev) | [`Def`](modules.md#def) | [`Abstract`](modules.md#abstract) | [`Label`](modules.md#label) | [`ObjectId`](modules.md#objectid) | [`P`](modules.md#p) | [`Sec`](modules.md#sec) | [`Title`](modules.md#title) | [`AccessDate`](modules.md#accessdate) | [`Ack`](modules.md#ack) | [`KwdGroup`](modules.md#kwdgroup) | [`RefList`](modules.md#reflist) | [`SubjGroup`](modules.md#subjgroup) | [`Address`](modules.md#address) | [`AddrLine`](modules.md#addrline) | [`City`](modules.md#city) | [`Country`](modules.md#country) | [`Email`](modules.md#email) | [`ExtLink`](modules.md#extlink) | [`Fax`](modules.md#fax) | [`Institution`](modules.md#institution) | [`InstitutionWrap`](modules.md#institutionwrap) | [`Phone`](modules.md#phone) | [`PostalCode`](modules.md#postalcode) | [`State`](modules.md#state) | [`Uri`](modules.md#uri) | [`Alternatives`](modules.md#alternatives) | [`ChemStruct`](modules.md#chemstruct) | [`IndexTerm`](modules.md#indexterm) | [`IndexTermrangeend`](modules.md#indextermrangeend) | [`InlineFormula`](modules.md#inlineformula) | [`InlineGraphic`](modules.md#inlinegraphic) | [`InlineMedia`](modules.md#inlinemedia) | [`MilestoneEnd`](modules.md#milestoneend) | [`MilestoneStart`](modules.md#milestonestart) | [`PrivateChar`](modules.md#privatechar) | [`AffAlternatives`](modules.md#affalternatives) | [`Aff`](modules.md#aff) | [`Break`](modules.md#break) | [`Fn`](modules.md#fn) | [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial) | [`RelatedArticle`](modules.md#relatedarticle) | [`RelatedObject`](modules.md#relatedobject) | [`Target`](modules.md#target) | [`Xref`](modules.md#xref) | [`Array`](modules.md#array) | [`Code`](modules.md#code) | [`Graphic`](modules.md#graphic) | [`Media`](modules.md#media) | [`Preformat`](modules.md#preformat) | [`SupplementaryMaterial`](modules.md#supplementarymaterial) | [`Table`](modules.md#table) | [`TexMath`](modules.md#texmath) | [`TextualForm`](modules.md#textualform) | [`AltText`](modules.md#alttext) | [`AltTitle`](modules.md#alttitle) | [`Annotation`](modules.md#annotation) | [`Anonymous`](modules.md#anonymous) | [`AnswerSet`](modules.md#answerset) | [`Answer`](modules.md#answer) | [`Explanation`](modules.md#explanation) | [`Subtitle`](modules.md#subtitle) | [`BlockAlternatives`](modules.md#blockalternatives) | [`BoxedText`](modules.md#boxedtext) | [`ChemStructwrap`](modules.md#chemstructwrap) | [`DefList`](modules.md#deflist) | [`DispFormula`](modules.md#dispformula) | [`DispFormulagroup`](modules.md#dispformulagroup) | [`DispQuote`](modules.md#dispquote) | [`Fig`](modules.md#fig) | [`FigGroup`](modules.md#figgroup) | [`FnGroup`](modules.md#fngroup) | [`Glossary`](modules.md#glossary) | [`List`](modules.md#list) | [`Question`](modules.md#question) | [`QuestionWrap`](modules.md#questionwrap) | [`QuestionWrapgroup`](modules.md#questionwrapgroup) | [`Speech`](modules.md#speech) | [`Statement`](modules.md#statement) | [`TableWrap`](modules.md#tablewrap) | [`TableWrapgroup`](modules.md#tablewrapgroup) | [`VerseGroup`](modules.md#versegroup) | [`AppGroup`](modules.md#appgroup) | [`App`](modules.md#app) | [`Permissions`](modules.md#permissions) | [`SecMeta`](modules.md#secmeta) | [`Attrib`](modules.md#attrib) | [`LongDesc`](modules.md#longdesc) | [`Tbody`](modules.md#tbody) | [`ArticleCategories`](modules.md#articlecategories) | [`SeriesText`](modules.md#seriestext) | [`SeriesTitle`](modules.md#seriestitle) | [`ArticleId`](modules.md#articleid) | [`ArticleMeta`](modules.md#articlemeta) | [`Isbn`](modules.md#isbn) | [`ArticleVersion`](modules.md#articleversion) | [`ArticleVersionalternatives`](modules.md#articleversionalternatives) | [`AuthorNotes`](modules.md#authornotes) | [`Conference`](modules.md#conference) | [`ContribGroup`](modules.md#contribgroup) | [`Counts`](modules.md#counts) | [`CustomMetagroup`](modules.md#custommetagroup) | [`ElocationId`](modules.md#elocationid) | [`Fpage`](modules.md#fpage) | [`FundingGroup`](modules.md#fundinggroup) | [`History`](modules.md#history) | [`Issue`](modules.md#issue) | [`IssueId`](modules.md#issueid) | [`IssuePart`](modules.md#issuepart) | [`IssueSponsor`](modules.md#issuesponsor) | [`IssueTitle`](modules.md#issuetitle) | [`IssueTitlegroup`](modules.md#issuetitlegroup) | [`Lpage`](modules.md#lpage) | [`PageRange`](modules.md#pagerange) | [`Product`](modules.md#product) | [`PubDate`](modules.md#pubdate) | [`PubDatenotavailable`](modules.md#pubdatenotavailable) | [`PubHistory`](modules.md#pubhistory) | [`SelfUri`](modules.md#selfuri) | [`Supplement`](modules.md#supplement) | [`SupportGroup`](modules.md#supportgroup) | [`TitleGroup`](modules.md#titlegroup) | [`TransAbstract`](modules.md#transabstract) | [`Volume`](modules.md#volume) | [`VolumeId`](modules.md#volumeid) | [`VolumeIssuegroup`](modules.md#volumeissuegroup) | [`VolumeSeries`](modules.md#volumeseries) | [`ArticleTitle`](modules.md#articletitle) | [`Article`](modules.md#article) | [`Back`](modules.md#back) | [`Body`](modules.md#body) | [`FloatsGroup`](modules.md#floatsgroup) | [`Front`](modules.md#front) | [`ProcessingMeta`](modules.md#processingmeta) | [`Response`](modules.md#response) | [`SubArticle`](modules.md#subarticle) | [`AuthorComment`](modules.md#authorcomment) | [`Corresp`](modules.md#corresp) | [`AwardDesc`](modules.md#awarddesc) | [`AwardGroup`](modules.md#awardgroup) | [`AwardId`](modules.md#awardid) | [`AwardName`](modules.md#awardname) | [`FundingSource`](modules.md#fundingsource) | [`PrincipalAwardrecipient`](modules.md#principalawardrecipient) | [`PrincipalInvestigator`](modules.md#principalinvestigator) | [`SupportSource`](modules.md#supportsource) | [`Bio`](modules.md#bio) | [`Notes`](modules.md#notes) | [`SigBlock`](modules.md#sigblock) | [`Caption`](modules.md#caption) | [`ChapterTitle`](modules.md#chaptertitle) | [`CitationAlternatives`](modules.md#citationalternatives) | [`ElementCitation`](modules.md#elementcitation) | [`MixedCitation`](modules.md#mixedcitation) | [`NlmCitation`](modules.md#nlmcitation) | [`Colgroup`](modules.md#colgroup) | [`Col`](modules.md#col) | [`CollabAlternatives`](modules.md#collabalternatives) | [`Collab`](modules.md#collab) | [`OnBehalfof`](modules.md#onbehalfof) | [`Role`](modules.md#role) | [`Comment`](modules.md#comment) | [`CompoundKwdpart`](modules.md#compoundkwdpart) | [`CompoundKwd`](modules.md#compoundkwd) | [`CompoundSubjectpart`](modules.md#compoundsubjectpart) | [`CompoundSubject`](modules.md#compoundsubject) | [`ConfAcronym`](modules.md#confacronym) | [`ConfDate`](modules.md#confdate) | [`ConfLoc`](modules.md#confloc) | [`ConfName`](modules.md#confname) | [`ConfNum`](modules.md#confnum) | [`ConfSponsor`](modules.md#confsponsor) | [`ConfTheme`](modules.md#conftheme) | [`Contrib`](modules.md#contrib) | [`ContribId`](modules.md#contribid) | [`Degrees`](modules.md#degrees) | [`Name`](modules.md#name) | [`NameAlternatives`](modules.md#namealternatives) | [`StringName`](modules.md#stringname) | [`ContributedResourcegroup`](modules.md#contributedresourcegroup) | [`ResourceGroup`](modules.md#resourcegroup) | [`SupportDescription`](modules.md#supportdescription) | [`CopyrightHolder`](modules.md#copyrightholder) | [`CopyrightStatement`](modules.md#copyrightstatement) | [`CopyrightYear`](modules.md#copyrightyear) | [`Count`](modules.md#count) | [`EquationCount`](modules.md#equationcount) | [`FigCount`](modules.md#figcount) | [`PageCount`](modules.md#pagecount) | [`RefCount`](modules.md#refcount) | [`TableCount`](modules.md#tablecount) | [`WordCount`](modules.md#wordcount) | [`CustomMeta`](modules.md#custommeta) | [`MetaName`](modules.md#metaname) | [`MetaValue`](modules.md#metavalue) | [`DataTitle`](modules.md#datatitle) | [`DateIncitation`](modules.md#dateincitation) | [`Day`](modules.md#day) | [`Era`](modules.md#era) | [`Month`](modules.md#month) | [`Season`](modules.md#season) | [`Year`](modules.md#year) | [`Date`](modules.md#date) | [`DefHead`](modules.md#defhead) | [`DefItem`](modules.md#defitem) | [`Term`](modules.md#term) | [`TermHead`](modules.md#termhead) | [`Edition`](modules.md#edition) | [`Etal`](modules.md#etal) | [`Gov`](modules.md#gov) | [`Issn`](modules.md#issn) | [`IssnL`](modules.md#issnl) | [`PartTitle`](modules.md#parttitle) | [`Patent`](modules.md#patent) | [`PersonGroup`](modules.md#persongroup) | [`PubId`](modules.md#pubid) | [`PublisherLoc`](modules.md#publisherloc) | [`PublisherName`](modules.md#publishername) | [`Series`](modules.md#series) | [`Size`](modules.md#size) | [`Source`](modules.md#source) | [`Std`](modules.md#std) | [`StringDate`](modules.md#stringdate) | [`TransSource`](modules.md#transsource) | [`TransTitle`](modules.md#transtitle) | [`Version`](modules.md#version) | [`EventDesc`](modules.md#eventdesc) | [`Event`](modules.md#event) | [`ExtendedBy`](modules.md#extendedby) | [`FrontStub`](modules.md#frontstub) | [`JournalMeta`](modules.md#journalmeta) | [`FundingStatement`](modules.md#fundingstatement) | [`OpenAccess`](modules.md#openaccess) | [`GivenNames`](modules.md#givennames) | [`GlyphData`](modules.md#glyphdata) | [`GlyphRef`](modules.md#glyphref) | [`Hr`](modules.md#hr) | [`See`](modules.md#see) | [`SeeAlso`](modules.md#seealso) | [`InstitutionId`](modules.md#institutionid) | [`IssueSubtitle`](modules.md#issuesubtitle) | [`TransTitlegroup`](modules.md#transtitlegroup) | [`JournalId`](modules.md#journalid) | [`JournalTitlegroup`](modules.md#journaltitlegroup) | [`Publisher`](modules.md#publisher) | [`JournalSubtitle`](modules.md#journalsubtitle) | [`JournalTitle`](modules.md#journaltitle) | [`Kwd`](modules.md#kwd) | [`NestedKwd`](modules.md#nestedkwd) | [`LicenseP`](modules.md#licensep) | [`Price`](modules.md#price) | [`License`](modules.md#license) | [`ListItem`](modules.md#listitem) | [`Prefix`](modules.md#prefix) | [`Suffix`](modules.md#suffix) | [`Surname`](modules.md#surname) | [`TimeStamp`](modules.md#timestamp) | [`Note`](modules.md#note) | [`Option`](modules.md#option) | [`OverlineEnd`](modules.md#overlineend) | [`OverlineStart`](modules.md#overlinestart) | [`RestrictedBy`](modules.md#restrictedby) | [`QuestionPreamble`](modules.md#questionpreamble) | [`Rb`](modules.md#rb) | [`Ref`](modules.md#ref) | [`ResourceName`](modules.md#resourcename) | [`ResourceWrap`](modules.md#resourcewrap) | [`ResourceId`](modules.md#resourceid) | [`Rp`](modules.md#rp) | [`Rt`](modules.md#rt) | [`Sig`](modules.md#sig) | [`Speaker`](modules.md#speaker) | [`StdOrganization`](modules.md#stdorganization) | [`StringConf`](modules.md#stringconf) | [`Subject`](modules.md#subject) | [`Tfoot`](modules.md#tfoot) | [`Thead`](modules.md#thead) | [`Tr`](modules.md#tr) | [`TableWrapfoot`](modules.md#tablewrapfoot) | [`Td`](modules.md#td) | [`Th`](modules.md#th) | [`TransSubtitle`](modules.md#transsubtitle) | [`UnderlineEnd`](modules.md#underlineend) | [`UnderlineStart`](modules.md#underlinestart) | [`UnstructuredKwdgroup`](modules.md#unstructuredkwdgroup) | [`VerseLine`](modules.md#verseline) | [`X`](modules.md#x))[] -Defined in: [libs/jast/jast/src/lib/rejour.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L32) +Defined in: [libs/jast/jast/src/lib/rejour.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L32) ##### `data?` @@ -15038,13 +15038,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `string` -Defined in: [libs/jast/jast/src/lib/rejour.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L31) +Defined in: [libs/jast/jast/src/lib/rejour.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L31) ##### `position?` @@ -15055,7 +15055,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -15065,9 +15065,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/rejour.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L29) +Defined in: [libs/jast/jast/src/lib/rejour.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L29) -*** +--- ### `ElementCitation` @@ -15075,7 +15075,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ElementCitation** +- [`Node`](modules.md#node).**ElementCitation** #### Properties @@ -15097,23 +15097,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `publicationFormat`? | `string` | -| `publicationType`? | `string` | -| `publisherType`? | `string` | -| `specificUse`? | `string` | -| `useType`? | `string` | +| `publicationType`? | `string` | +| `publisherType`? | `string` | +| `specificUse`? | `string` | +| `useType`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:3835](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3835) +Defined in: [libs/jast/jast/src/lib/jats.ts:3835](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3835) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ElementCitationChildrenMap`](modules.md#elementcitationchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3845](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3845) +Defined in: [libs/jast/jast/src/lib/jats.ts:3845](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3845) ##### `data?` @@ -15123,13 +15123,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"elementCitation"` -Defined in: [libs/jast/jast/src/lib/jats.ts:3834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3834) +Defined in: [libs/jast/jast/src/lib/jats.ts:3834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3834) ##### `position?` @@ -15140,7 +15140,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -15150,9 +15150,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:3833](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3833) +Defined in: [libs/jast/jast/src/lib/jats.ts:3833](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3833) -*** +--- ### `ElementCitationChildrenMap` @@ -15162,525 +15162,525 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:3833](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3849](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3849) +Defined in: [libs/jast/jast/src/lib/jats.ts:3849](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3849) ##### `alternatives` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3851](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3851) +Defined in: [libs/jast/jast/src/lib/jats.ts:3851](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3851) ##### `annotation` > [`Annotation`](modules.md#annotation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3853](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3853) +Defined in: [libs/jast/jast/src/lib/jats.ts:3853](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3853) ##### `articleTitle` > [`ArticleTitle`](modules.md#articletitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3855](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3855) +Defined in: [libs/jast/jast/src/lib/jats.ts:3855](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3855) ##### `bold` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3857](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3857) +Defined in: [libs/jast/jast/src/lib/jats.ts:3857](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3857) ##### `chapterTitle` > [`ChapterTitle`](modules.md#chaptertitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3859](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3859) +Defined in: [libs/jast/jast/src/lib/jats.ts:3859](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3859) ##### `chemStruct` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3861](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3861) +Defined in: [libs/jast/jast/src/lib/jats.ts:3861](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3861) ##### `collab` > [`Collab`](modules.md#collab)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3863](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3863) +Defined in: [libs/jast/jast/src/lib/jats.ts:3863](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3863) ##### `collabAlternatives` > [`CollabAlternatives`](modules.md#collabalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3865) +Defined in: [libs/jast/jast/src/lib/jats.ts:3865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3865) ##### `comment` > [`Comment`](modules.md#comment)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3867](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3867) +Defined in: [libs/jast/jast/src/lib/jats.ts:3867](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3867) ##### `confAcronym` > [`ConfAcronym`](modules.md#confacronym)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3869](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3869) +Defined in: [libs/jast/jast/src/lib/jats.ts:3869](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3869) ##### `confDate` > [`ConfDate`](modules.md#confdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3871](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3871) +Defined in: [libs/jast/jast/src/lib/jats.ts:3871](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3871) ##### `confLoc` > [`ConfLoc`](modules.md#confloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3873) +Defined in: [libs/jast/jast/src/lib/jats.ts:3873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3873) ##### `confName` > [`ConfName`](modules.md#confname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3875](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3875) +Defined in: [libs/jast/jast/src/lib/jats.ts:3875](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3875) ##### `confSponsor` > [`ConfSponsor`](modules.md#confsponsor)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3877) +Defined in: [libs/jast/jast/src/lib/jats.ts:3877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3877) ##### `dataTitle` > [`DataTitle`](modules.md#datatitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3879) +Defined in: [libs/jast/jast/src/lib/jats.ts:3879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3879) ##### `date` > [`Date`](modules.md#date)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3881) +Defined in: [libs/jast/jast/src/lib/jats.ts:3881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3881) ##### `dateIncitation` > [`DateIncitation`](modules.md#dateincitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3883) +Defined in: [libs/jast/jast/src/lib/jats.ts:3883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3883) ##### `day` > [`Day`](modules.md#day)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3885) +Defined in: [libs/jast/jast/src/lib/jats.ts:3885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3885) ##### `edition` > [`Edition`](modules.md#edition)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3887) +Defined in: [libs/jast/jast/src/lib/jats.ts:3887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3887) ##### `elocationId` > [`ElocationId`](modules.md#elocationid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3889) +Defined in: [libs/jast/jast/src/lib/jats.ts:3889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3889) ##### `email` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3891) +Defined in: [libs/jast/jast/src/lib/jats.ts:3891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3891) ##### `etal` > [`Etal`](modules.md#etal)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3893](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3893) +Defined in: [libs/jast/jast/src/lib/jats.ts:3893](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3893) ##### `extLink` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3895](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3895) +Defined in: [libs/jast/jast/src/lib/jats.ts:3895](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3895) ##### `fixedCase` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3897) +Defined in: [libs/jast/jast/src/lib/jats.ts:3897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3897) ##### `fpage` > [`Fpage`](modules.md#fpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3899](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3899) +Defined in: [libs/jast/jast/src/lib/jats.ts:3899](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3899) ##### `gov` > [`Gov`](modules.md#gov)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3901](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3901) +Defined in: [libs/jast/jast/src/lib/jats.ts:3901](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3901) ##### `indexTerm` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3903](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3903) +Defined in: [libs/jast/jast/src/lib/jats.ts:3903](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3903) ##### `indexTermrangeend` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3905](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3905) +Defined in: [libs/jast/jast/src/lib/jats.ts:3905](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3905) ##### `inlineFormula` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3907](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3907) +Defined in: [libs/jast/jast/src/lib/jats.ts:3907](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3907) ##### `inlineGraphic` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3909](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3909) +Defined in: [libs/jast/jast/src/lib/jats.ts:3909](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3909) ##### `inlineMedia` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3911](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3911) +Defined in: [libs/jast/jast/src/lib/jats.ts:3911](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3911) ##### `institution` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3913](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3913) +Defined in: [libs/jast/jast/src/lib/jats.ts:3913](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3913) ##### `institutionWrap` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3915) +Defined in: [libs/jast/jast/src/lib/jats.ts:3915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3915) ##### `isbn` > [`Isbn`](modules.md#isbn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3917](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3917) +Defined in: [libs/jast/jast/src/lib/jats.ts:3917](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3917) ##### `issn` > [`Issn`](modules.md#issn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3919](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3919) +Defined in: [libs/jast/jast/src/lib/jats.ts:3919](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3919) ##### `issnL` > [`IssnL`](modules.md#issnl)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3921) +Defined in: [libs/jast/jast/src/lib/jats.ts:3921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3921) ##### `issue` > [`Issue`](modules.md#issue)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3923](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3923) +Defined in: [libs/jast/jast/src/lib/jats.ts:3923](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3923) ##### `issueId` > [`IssueId`](modules.md#issueid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3925](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3925) +Defined in: [libs/jast/jast/src/lib/jats.ts:3925](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3925) ##### `issuePart` > [`IssuePart`](modules.md#issuepart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3927](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3927) +Defined in: [libs/jast/jast/src/lib/jats.ts:3927](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3927) ##### `issueTitle` > [`IssueTitle`](modules.md#issuetitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3929](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3929) +Defined in: [libs/jast/jast/src/lib/jats.ts:3929](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3929) ##### `italic` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3931](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3931) +Defined in: [libs/jast/jast/src/lib/jats.ts:3931](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3931) ##### `label` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3933](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3933) +Defined in: [libs/jast/jast/src/lib/jats.ts:3933](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3933) ##### `lpage` > [`Lpage`](modules.md#lpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3935](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3935) +Defined in: [libs/jast/jast/src/lib/jats.ts:3935](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3935) ##### `milestoneEnd` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3937](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3937) +Defined in: [libs/jast/jast/src/lib/jats.ts:3937](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3937) ##### `milestoneStart` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3939](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3939) +Defined in: [libs/jast/jast/src/lib/jats.ts:3939](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3939) ##### `monospace` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3941](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3941) +Defined in: [libs/jast/jast/src/lib/jats.ts:3941](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3941) ##### `month` > [`Month`](modules.md#month)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3943](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3943) +Defined in: [libs/jast/jast/src/lib/jats.ts:3943](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3943) ##### `name` > [`Name`](modules.md#name)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3945](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3945) +Defined in: [libs/jast/jast/src/lib/jats.ts:3945](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3945) ##### `nameAlternatives` > [`NameAlternatives`](modules.md#namealternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3947](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3947) +Defined in: [libs/jast/jast/src/lib/jats.ts:3947](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3947) ##### `namedContent` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3949](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3949) +Defined in: [libs/jast/jast/src/lib/jats.ts:3949](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3949) ##### `objectId` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3951](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3951) +Defined in: [libs/jast/jast/src/lib/jats.ts:3951](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3951) ##### `overline` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3953](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3953) +Defined in: [libs/jast/jast/src/lib/jats.ts:3953](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3953) ##### `pageRange` > [`PageRange`](modules.md#pagerange)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3955) +Defined in: [libs/jast/jast/src/lib/jats.ts:3955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3955) ##### `partTitle` > [`PartTitle`](modules.md#parttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3957](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3957) +Defined in: [libs/jast/jast/src/lib/jats.ts:3957](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3957) ##### `patent` > [`Patent`](modules.md#patent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3959) +Defined in: [libs/jast/jast/src/lib/jats.ts:3959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3959) ##### `personGroup` > [`PersonGroup`](modules.md#persongroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3961) +Defined in: [libs/jast/jast/src/lib/jats.ts:3961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3961) ##### `privateChar` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3963) +Defined in: [libs/jast/jast/src/lib/jats.ts:3963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3963) ##### `pubId` > [`PubId`](modules.md#pubid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3965) +Defined in: [libs/jast/jast/src/lib/jats.ts:3965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3965) ##### `publisherLoc` > [`PublisherLoc`](modules.md#publisherloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3967) +Defined in: [libs/jast/jast/src/lib/jats.ts:3967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3967) ##### `publisherName` > [`PublisherName`](modules.md#publishername)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3969) +Defined in: [libs/jast/jast/src/lib/jats.ts:3969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3969) ##### `role` > [`Role`](modules.md#role)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3971) +Defined in: [libs/jast/jast/src/lib/jats.ts:3971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3971) ##### `roman` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3973) +Defined in: [libs/jast/jast/src/lib/jats.ts:3973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3973) ##### `ruby` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3975) +Defined in: [libs/jast/jast/src/lib/jats.ts:3975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3975) ##### `sansSerif` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3977) +Defined in: [libs/jast/jast/src/lib/jats.ts:3977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3977) ##### `sc` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3979) +Defined in: [libs/jast/jast/src/lib/jats.ts:3979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3979) ##### `season` > [`Season`](modules.md#season)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3981) +Defined in: [libs/jast/jast/src/lib/jats.ts:3981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3981) ##### `series` > [`Series`](modules.md#series)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3983) +Defined in: [libs/jast/jast/src/lib/jats.ts:3983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3983) ##### `size` > [`Size`](modules.md#size)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3985) +Defined in: [libs/jast/jast/src/lib/jats.ts:3985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3985) ##### `source` > [`Source`](modules.md#source)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3987) +Defined in: [libs/jast/jast/src/lib/jats.ts:3987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3987) ##### `std` > [`Std`](modules.md#std)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3989) +Defined in: [libs/jast/jast/src/lib/jats.ts:3989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3989) ##### `strike` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3991) +Defined in: [libs/jast/jast/src/lib/jats.ts:3991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3991) ##### `stringDate` > [`StringDate`](modules.md#stringdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3993) +Defined in: [libs/jast/jast/src/lib/jats.ts:3993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3993) ##### `stringName` > [`StringName`](modules.md#stringname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3995) +Defined in: [libs/jast/jast/src/lib/jats.ts:3995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3995) ##### `styledContent` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3997) +Defined in: [libs/jast/jast/src/lib/jats.ts:3997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3997) ##### `sub` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:3999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3999) +Defined in: [libs/jast/jast/src/lib/jats.ts:3999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L3999) ##### `sup` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4001) +Defined in: [libs/jast/jast/src/lib/jats.ts:4001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4001) ##### `supplement` > [`Supplement`](modules.md#supplement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4003) +Defined in: [libs/jast/jast/src/lib/jats.ts:4003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4003) ##### `transSource` > [`TransSource`](modules.md#transsource)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4005) +Defined in: [libs/jast/jast/src/lib/jats.ts:4005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4005) ##### `transTitle` > [`TransTitle`](modules.md#transtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4007) +Defined in: [libs/jast/jast/src/lib/jats.ts:4007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4007) ##### `underline` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4009) +Defined in: [libs/jast/jast/src/lib/jats.ts:4009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4009) ##### `uri` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4011) +Defined in: [libs/jast/jast/src/lib/jats.ts:4011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4011) ##### `version` > [`Version`](modules.md#version)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4013) +Defined in: [libs/jast/jast/src/lib/jats.ts:4013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4013) ##### `volume` > [`Volume`](modules.md#volume)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4015](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4015) +Defined in: [libs/jast/jast/src/lib/jats.ts:4015](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4015) ##### `volumeId` > [`VolumeId`](modules.md#volumeid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4017](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4017) +Defined in: [libs/jast/jast/src/lib/jats.ts:4017](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4017) ##### `volumeSeries` > [`VolumeSeries`](modules.md#volumeseries)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4019) +Defined in: [libs/jast/jast/src/lib/jats.ts:4019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4019) ##### `year` > [`Year`](modules.md#year)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4021) +Defined in: [libs/jast/jast/src/lib/jats.ts:4021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4021) -*** +--- ### `ElocationId` @@ -15688,7 +15688,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ElocationId** +- [`Node`](modules.md#node).**ElocationId** #### Properties @@ -15706,19 +15706,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `seq`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `seq`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4027) +Defined in: [libs/jast/jast/src/lib/jats.ts:4027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4027) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4033) +Defined in: [libs/jast/jast/src/lib/jats.ts:4033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4033) ##### `data?` @@ -15728,13 +15728,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"elocationId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4026](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4026) +Defined in: [libs/jast/jast/src/lib/jats.ts:4026](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4026) ##### `position?` @@ -15745,7 +15745,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -15755,9 +15755,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4025) +Defined in: [libs/jast/jast/src/lib/jats.ts:4025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4025) -*** +--- ### `ElocationIdChildrenMap` @@ -15767,9 +15767,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4025](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4037) +Defined in: [libs/jast/jast/src/lib/jats.ts:4037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4037) -*** +--- ### `Email` @@ -15777,7 +15777,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Email** +- [`Node`](modules.md#node).**Email** #### Properties @@ -15795,19 +15795,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4043](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4043) +Defined in: [libs/jast/jast/src/lib/jats.ts:4043](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4043) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4049) +Defined in: [libs/jast/jast/src/lib/jats.ts:4049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4049) ##### `data?` @@ -15817,13 +15817,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"email"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4042](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4042) +Defined in: [libs/jast/jast/src/lib/jats.ts:4042](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4042) ##### `position?` @@ -15834,7 +15834,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -15844,9 +15844,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4041) +Defined in: [libs/jast/jast/src/lib/jats.ts:4041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4041) -*** +--- ### `EmailChildrenMap` @@ -15856,9 +15856,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4041](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4053) +Defined in: [libs/jast/jast/src/lib/jats.ts:4053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4053) -*** +--- ### `EquationCount` @@ -15866,7 +15866,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**EquationCount** +- [`Node`](modules.md#node).**EquationCount** #### Properties @@ -15883,18 +15883,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------ | :------- | | `count` | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4059) +Defined in: [libs/jast/jast/src/lib/jats.ts:4059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4059) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:4063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4063) +Defined in: [libs/jast/jast/src/lib/jats.ts:4063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4063) ##### `data?` @@ -15904,13 +15904,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"equationCount"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4058](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4058) +Defined in: [libs/jast/jast/src/lib/jats.ts:4058](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4058) ##### `position?` @@ -15921,7 +15921,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -15931,9 +15931,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4057) +Defined in: [libs/jast/jast/src/lib/jats.ts:4057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4057) -*** +--- ### `Era` @@ -15941,7 +15941,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Era** +- [`Node`](modules.md#node).**Era** #### Properties @@ -15958,18 +15958,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4069) +Defined in: [libs/jast/jast/src/lib/jats.ts:4069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4069) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4074](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4074) +Defined in: [libs/jast/jast/src/lib/jats.ts:4074](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4074) ##### `data?` @@ -15979,13 +15979,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"era"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4068](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4068) +Defined in: [libs/jast/jast/src/lib/jats.ts:4068](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4068) ##### `position?` @@ -15996,7 +15996,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -16006,9 +16006,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4067) +Defined in: [libs/jast/jast/src/lib/jats.ts:4067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4067) -*** +--- ### `EraChildrenMap` @@ -16018,9 +16018,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4067](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4078) +Defined in: [libs/jast/jast/src/lib/jats.ts:4078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4078) -*** +--- ### `Etal` @@ -16028,7 +16028,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Etal** +- [`Node`](modules.md#node).**Etal** #### Properties @@ -16045,18 +16045,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4084) +Defined in: [libs/jast/jast/src/lib/jats.ts:4084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4084) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:4088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4088) +Defined in: [libs/jast/jast/src/lib/jats.ts:4088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4088) ##### `data?` @@ -16066,13 +16066,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"etal"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4083](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4083) +Defined in: [libs/jast/jast/src/lib/jats.ts:4083](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4083) ##### `position?` @@ -16083,7 +16083,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -16093,9 +16093,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4082) +Defined in: [libs/jast/jast/src/lib/jats.ts:4082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4082) -*** +--- ### `Event` @@ -16103,7 +16103,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Event** +- [`Node`](modules.md#node).**Event** #### Properties @@ -16121,19 +16121,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `eventType`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `eventType`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4133) +Defined in: [libs/jast/jast/src/lib/jats.ts:4133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4133) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`EventChildrenMap`](modules.md#eventchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4139](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4139) +Defined in: [libs/jast/jast/src/lib/jats.ts:4139](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4139) ##### `data?` @@ -16143,13 +16143,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"event"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4132) +Defined in: [libs/jast/jast/src/lib/jats.ts:4132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4132) ##### `position?` @@ -16160,7 +16160,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -16170,9 +16170,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4131) +Defined in: [libs/jast/jast/src/lib/jats.ts:4131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4131) -*** +--- ### `EventChildrenMap` @@ -16182,81 +16182,81 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4131](https://github.com/TrialAndEr > [`ArticleId`](modules.md#articleid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4143) +Defined in: [libs/jast/jast/src/lib/jats.ts:4143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4143) ##### `articleVersion?` > [`ArticleVersion`](modules.md#articleversion) -Defined in: [libs/jast/jast/src/lib/jats.ts:4145](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4145) +Defined in: [libs/jast/jast/src/lib/jats.ts:4145](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4145) ##### `articleVersionalternatives?` > [`ArticleVersionalternatives`](modules.md#articleversionalternatives) -Defined in: [libs/jast/jast/src/lib/jats.ts:4147](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4147) +Defined in: [libs/jast/jast/src/lib/jats.ts:4147](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4147) ##### `date?` > [`Date`](modules.md#date)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4149) +Defined in: [libs/jast/jast/src/lib/jats.ts:4149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4149) ##### `eventDesc?` > [`EventDesc`](modules.md#eventdesc) -Defined in: [libs/jast/jast/src/lib/jats.ts:4151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4151) +Defined in: [libs/jast/jast/src/lib/jats.ts:4151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4151) ##### `isbn?` > [`Isbn`](modules.md#isbn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4153) +Defined in: [libs/jast/jast/src/lib/jats.ts:4153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4153) ##### `issn?` > [`Issn`](modules.md#issn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4155) +Defined in: [libs/jast/jast/src/lib/jats.ts:4155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4155) ##### `issnL?` > [`IssnL`](modules.md#issnl) -Defined in: [libs/jast/jast/src/lib/jats.ts:4157](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4157) +Defined in: [libs/jast/jast/src/lib/jats.ts:4157](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4157) ##### `notes?` > [`Notes`](modules.md#notes)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4159](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4159) +Defined in: [libs/jast/jast/src/lib/jats.ts:4159](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4159) ##### `permissions?` > [`Permissions`](modules.md#permissions) -Defined in: [libs/jast/jast/src/lib/jats.ts:4161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4161) +Defined in: [libs/jast/jast/src/lib/jats.ts:4161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4161) ##### `pubDate?` > [`PubDate`](modules.md#pubdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4163) +Defined in: [libs/jast/jast/src/lib/jats.ts:4163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4163) ##### `pubDatenotavailable?` > [`PubDatenotavailable`](modules.md#pubdatenotavailable) -Defined in: [libs/jast/jast/src/lib/jats.ts:4165](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4165) +Defined in: [libs/jast/jast/src/lib/jats.ts:4165](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4165) ##### `selfUri?` > [`SelfUri`](modules.md#selfuri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4167](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4167) +Defined in: [libs/jast/jast/src/lib/jats.ts:4167](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4167) -*** +--- ### `EventDesc` @@ -16264,7 +16264,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**EventDesc** +- [`Node`](modules.md#node).**EventDesc** #### Properties @@ -16281,18 +16281,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4094) +Defined in: [libs/jast/jast/src/lib/jats.ts:4094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4094) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`EventDescChildrenMap`](modules.md#eventdescchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4099) +Defined in: [libs/jast/jast/src/lib/jats.ts:4099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4099) ##### `data?` @@ -16302,13 +16302,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"eventDesc"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4093](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4093) +Defined in: [libs/jast/jast/src/lib/jats.ts:4093](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4093) ##### `position?` @@ -16319,7 +16319,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -16329,9 +16329,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4092) +Defined in: [libs/jast/jast/src/lib/jats.ts:4092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4092) -*** +--- ### `EventDescChildrenMap` @@ -16341,81 +16341,81 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4092](https://github.com/TrialAndEr > [`ArticleId`](modules.md#articleid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4103) +Defined in: [libs/jast/jast/src/lib/jats.ts:4103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4103) ##### `articleVersion?` > [`ArticleVersion`](modules.md#articleversion)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4105) +Defined in: [libs/jast/jast/src/lib/jats.ts:4105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4105) ##### `articleVersionalternatives?` > [`ArticleVersionalternatives`](modules.md#articleversionalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4107](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4107) +Defined in: [libs/jast/jast/src/lib/jats.ts:4107](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4107) ##### `date?` > [`Date`](modules.md#date)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4109) +Defined in: [libs/jast/jast/src/lib/jats.ts:4109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4109) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4111) +Defined in: [libs/jast/jast/src/lib/jats.ts:4111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4111) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4113) +Defined in: [libs/jast/jast/src/lib/jats.ts:4113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4113) ##### `isbn?` > [`Isbn`](modules.md#isbn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4115) +Defined in: [libs/jast/jast/src/lib/jats.ts:4115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4115) ##### `issn?` > [`Issn`](modules.md#issn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4117](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4117) +Defined in: [libs/jast/jast/src/lib/jats.ts:4117](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4117) ##### `issnL?` > [`IssnL`](modules.md#issnl)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4119) +Defined in: [libs/jast/jast/src/lib/jats.ts:4119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4119) ##### `pubDate?` > [`PubDate`](modules.md#pubdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4121) +Defined in: [libs/jast/jast/src/lib/jats.ts:4121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4121) ##### `pubDatenotavailable?` > [`PubDatenotavailable`](modules.md#pubdatenotavailable)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4123](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4123) +Defined in: [libs/jast/jast/src/lib/jats.ts:4123](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4123) ##### `stringDate?` > [`StringDate`](modules.md#stringdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4125) +Defined in: [libs/jast/jast/src/lib/jats.ts:4125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4125) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4127) +Defined in: [libs/jast/jast/src/lib/jats.ts:4127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4127) -*** +--- ### `Explanation` @@ -16423,7 +16423,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Explanation** +- [`Node`](modules.md#node).**Explanation** #### Properties @@ -16441,19 +16441,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------------- | :------- | +| `id`? | `string` | | `pointerToexplained` | `string` | -| `specificUse`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4173](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4173) +Defined in: [libs/jast/jast/src/lib/jats.ts:4173](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4173) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ExplanationChildrenMap`](modules.md#explanationchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4179](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4179) +Defined in: [libs/jast/jast/src/lib/jats.ts:4179](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4179) ##### `data?` @@ -16463,13 +16463,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"explanation"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4172) +Defined in: [libs/jast/jast/src/lib/jats.ts:4172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4172) ##### `position?` @@ -16480,7 +16480,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -16490,9 +16490,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4171](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4171) +Defined in: [libs/jast/jast/src/lib/jats.ts:4171](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4171) -*** +--- ### `ExplanationChildrenMap` @@ -16502,255 +16502,255 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4171](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4185](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4185) +Defined in: [libs/jast/jast/src/lib/jats.ts:4185](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4185) ##### `altTitle?` > [`AltTitle`](modules.md#alttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4187) +Defined in: [libs/jast/jast/src/lib/jats.ts:4187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4187) ##### `alternatives` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4189) +Defined in: [libs/jast/jast/src/lib/jats.ts:4189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4189) ##### `answer` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4191) +Defined in: [libs/jast/jast/src/lib/jats.ts:4191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4191) ##### `answerSet` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4193](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4193) +Defined in: [libs/jast/jast/src/lib/jats.ts:4193](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4193) ##### `array` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4195) +Defined in: [libs/jast/jast/src/lib/jats.ts:4195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4195) ##### `blockAlternatives` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4197](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4197) +Defined in: [libs/jast/jast/src/lib/jats.ts:4197](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4197) ##### `boxedText` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4199](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4199) +Defined in: [libs/jast/jast/src/lib/jats.ts:4199](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4199) ##### `chemStructwrap` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4201](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4201) +Defined in: [libs/jast/jast/src/lib/jats.ts:4201](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4201) ##### `code` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4203](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4203) +Defined in: [libs/jast/jast/src/lib/jats.ts:4203](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4203) ##### `defList` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4205](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4205) +Defined in: [libs/jast/jast/src/lib/jats.ts:4205](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4205) ##### `dispFormula` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4207](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4207) +Defined in: [libs/jast/jast/src/lib/jats.ts:4207](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4207) ##### `dispFormulagroup` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4209](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4209) +Defined in: [libs/jast/jast/src/lib/jats.ts:4209](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4209) ##### `dispQuote` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4211) +Defined in: [libs/jast/jast/src/lib/jats.ts:4211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4211) ##### `fig` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4213) +Defined in: [libs/jast/jast/src/lib/jats.ts:4213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4213) ##### `figGroup` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4215](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4215) +Defined in: [libs/jast/jast/src/lib/jats.ts:4215](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4215) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4217](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4217) +Defined in: [libs/jast/jast/src/lib/jats.ts:4217](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4217) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4219](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4219) +Defined in: [libs/jast/jast/src/lib/jats.ts:4219](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4219) ##### `graphic` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4221](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4221) +Defined in: [libs/jast/jast/src/lib/jats.ts:4221](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4221) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:4223](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4223) +Defined in: [libs/jast/jast/src/lib/jats.ts:4223](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4223) ##### `list` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4225) +Defined in: [libs/jast/jast/src/lib/jats.ts:4225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4225) ##### `media` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4227) +Defined in: [libs/jast/jast/src/lib/jats.ts:4227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4227) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4229) +Defined in: [libs/jast/jast/src/lib/jats.ts:4229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4229) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4231) +Defined in: [libs/jast/jast/src/lib/jats.ts:4231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4231) ##### `preformat` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4233) +Defined in: [libs/jast/jast/src/lib/jats.ts:4233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4233) ##### `question` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4235) +Defined in: [libs/jast/jast/src/lib/jats.ts:4235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4235) ##### `questionWrap` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4237) +Defined in: [libs/jast/jast/src/lib/jats.ts:4237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4237) ##### `questionWrapgroup` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4239) +Defined in: [libs/jast/jast/src/lib/jats.ts:4239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4239) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4241) +Defined in: [libs/jast/jast/src/lib/jats.ts:4241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4241) ##### `relatedArticle` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4243) +Defined in: [libs/jast/jast/src/lib/jats.ts:4243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4243) ##### `relatedObject` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4245) +Defined in: [libs/jast/jast/src/lib/jats.ts:4245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4245) ##### `sec` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4247) +Defined in: [libs/jast/jast/src/lib/jats.ts:4247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4247) ##### `speech` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4249) +Defined in: [libs/jast/jast/src/lib/jats.ts:4249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4249) ##### `statement` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4251) +Defined in: [libs/jast/jast/src/lib/jats.ts:4251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4251) ##### `subtitle?` > [`Subtitle`](modules.md#subtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4253) +Defined in: [libs/jast/jast/src/lib/jats.ts:4253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4253) ##### `supplementaryMaterial` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4255) +Defined in: [libs/jast/jast/src/lib/jats.ts:4255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4255) ##### `tableWrap` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4257) +Defined in: [libs/jast/jast/src/lib/jats.ts:4257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4257) ##### `tableWrapgroup` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4259) +Defined in: [libs/jast/jast/src/lib/jats.ts:4259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4259) ##### `texMath` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4261) +Defined in: [libs/jast/jast/src/lib/jats.ts:4261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4261) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4183) +Defined in: [libs/jast/jast/src/lib/jats.ts:4183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4183) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:4263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4263) +Defined in: [libs/jast/jast/src/lib/jats.ts:4263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4263) ##### `verseGroup` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4265) +Defined in: [libs/jast/jast/src/lib/jats.ts:4265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4265) -*** +--- ### `ExtLink` @@ -16758,7 +16758,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ExtLink** +- [`Node`](modules.md#node).**ExtLink** #### Properties @@ -16779,22 +16779,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `extLinktype`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | -| `xlink:href` | `string` | +| `extLinktype`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | +| `xlink:href` | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4287) +Defined in: [libs/jast/jast/src/lib/jats.ts:4287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4287) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ExtLinkChildrenMap`](modules.md#extlinkchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4296) +Defined in: [libs/jast/jast/src/lib/jats.ts:4296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4296) ##### `data?` @@ -16804,13 +16804,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"extLink"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4286](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4286) +Defined in: [libs/jast/jast/src/lib/jats.ts:4286](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4286) ##### `position?` @@ -16821,7 +16821,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -16831,9 +16831,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4285](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4285) +Defined in: [libs/jast/jast/src/lib/jats.ts:4285](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4285) -*** +--- ### `ExtLinkChildrenMap` @@ -16843,15 +16843,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4285](https://github.com/TrialAndEr > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4301) +Defined in: [libs/jast/jast/src/lib/jats.ts:4301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4301) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4300) +Defined in: [libs/jast/jast/src/lib/jats.ts:4300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4300) -*** +--- ### `ExtendedBy` @@ -16859,7 +16859,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ExtendedBy** +- [`Node`](modules.md#node).**ExtendedBy** #### Properties @@ -16882,24 +16882,24 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `designator`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `assigningAuthority`? | `string` | +| `designator`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4271) +Defined in: [libs/jast/jast/src/lib/jats.ts:4271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4271) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:4281](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4281) +Defined in: [libs/jast/jast/src/lib/jats.ts:4281](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4281) ##### `data?` @@ -16909,13 +16909,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"extendedBy"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4270](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4270) +Defined in: [libs/jast/jast/src/lib/jats.ts:4270](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4270) ##### `position?` @@ -16926,7 +16926,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -16936,9 +16936,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4269) +Defined in: [libs/jast/jast/src/lib/jats.ts:4269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4269) -*** +--- ### `Fax` @@ -16946,7 +16946,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Fax** +- [`Node`](modules.md#node).**Fax** #### Properties @@ -16963,18 +16963,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4307) +Defined in: [libs/jast/jast/src/lib/jats.ts:4307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4307) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4312) +Defined in: [libs/jast/jast/src/lib/jats.ts:4312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4312) ##### `data?` @@ -16984,13 +16984,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"fax"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4306) +Defined in: [libs/jast/jast/src/lib/jats.ts:4306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4306) ##### `position?` @@ -17001,7 +17001,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -17011,9 +17011,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4305) +Defined in: [libs/jast/jast/src/lib/jats.ts:4305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4305) -*** +--- ### `FaxChildrenMap` @@ -17023,9 +17023,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4305](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4316) +Defined in: [libs/jast/jast/src/lib/jats.ts:4316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4316) -*** +--- ### `Fig` @@ -17033,7 +17033,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Fig** +- [`Node`](modules.md#node).**Fig** #### Properties @@ -17053,21 +17053,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `figType`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------------------- | +| `figType`? | `string` | +| `id`? | `string` | | `orientation`? | `FigTypeOrientation` | -| `position`? | `FigTypePosition` | -| `specificUse`? | `string` | +| `position`? | `FigTypePosition` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4385) +Defined in: [libs/jast/jast/src/lib/jats.ts:4385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4385) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FigChildrenMap`](modules.md#figchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4393) +Defined in: [libs/jast/jast/src/lib/jats.ts:4393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4393) ##### `data?` @@ -17077,13 +17077,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"fig"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4384) +Defined in: [libs/jast/jast/src/lib/jats.ts:4384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4384) ##### `position?` @@ -17094,7 +17094,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -17104,9 +17104,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4383) +Defined in: [libs/jast/jast/src/lib/jats.ts:4383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4383) -*** +--- ### `FigChildrenMap` @@ -17116,189 +17116,189 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4383](https://github.com/TrialAndEr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4397) +Defined in: [libs/jast/jast/src/lib/jats.ts:4397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4397) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4399) +Defined in: [libs/jast/jast/src/lib/jats.ts:4399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4399) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4401) +Defined in: [libs/jast/jast/src/lib/jats.ts:4401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4401) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4403) +Defined in: [libs/jast/jast/src/lib/jats.ts:4403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4403) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4405) +Defined in: [libs/jast/jast/src/lib/jats.ts:4405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4405) ##### `caption?` > [`Caption`](modules.md#caption)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4407) +Defined in: [libs/jast/jast/src/lib/jats.ts:4407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4407) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4409) +Defined in: [libs/jast/jast/src/lib/jats.ts:4409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4409) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4411) +Defined in: [libs/jast/jast/src/lib/jats.ts:4411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4411) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4413) +Defined in: [libs/jast/jast/src/lib/jats.ts:4413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4413) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4415) +Defined in: [libs/jast/jast/src/lib/jats.ts:4415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4415) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4417](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4417) +Defined in: [libs/jast/jast/src/lib/jats.ts:4417](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4417) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4419](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4419) +Defined in: [libs/jast/jast/src/lib/jats.ts:4419](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4419) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4421) +Defined in: [libs/jast/jast/src/lib/jats.ts:4421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4421) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4423](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4423) +Defined in: [libs/jast/jast/src/lib/jats.ts:4423](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4423) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4425](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4425) +Defined in: [libs/jast/jast/src/lib/jats.ts:4425](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4425) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4427) +Defined in: [libs/jast/jast/src/lib/jats.ts:4427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4427) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4429](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4429) +Defined in: [libs/jast/jast/src/lib/jats.ts:4429](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4429) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4431) +Defined in: [libs/jast/jast/src/lib/jats.ts:4431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4431) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4433) +Defined in: [libs/jast/jast/src/lib/jats.ts:4433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4433) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4435) +Defined in: [libs/jast/jast/src/lib/jats.ts:4435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4435) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4437) +Defined in: [libs/jast/jast/src/lib/jats.ts:4437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4437) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4439](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4439) +Defined in: [libs/jast/jast/src/lib/jats.ts:4439](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4439) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4441) +Defined in: [libs/jast/jast/src/lib/jats.ts:4441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4441) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4443](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4443) +Defined in: [libs/jast/jast/src/lib/jats.ts:4443](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4443) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4445) +Defined in: [libs/jast/jast/src/lib/jats.ts:4445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4445) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4447) +Defined in: [libs/jast/jast/src/lib/jats.ts:4447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4447) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4448) +Defined in: [libs/jast/jast/src/lib/jats.ts:4448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4448) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4450) +Defined in: [libs/jast/jast/src/lib/jats.ts:4450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4450) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4452) +Defined in: [libs/jast/jast/src/lib/jats.ts:4452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4452) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4454) +Defined in: [libs/jast/jast/src/lib/jats.ts:4454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4454) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4456) +Defined in: [libs/jast/jast/src/lib/jats.ts:4456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4456) -*** +--- ### `FigCount` @@ -17306,7 +17306,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**FigCount** +- [`Node`](modules.md#node).**FigCount** #### Properties @@ -17323,18 +17323,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------ | :------- | | `count` | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4322) +Defined in: [libs/jast/jast/src/lib/jats.ts:4322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4322) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:4326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4326) +Defined in: [libs/jast/jast/src/lib/jats.ts:4326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4326) ##### `data?` @@ -17344,13 +17344,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"figCount"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4321) +Defined in: [libs/jast/jast/src/lib/jats.ts:4321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4321) ##### `position?` @@ -17361,7 +17361,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -17371,9 +17371,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4320) +Defined in: [libs/jast/jast/src/lib/jats.ts:4320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4320) -*** +--- ### `FigGroup` @@ -17381,7 +17381,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**FigGroup** +- [`Node`](modules.md#node).**FigGroup** #### Properties @@ -17400,20 +17400,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------------------------ | +| `id`? | `string` | | `orientation`? | `FigGroupTypeOrientation` | -| `position`? | `FigGroupTypePosition` | -| `specificUse`? | `string` | +| `position`? | `FigGroupTypePosition` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4332) +Defined in: [libs/jast/jast/src/lib/jats.ts:4332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4332) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FigGroupChildrenMap`](modules.md#figgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4339) +Defined in: [libs/jast/jast/src/lib/jats.ts:4339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4339) ##### `data?` @@ -17423,13 +17423,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"figGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4331) +Defined in: [libs/jast/jast/src/lib/jats.ts:4331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4331) ##### `position?` @@ -17440,7 +17440,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -17450,9 +17450,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4330) +Defined in: [libs/jast/jast/src/lib/jats.ts:4330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4330) -*** +--- ### `FigGroupChildrenMap` @@ -17462,111 +17462,111 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4330](https://github.com/TrialAndEr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4344) +Defined in: [libs/jast/jast/src/lib/jats.ts:4344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4344) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4346) +Defined in: [libs/jast/jast/src/lib/jats.ts:4346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4346) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4348) +Defined in: [libs/jast/jast/src/lib/jats.ts:4348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4348) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4350) +Defined in: [libs/jast/jast/src/lib/jats.ts:4350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4350) ##### `caption?` > [`Caption`](modules.md#caption)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4352) +Defined in: [libs/jast/jast/src/lib/jats.ts:4352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4352) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4354) +Defined in: [libs/jast/jast/src/lib/jats.ts:4354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4354) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4356) +Defined in: [libs/jast/jast/src/lib/jats.ts:4356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4356) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4358) +Defined in: [libs/jast/jast/src/lib/jats.ts:4358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4358) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4360) +Defined in: [libs/jast/jast/src/lib/jats.ts:4360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4360) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4362) +Defined in: [libs/jast/jast/src/lib/jats.ts:4362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4362) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4364) +Defined in: [libs/jast/jast/src/lib/jats.ts:4364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4364) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4366) +Defined in: [libs/jast/jast/src/lib/jats.ts:4366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4366) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4368) +Defined in: [libs/jast/jast/src/lib/jats.ts:4368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4368) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4370) +Defined in: [libs/jast/jast/src/lib/jats.ts:4370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4370) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4371) +Defined in: [libs/jast/jast/src/lib/jats.ts:4371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4371) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4343](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4343) +Defined in: [libs/jast/jast/src/lib/jats.ts:4343](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4343) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4373) +Defined in: [libs/jast/jast/src/lib/jats.ts:4373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4373) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4375) +Defined in: [libs/jast/jast/src/lib/jats.ts:4375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4375) -*** +--- ### `FixedCase` @@ -17574,7 +17574,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**FixedCase** +- [`Node`](modules.md#node).**FixedCase** #### Properties @@ -17591,18 +17591,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4466) +Defined in: [libs/jast/jast/src/lib/jats.ts:4466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4466) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FixedCaseChildrenMap`](modules.md#fixedcasechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4471) +Defined in: [libs/jast/jast/src/lib/jats.ts:4471](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4471) ##### `data?` @@ -17612,13 +17612,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"fixedCase"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4465](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4465) +Defined in: [libs/jast/jast/src/lib/jats.ts:4465](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4465) ##### `position?` @@ -17629,7 +17629,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -17639,9 +17639,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4464) +Defined in: [libs/jast/jast/src/lib/jats.ts:4464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4464) -*** +--- ### `FixedCaseChildrenMap` @@ -17651,225 +17651,225 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4464](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4477](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4477) +Defined in: [libs/jast/jast/src/lib/jats.ts:4477](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4477) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4479) +Defined in: [libs/jast/jast/src/lib/jats.ts:4479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4479) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4481) +Defined in: [libs/jast/jast/src/lib/jats.ts:4481](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4481) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4483](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4483) +Defined in: [libs/jast/jast/src/lib/jats.ts:4483](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4483) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4485) +Defined in: [libs/jast/jast/src/lib/jats.ts:4485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4485) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4487) +Defined in: [libs/jast/jast/src/lib/jats.ts:4487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4487) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4489](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4489) +Defined in: [libs/jast/jast/src/lib/jats.ts:4489](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4489) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4491) +Defined in: [libs/jast/jast/src/lib/jats.ts:4491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4491) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4493) +Defined in: [libs/jast/jast/src/lib/jats.ts:4493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4493) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4495](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4495) +Defined in: [libs/jast/jast/src/lib/jats.ts:4495](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4495) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4497) +Defined in: [libs/jast/jast/src/lib/jats.ts:4497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4497) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4499) +Defined in: [libs/jast/jast/src/lib/jats.ts:4499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4499) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4501) +Defined in: [libs/jast/jast/src/lib/jats.ts:4501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4501) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4503](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4503) +Defined in: [libs/jast/jast/src/lib/jats.ts:4503](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4503) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4505) +Defined in: [libs/jast/jast/src/lib/jats.ts:4505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4505) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4507) +Defined in: [libs/jast/jast/src/lib/jats.ts:4507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4507) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4509) +Defined in: [libs/jast/jast/src/lib/jats.ts:4509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4509) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4511) +Defined in: [libs/jast/jast/src/lib/jats.ts:4511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4511) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4513) +Defined in: [libs/jast/jast/src/lib/jats.ts:4513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4513) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4515) +Defined in: [libs/jast/jast/src/lib/jats.ts:4515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4515) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4517) +Defined in: [libs/jast/jast/src/lib/jats.ts:4517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4517) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4519](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4519) +Defined in: [libs/jast/jast/src/lib/jats.ts:4519](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4519) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4521) +Defined in: [libs/jast/jast/src/lib/jats.ts:4521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4521) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4523](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4523) +Defined in: [libs/jast/jast/src/lib/jats.ts:4523](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4523) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4525](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4525) +Defined in: [libs/jast/jast/src/lib/jats.ts:4525](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4525) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4527](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4527) +Defined in: [libs/jast/jast/src/lib/jats.ts:4527](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4527) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4529](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4529) +Defined in: [libs/jast/jast/src/lib/jats.ts:4529](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4529) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4531) +Defined in: [libs/jast/jast/src/lib/jats.ts:4531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4531) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4533) +Defined in: [libs/jast/jast/src/lib/jats.ts:4533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4533) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4535) +Defined in: [libs/jast/jast/src/lib/jats.ts:4535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4535) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4537](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4537) +Defined in: [libs/jast/jast/src/lib/jats.ts:4537](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4537) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4539) +Defined in: [libs/jast/jast/src/lib/jats.ts:4539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4539) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4541) +Defined in: [libs/jast/jast/src/lib/jats.ts:4541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4541) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4475) +Defined in: [libs/jast/jast/src/lib/jats.ts:4475](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4475) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4543) +Defined in: [libs/jast/jast/src/lib/jats.ts:4543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4543) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4545) +Defined in: [libs/jast/jast/src/lib/jats.ts:4545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4545) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4547) +Defined in: [libs/jast/jast/src/lib/jats.ts:4547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4547) -*** +--- ### `FloatsGroup` @@ -17877,7 +17877,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**FloatsGroup** +- [`Node`](modules.md#node).**FloatsGroup** #### Properties @@ -17893,17 +17893,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4553) +Defined in: [libs/jast/jast/src/lib/jats.ts:4553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4553) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FloatsGroupChildrenMap`](modules.md#floatsgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4557) +Defined in: [libs/jast/jast/src/lib/jats.ts:4557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4557) ##### `data?` @@ -17913,13 +17913,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"floatsGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4552) +Defined in: [libs/jast/jast/src/lib/jats.ts:4552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4552) ##### `position?` @@ -17930,7 +17930,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -17940,9 +17940,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4551) +Defined in: [libs/jast/jast/src/lib/jats.ts:4551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4551) -*** +--- ### `FloatsGroupChildrenMap` @@ -17952,81 +17952,81 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4551](https://github.com/TrialAndEr > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4561) +Defined in: [libs/jast/jast/src/lib/jats.ts:4561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4561) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4563) +Defined in: [libs/jast/jast/src/lib/jats.ts:4563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4563) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4565) +Defined in: [libs/jast/jast/src/lib/jats.ts:4565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4565) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4567) +Defined in: [libs/jast/jast/src/lib/jats.ts:4567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4567) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4569) +Defined in: [libs/jast/jast/src/lib/jats.ts:4569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4569) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4571) +Defined in: [libs/jast/jast/src/lib/jats.ts:4571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4571) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4573) +Defined in: [libs/jast/jast/src/lib/jats.ts:4573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4573) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4575) +Defined in: [libs/jast/jast/src/lib/jats.ts:4575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4575) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4577) +Defined in: [libs/jast/jast/src/lib/jats.ts:4577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4577) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4579) +Defined in: [libs/jast/jast/src/lib/jats.ts:4579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4579) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4581) +Defined in: [libs/jast/jast/src/lib/jats.ts:4581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4581) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4583) +Defined in: [libs/jast/jast/src/lib/jats.ts:4583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4583) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4585) +Defined in: [libs/jast/jast/src/lib/jats.ts:4585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4585) -*** +--- ### `Fn` @@ -18034,7 +18034,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Fn** +- [`Node`](modules.md#node).**Fn** #### Properties @@ -18053,20 +18053,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `fnType`? | `FnTypeFnType` | -| `id`? | `string` | -| `specificUse`? | `string` | -| `symbol`? | `string` | +| Member | Type | +| :------------- | :------------- | +| `fnType`? | `FnTypeFnType` | +| `id`? | `string` | +| `specificUse`? | `string` | +| `symbol`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4612) +Defined in: [libs/jast/jast/src/lib/jats.ts:4612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4612) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FnChildrenMap`](modules.md#fnchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4619) +Defined in: [libs/jast/jast/src/lib/jats.ts:4619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4619) ##### `data?` @@ -18076,13 +18076,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"fn"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4611) +Defined in: [libs/jast/jast/src/lib/jats.ts:4611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4611) ##### `position?` @@ -18093,7 +18093,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -18103,9 +18103,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4610) +Defined in: [libs/jast/jast/src/lib/jats.ts:4610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4610) -*** +--- ### `FnChildrenMap` @@ -18115,21 +18115,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4610](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4623) +Defined in: [libs/jast/jast/src/lib/jats.ts:4623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4623) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:4624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4624) +Defined in: [libs/jast/jast/src/lib/jats.ts:4624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4624) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4626) +Defined in: [libs/jast/jast/src/lib/jats.ts:4626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4626) -*** +--- ### `FnGroup` @@ -18137,7 +18137,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**FnGroup** +- [`Node`](modules.md#node).**FnGroup** #### Properties @@ -18154,18 +18154,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4591) +Defined in: [libs/jast/jast/src/lib/jats.ts:4591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4591) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FnGroupChildrenMap`](modules.md#fngroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4596) +Defined in: [libs/jast/jast/src/lib/jats.ts:4596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4596) ##### `data?` @@ -18175,13 +18175,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"fnGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4590) +Defined in: [libs/jast/jast/src/lib/jats.ts:4590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4590) ##### `position?` @@ -18192,7 +18192,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -18202,9 +18202,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4589) +Defined in: [libs/jast/jast/src/lib/jats.ts:4589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4589) -*** +--- ### `FnGroupChildrenMap` @@ -18214,27 +18214,27 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4589](https://github.com/TrialAndEr > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4602) +Defined in: [libs/jast/jast/src/lib/jats.ts:4602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4602) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:4604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4604) +Defined in: [libs/jast/jast/src/lib/jats.ts:4604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4604) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4600) +Defined in: [libs/jast/jast/src/lib/jats.ts:4600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4600) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:4606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4606) +Defined in: [libs/jast/jast/src/lib/jats.ts:4606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4606) -*** +--- ### `Fpage` @@ -18242,7 +18242,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Fpage** +- [`Node`](modules.md#node).**Fpage** #### Properties @@ -18260,19 +18260,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `seq`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `seq`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4656) +Defined in: [libs/jast/jast/src/lib/jats.ts:4656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4656) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4662) +Defined in: [libs/jast/jast/src/lib/jats.ts:4662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4662) ##### `data?` @@ -18282,13 +18282,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"fpage"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4655) +Defined in: [libs/jast/jast/src/lib/jats.ts:4655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4655) ##### `position?` @@ -18299,7 +18299,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -18309,9 +18309,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4654) +Defined in: [libs/jast/jast/src/lib/jats.ts:4654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4654) -*** +--- ### `FpageChildrenMap` @@ -18321,9 +18321,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4654](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4666) +Defined in: [libs/jast/jast/src/lib/jats.ts:4666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4666) -*** +--- ### `Front` @@ -18331,7 +18331,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Front** +- [`Node`](modules.md#node).**Front** #### Properties @@ -18347,17 +18347,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4776) +Defined in: [libs/jast/jast/src/lib/jats.ts:4776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4776) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FrontChildrenMap`](modules.md#frontchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4780) +Defined in: [libs/jast/jast/src/lib/jats.ts:4780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4780) ##### `data?` @@ -18367,13 +18367,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"front"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4775](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4775) +Defined in: [libs/jast/jast/src/lib/jats.ts:4775](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4775) ##### `position?` @@ -18384,7 +18384,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -18394,9 +18394,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4774) +Defined in: [libs/jast/jast/src/lib/jats.ts:4774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4774) -*** +--- ### `FrontChildrenMap` @@ -18406,21 +18406,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4774](https://github.com/TrialAndEr > [`ArticleMeta`](modules.md#articlemeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:4784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4784) +Defined in: [libs/jast/jast/src/lib/jats.ts:4784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4784) ##### `journalMeta` > [`JournalMeta`](modules.md#journalmeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:4786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4786) +Defined in: [libs/jast/jast/src/lib/jats.ts:4786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4786) ##### `notes?` > [`Notes`](modules.md#notes) -Defined in: [libs/jast/jast/src/lib/jats.ts:4788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4788) +Defined in: [libs/jast/jast/src/lib/jats.ts:4788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4788) -*** +--- ### `FrontStub` @@ -18428,7 +18428,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**FrontStub** +- [`Node`](modules.md#node).**FrontStub** #### Properties @@ -18444,17 +18444,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4672) +Defined in: [libs/jast/jast/src/lib/jats.ts:4672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4672) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FrontStubChildrenMap`](modules.md#frontstubchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4676) +Defined in: [libs/jast/jast/src/lib/jats.ts:4676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4676) ##### `data?` @@ -18464,13 +18464,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"frontStub"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4671](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4671) +Defined in: [libs/jast/jast/src/lib/jats.ts:4671](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4671) ##### `position?` @@ -18481,7 +18481,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -18491,9 +18491,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4670) +Defined in: [libs/jast/jast/src/lib/jats.ts:4670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4670) -*** +--- ### `FrontStubChildrenMap` @@ -18503,279 +18503,279 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4670](https://github.com/TrialAndEr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4680) +Defined in: [libs/jast/jast/src/lib/jats.ts:4680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4680) ##### `aff?` > [`Aff`](modules.md#aff)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4682) +Defined in: [libs/jast/jast/src/lib/jats.ts:4682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4682) ##### `affAlternatives?` > [`AffAlternatives`](modules.md#affalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4684) +Defined in: [libs/jast/jast/src/lib/jats.ts:4684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4684) ##### `articleCategories?` > [`ArticleCategories`](modules.md#articlecategories) -Defined in: [libs/jast/jast/src/lib/jats.ts:4686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4686) +Defined in: [libs/jast/jast/src/lib/jats.ts:4686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4686) ##### `articleId?` > [`ArticleId`](modules.md#articleid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4688) +Defined in: [libs/jast/jast/src/lib/jats.ts:4688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4688) ##### `articleVersion?` > [`ArticleVersion`](modules.md#articleversion) -Defined in: [libs/jast/jast/src/lib/jats.ts:4690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4690) +Defined in: [libs/jast/jast/src/lib/jats.ts:4690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4690) ##### `articleVersionalternatives?` > [`ArticleVersionalternatives`](modules.md#articleversionalternatives) -Defined in: [libs/jast/jast/src/lib/jats.ts:4692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4692) +Defined in: [libs/jast/jast/src/lib/jats.ts:4692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4692) ##### `authorNotes?` > [`AuthorNotes`](modules.md#authornotes) -Defined in: [libs/jast/jast/src/lib/jats.ts:4694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4694) +Defined in: [libs/jast/jast/src/lib/jats.ts:4694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4694) ##### `conference?` > [`Conference`](modules.md#conference)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4696) +Defined in: [libs/jast/jast/src/lib/jats.ts:4696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4696) ##### `contribGroup?` > [`ContribGroup`](modules.md#contribgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4698) +Defined in: [libs/jast/jast/src/lib/jats.ts:4698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4698) ##### `counts?` > [`Counts`](modules.md#counts) -Defined in: [libs/jast/jast/src/lib/jats.ts:4700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4700) +Defined in: [libs/jast/jast/src/lib/jats.ts:4700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4700) ##### `customMetagroup?` > [`CustomMetagroup`](modules.md#custommetagroup) -Defined in: [libs/jast/jast/src/lib/jats.ts:4702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4702) +Defined in: [libs/jast/jast/src/lib/jats.ts:4702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4702) ##### `elocationId?` > [`ElocationId`](modules.md#elocationid) -Defined in: [libs/jast/jast/src/lib/jats.ts:4704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4704) +Defined in: [libs/jast/jast/src/lib/jats.ts:4704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4704) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4706) +Defined in: [libs/jast/jast/src/lib/jats.ts:4706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4706) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4708) +Defined in: [libs/jast/jast/src/lib/jats.ts:4708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4708) ##### `fpage?` > [`Fpage`](modules.md#fpage) -Defined in: [libs/jast/jast/src/lib/jats.ts:4710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4710) +Defined in: [libs/jast/jast/src/lib/jats.ts:4710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4710) ##### `fundingGroup?` > [`FundingGroup`](modules.md#fundinggroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4712) +Defined in: [libs/jast/jast/src/lib/jats.ts:4712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4712) ##### `history?` > [`History`](modules.md#history) -Defined in: [libs/jast/jast/src/lib/jats.ts:4714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4714) +Defined in: [libs/jast/jast/src/lib/jats.ts:4714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4714) ##### `isbn?` > [`Isbn`](modules.md#isbn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4716) +Defined in: [libs/jast/jast/src/lib/jats.ts:4716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4716) ##### `issue?` > [`Issue`](modules.md#issue)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4718) +Defined in: [libs/jast/jast/src/lib/jats.ts:4718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4718) ##### `issueId?` > [`IssueId`](modules.md#issueid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4720) +Defined in: [libs/jast/jast/src/lib/jats.ts:4720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4720) ##### `issuePart?` > [`IssuePart`](modules.md#issuepart) -Defined in: [libs/jast/jast/src/lib/jats.ts:4722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4722) +Defined in: [libs/jast/jast/src/lib/jats.ts:4722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4722) ##### `issueSponsor?` > [`IssueSponsor`](modules.md#issuesponsor)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4724) +Defined in: [libs/jast/jast/src/lib/jats.ts:4724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4724) ##### `issueTitle?` > [`IssueTitle`](modules.md#issuetitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4726) +Defined in: [libs/jast/jast/src/lib/jats.ts:4726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4726) ##### `issueTitlegroup?` > [`IssueTitlegroup`](modules.md#issuetitlegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4728) +Defined in: [libs/jast/jast/src/lib/jats.ts:4728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4728) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4730) +Defined in: [libs/jast/jast/src/lib/jats.ts:4730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4730) ##### `lpage?` > [`Lpage`](modules.md#lpage) -Defined in: [libs/jast/jast/src/lib/jats.ts:4732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4732) +Defined in: [libs/jast/jast/src/lib/jats.ts:4732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4732) ##### `pageRange?` > [`PageRange`](modules.md#pagerange) -Defined in: [libs/jast/jast/src/lib/jats.ts:4734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4734) +Defined in: [libs/jast/jast/src/lib/jats.ts:4734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4734) ##### `permissions?` > [`Permissions`](modules.md#permissions) -Defined in: [libs/jast/jast/src/lib/jats.ts:4736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4736) +Defined in: [libs/jast/jast/src/lib/jats.ts:4736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4736) ##### `product?` > [`Product`](modules.md#product)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4738) +Defined in: [libs/jast/jast/src/lib/jats.ts:4738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4738) ##### `pubDate?` > [`PubDate`](modules.md#pubdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4740) +Defined in: [libs/jast/jast/src/lib/jats.ts:4740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4740) ##### `pubDatenotavailable?` > [`PubDatenotavailable`](modules.md#pubdatenotavailable) -Defined in: [libs/jast/jast/src/lib/jats.ts:4742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4742) +Defined in: [libs/jast/jast/src/lib/jats.ts:4742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4742) ##### `pubHistory?` > [`PubHistory`](modules.md#pubhistory) -Defined in: [libs/jast/jast/src/lib/jats.ts:4744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4744) +Defined in: [libs/jast/jast/src/lib/jats.ts:4744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4744) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4746) +Defined in: [libs/jast/jast/src/lib/jats.ts:4746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4746) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4748) +Defined in: [libs/jast/jast/src/lib/jats.ts:4748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4748) ##### `selfUri?` > [`SelfUri`](modules.md#selfuri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4750) +Defined in: [libs/jast/jast/src/lib/jats.ts:4750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4750) ##### `supplement?` > [`Supplement`](modules.md#supplement) -Defined in: [libs/jast/jast/src/lib/jats.ts:4752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4752) +Defined in: [libs/jast/jast/src/lib/jats.ts:4752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4752) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4754) +Defined in: [libs/jast/jast/src/lib/jats.ts:4754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4754) ##### `supportGroup?` > [`SupportGroup`](modules.md#supportgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4756) +Defined in: [libs/jast/jast/src/lib/jats.ts:4756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4756) ##### `titleGroup?` > [`TitleGroup`](modules.md#titlegroup) -Defined in: [libs/jast/jast/src/lib/jats.ts:4758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4758) +Defined in: [libs/jast/jast/src/lib/jats.ts:4758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4758) ##### `transAbstract?` > [`TransAbstract`](modules.md#transabstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4760) +Defined in: [libs/jast/jast/src/lib/jats.ts:4760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4760) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4762) +Defined in: [libs/jast/jast/src/lib/jats.ts:4762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4762) ##### `volume?` > [`Volume`](modules.md#volume)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4764) +Defined in: [libs/jast/jast/src/lib/jats.ts:4764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4764) ##### `volumeId?` > [`VolumeId`](modules.md#volumeid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4766) +Defined in: [libs/jast/jast/src/lib/jats.ts:4766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4766) ##### `volumeIssuegroup?` > [`VolumeIssuegroup`](modules.md#volumeissuegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4768) +Defined in: [libs/jast/jast/src/lib/jats.ts:4768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4768) ##### `volumeSeries?` > [`VolumeSeries`](modules.md#volumeseries) -Defined in: [libs/jast/jast/src/lib/jats.ts:4770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4770) +Defined in: [libs/jast/jast/src/lib/jats.ts:4770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4770) -*** +--- ### `FundingGroup` @@ -18783,7 +18783,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**FundingGroup** +- [`Node`](modules.md#node).**FundingGroup** #### Properties @@ -18800,18 +18800,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4794) +Defined in: [libs/jast/jast/src/lib/jats.ts:4794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4794) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FundingGroupChildrenMap`](modules.md#fundinggroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4799](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4799) +Defined in: [libs/jast/jast/src/lib/jats.ts:4799](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4799) ##### `data?` @@ -18821,13 +18821,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"fundingGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4793](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4793) +Defined in: [libs/jast/jast/src/lib/jats.ts:4793](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4793) ##### `position?` @@ -18838,7 +18838,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -18848,9 +18848,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4792) +Defined in: [libs/jast/jast/src/lib/jats.ts:4792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4792) -*** +--- ### `FundingGroupChildrenMap` @@ -18860,21 +18860,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4792](https://github.com/TrialAndEr > [`AwardGroup`](modules.md#awardgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4803](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4803) +Defined in: [libs/jast/jast/src/lib/jats.ts:4803](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4803) ##### `fundingStatement?` > [`FundingStatement`](modules.md#fundingstatement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4805) +Defined in: [libs/jast/jast/src/lib/jats.ts:4805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4805) ##### `openAccess?` > [`OpenAccess`](modules.md#openaccess)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4807) +Defined in: [libs/jast/jast/src/lib/jats.ts:4807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4807) -*** +--- ### `FundingSource` @@ -18882,7 +18882,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**FundingSource** +- [`Node`](modules.md#node).**FundingSource** #### Properties @@ -18903,22 +18903,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `country`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `rid`? | `string` | -| `sourceType`? | `string` | +| Member | Type | +| :------------- | :------- | +| `country`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `rid`? | `string` | +| `sourceType`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4813](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4813) +Defined in: [libs/jast/jast/src/lib/jats.ts:4813](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4813) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FundingSourceChildrenMap`](modules.md#fundingsourcechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4822) +Defined in: [libs/jast/jast/src/lib/jats.ts:4822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4822) ##### `data?` @@ -18928,13 +18928,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"fundingSource"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4812) +Defined in: [libs/jast/jast/src/lib/jats.ts:4812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4812) ##### `position?` @@ -18945,7 +18945,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -18955,9 +18955,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4811](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4811) +Defined in: [libs/jast/jast/src/lib/jats.ts:4811](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4811) -*** +--- ### `FundingSourceChildrenMap` @@ -18967,171 +18967,171 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4811](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4826) +Defined in: [libs/jast/jast/src/lib/jats.ts:4826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4826) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4828) +Defined in: [libs/jast/jast/src/lib/jats.ts:4828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4828) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4830) +Defined in: [libs/jast/jast/src/lib/jats.ts:4830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4830) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4832) +Defined in: [libs/jast/jast/src/lib/jats.ts:4832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4832) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4834) +Defined in: [libs/jast/jast/src/lib/jats.ts:4834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4834) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4836) +Defined in: [libs/jast/jast/src/lib/jats.ts:4836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4836) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4838) +Defined in: [libs/jast/jast/src/lib/jats.ts:4838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4838) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4840) +Defined in: [libs/jast/jast/src/lib/jats.ts:4840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4840) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4842) +Defined in: [libs/jast/jast/src/lib/jats.ts:4842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4842) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4844) +Defined in: [libs/jast/jast/src/lib/jats.ts:4844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4844) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4846) +Defined in: [libs/jast/jast/src/lib/jats.ts:4846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4846) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4848) +Defined in: [libs/jast/jast/src/lib/jats.ts:4848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4848) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4850) +Defined in: [libs/jast/jast/src/lib/jats.ts:4850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4850) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4852) +Defined in: [libs/jast/jast/src/lib/jats.ts:4852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4852) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4854) +Defined in: [libs/jast/jast/src/lib/jats.ts:4854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4854) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4856) +Defined in: [libs/jast/jast/src/lib/jats.ts:4856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4856) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4858) +Defined in: [libs/jast/jast/src/lib/jats.ts:4858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4858) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4860) +Defined in: [libs/jast/jast/src/lib/jats.ts:4860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4860) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4862) +Defined in: [libs/jast/jast/src/lib/jats.ts:4862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4862) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4864) +Defined in: [libs/jast/jast/src/lib/jats.ts:4864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4864) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4866) +Defined in: [libs/jast/jast/src/lib/jats.ts:4866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4866) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4868) +Defined in: [libs/jast/jast/src/lib/jats.ts:4868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4868) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4870) +Defined in: [libs/jast/jast/src/lib/jats.ts:4870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4870) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4872) +Defined in: [libs/jast/jast/src/lib/jats.ts:4872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4872) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4874) +Defined in: [libs/jast/jast/src/lib/jats.ts:4874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4874) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4876) +Defined in: [libs/jast/jast/src/lib/jats.ts:4876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4876) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4878) +Defined in: [libs/jast/jast/src/lib/jats.ts:4878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4878) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4880) +Defined in: [libs/jast/jast/src/lib/jats.ts:4880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4880) -*** +--- ### `FundingStatement` @@ -19139,7 +19139,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**FundingStatement** +- [`Node`](modules.md#node).**FundingStatement** #### Properties @@ -19157,19 +19157,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4886) +Defined in: [libs/jast/jast/src/lib/jats.ts:4886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4886) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`FundingStatementChildrenMap`](modules.md#fundingstatementchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4892) +Defined in: [libs/jast/jast/src/lib/jats.ts:4892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4892) ##### `data?` @@ -19179,13 +19179,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"fundingStatement"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4885) +Defined in: [libs/jast/jast/src/lib/jats.ts:4885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4885) ##### `position?` @@ -19196,7 +19196,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -19206,9 +19206,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4884) +Defined in: [libs/jast/jast/src/lib/jats.ts:4884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4884) -*** +--- ### `FundingStatementChildrenMap` @@ -19218,111 +19218,111 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4884](https://github.com/TrialAndEr > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4896) +Defined in: [libs/jast/jast/src/lib/jats.ts:4896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4896) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4898) +Defined in: [libs/jast/jast/src/lib/jats.ts:4898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4898) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4900) +Defined in: [libs/jast/jast/src/lib/jats.ts:4900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4900) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4902) +Defined in: [libs/jast/jast/src/lib/jats.ts:4902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4902) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4904) +Defined in: [libs/jast/jast/src/lib/jats.ts:4904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4904) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4906) +Defined in: [libs/jast/jast/src/lib/jats.ts:4906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4906) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4908) +Defined in: [libs/jast/jast/src/lib/jats.ts:4908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4908) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4910) +Defined in: [libs/jast/jast/src/lib/jats.ts:4910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4910) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4912) +Defined in: [libs/jast/jast/src/lib/jats.ts:4912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4912) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4914) +Defined in: [libs/jast/jast/src/lib/jats.ts:4914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4914) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4916) +Defined in: [libs/jast/jast/src/lib/jats.ts:4916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4916) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4918) +Defined in: [libs/jast/jast/src/lib/jats.ts:4918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4918) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4920) +Defined in: [libs/jast/jast/src/lib/jats.ts:4920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4920) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4922) +Defined in: [libs/jast/jast/src/lib/jats.ts:4922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4922) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4924) +Defined in: [libs/jast/jast/src/lib/jats.ts:4924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4924) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4926) +Defined in: [libs/jast/jast/src/lib/jats.ts:4926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4926) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4928) +Defined in: [libs/jast/jast/src/lib/jats.ts:4928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4928) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4930) +Defined in: [libs/jast/jast/src/lib/jats.ts:4930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4930) -*** +--- ### `GivenNames` @@ -19330,7 +19330,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**GivenNames** +- [`Node`](modules.md#node).**GivenNames** #### Properties @@ -19347,18 +19347,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :---------- | :------- | +| `id`? | `string` | | `initials`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4936) +Defined in: [libs/jast/jast/src/lib/jats.ts:4936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4936) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4940) +Defined in: [libs/jast/jast/src/lib/jats.ts:4940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4940) ##### `data?` @@ -19368,13 +19368,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"givenNames"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4935](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4935) +Defined in: [libs/jast/jast/src/lib/jats.ts:4935](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4935) ##### `position?` @@ -19385,7 +19385,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -19395,9 +19395,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4934) +Defined in: [libs/jast/jast/src/lib/jats.ts:4934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4934) -*** +--- ### `Glossary` @@ -19405,7 +19405,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Glossary** +- [`Node`](modules.md#node).**Glossary** #### Properties @@ -19422,18 +19422,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:4946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4946) +Defined in: [libs/jast/jast/src/lib/jats.ts:4946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4946) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`GlossaryChildrenMap`](modules.md#glossarychildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4951](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4951) +Defined in: [libs/jast/jast/src/lib/jats.ts:4951](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4951) ##### `data?` @@ -19443,13 +19443,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"glossary"` -Defined in: [libs/jast/jast/src/lib/jats.ts:4945](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4945) +Defined in: [libs/jast/jast/src/lib/jats.ts:4945](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4945) ##### `position?` @@ -19460,7 +19460,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -19470,9 +19470,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:4944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4944) +Defined in: [libs/jast/jast/src/lib/jats.ts:4944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4944) -*** +--- ### `GlossaryChildrenMap` @@ -19482,231 +19482,231 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:4944](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4957](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4957) +Defined in: [libs/jast/jast/src/lib/jats.ts:4957](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4957) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4959) +Defined in: [libs/jast/jast/src/lib/jats.ts:4959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4959) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4961) +Defined in: [libs/jast/jast/src/lib/jats.ts:4961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4961) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4963) +Defined in: [libs/jast/jast/src/lib/jats.ts:4963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4963) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4965) +Defined in: [libs/jast/jast/src/lib/jats.ts:4965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4965) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4967) +Defined in: [libs/jast/jast/src/lib/jats.ts:4967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4967) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4969) +Defined in: [libs/jast/jast/src/lib/jats.ts:4969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4969) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4971) +Defined in: [libs/jast/jast/src/lib/jats.ts:4971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4971) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4973) +Defined in: [libs/jast/jast/src/lib/jats.ts:4973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4973) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4975) +Defined in: [libs/jast/jast/src/lib/jats.ts:4975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4975) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4977) +Defined in: [libs/jast/jast/src/lib/jats.ts:4977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4977) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4979) +Defined in: [libs/jast/jast/src/lib/jats.ts:4979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4979) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4981) +Defined in: [libs/jast/jast/src/lib/jats.ts:4981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4981) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4983) +Defined in: [libs/jast/jast/src/lib/jats.ts:4983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4983) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4985) +Defined in: [libs/jast/jast/src/lib/jats.ts:4985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4985) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4987) +Defined in: [libs/jast/jast/src/lib/jats.ts:4987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4987) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4989) +Defined in: [libs/jast/jast/src/lib/jats.ts:4989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4989) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4991) +Defined in: [libs/jast/jast/src/lib/jats.ts:4991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4991) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:4993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4993) +Defined in: [libs/jast/jast/src/lib/jats.ts:4993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4993) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4995) +Defined in: [libs/jast/jast/src/lib/jats.ts:4995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4995) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4997) +Defined in: [libs/jast/jast/src/lib/jats.ts:4997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4997) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:4999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4999) +Defined in: [libs/jast/jast/src/lib/jats.ts:4999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4999) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5001) +Defined in: [libs/jast/jast/src/lib/jats.ts:5001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5001) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5003) +Defined in: [libs/jast/jast/src/lib/jats.ts:5003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5003) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5005) +Defined in: [libs/jast/jast/src/lib/jats.ts:5005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5005) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5007) +Defined in: [libs/jast/jast/src/lib/jats.ts:5007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5007) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5009) +Defined in: [libs/jast/jast/src/lib/jats.ts:5009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5009) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5011) +Defined in: [libs/jast/jast/src/lib/jats.ts:5011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5011) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5013) +Defined in: [libs/jast/jast/src/lib/jats.ts:5013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5013) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5015](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5015) +Defined in: [libs/jast/jast/src/lib/jats.ts:5015](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5015) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5017](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5017) +Defined in: [libs/jast/jast/src/lib/jats.ts:5017](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5017) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5019) +Defined in: [libs/jast/jast/src/lib/jats.ts:5019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5019) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5021) +Defined in: [libs/jast/jast/src/lib/jats.ts:5021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5021) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5023](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5023) +Defined in: [libs/jast/jast/src/lib/jats.ts:5023](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5023) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5025) +Defined in: [libs/jast/jast/src/lib/jats.ts:5025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5025) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:4955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4955) +Defined in: [libs/jast/jast/src/lib/jats.ts:4955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L4955) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:5027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5027) +Defined in: [libs/jast/jast/src/lib/jats.ts:5027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5027) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5029) +Defined in: [libs/jast/jast/src/lib/jats.ts:5029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5029) -*** +--- ### `GlyphData` @@ -19714,7 +19714,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**GlyphData** +- [`Node`](modules.md#node).**GlyphData** #### Properties @@ -19736,23 +19736,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `fontchar`? | `string` | -| `fontname`? | `string` | -| `format`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------ | :------- | +| `fontchar`? | `string` | +| `fontname`? | `string` | +| `format`? | `string` | +| `id`? | `string` | | `resolution`? | `string` | -| `xSize`? | `string` | -| `ySize`? | `string` | +| `xSize`? | `string` | +| `ySize`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5035) +Defined in: [libs/jast/jast/src/lib/jats.ts:5035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5035) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:5044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5044) +Defined in: [libs/jast/jast/src/lib/jats.ts:5044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5044) ##### `data?` @@ -19762,13 +19762,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"glyphData"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5034) +Defined in: [libs/jast/jast/src/lib/jats.ts:5034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5034) ##### `position?` @@ -19779,7 +19779,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -19789,9 +19789,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5033) +Defined in: [libs/jast/jast/src/lib/jats.ts:5033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5033) -*** +--- ### `GlyphRef` @@ -19799,7 +19799,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**GlyphRef** +- [`Node`](modules.md#node).**GlyphRef** #### Properties @@ -19816,18 +19816,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :----------- | :------- | | `glyphData`? | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5050](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5050) +Defined in: [libs/jast/jast/src/lib/jats.ts:5050](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5050) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:5054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5054) +Defined in: [libs/jast/jast/src/lib/jats.ts:5054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5054) ##### `data?` @@ -19837,13 +19837,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"glyphRef"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5049) +Defined in: [libs/jast/jast/src/lib/jats.ts:5049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5049) ##### `position?` @@ -19854,7 +19854,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -19864,9 +19864,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5048) +Defined in: [libs/jast/jast/src/lib/jats.ts:5048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5048) -*** +--- ### `Gov` @@ -19874,7 +19874,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Gov** +- [`Node`](modules.md#node).**Gov** #### Properties @@ -19891,18 +19891,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5060](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5060) +Defined in: [libs/jast/jast/src/lib/jats.ts:5060](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5060) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`GovChildrenMap`](modules.md#govchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5065) +Defined in: [libs/jast/jast/src/lib/jats.ts:5065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5065) ##### `data?` @@ -19912,13 +19912,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"gov"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5059) +Defined in: [libs/jast/jast/src/lib/jats.ts:5059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5059) ##### `position?` @@ -19929,7 +19929,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -19939,9 +19939,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5058](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5058) +Defined in: [libs/jast/jast/src/lib/jats.ts:5058](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5058) -*** +--- ### `GovChildrenMap` @@ -19951,15 +19951,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5058](https://github.com/TrialAndEr > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5071) +Defined in: [libs/jast/jast/src/lib/jats.ts:5071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5071) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5069) +Defined in: [libs/jast/jast/src/lib/jats.ts:5069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5069) -*** +--- ### `Graphic` @@ -19967,7 +19967,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Graphic** +- [`Node`](modules.md#node).**Graphic** #### Properties @@ -19990,24 +19990,24 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | -| `mimeSubtype`? | `string` | -| `mimetype`? | `string` | +| Member | Type | +| :------------- | :----------------------- | +| `hreflang`? | `string` | +| `id`? | `string` | +| `mimeSubtype`? | `string` | +| `mimetype`? | `string` | | `orientation`? | `GraphicTypeOrientation` | -| `position`? | `GraphicTypePosition` | -| `specificUse`? | `string` | -| `xlink:href`? | `string` | +| `position`? | `GraphicTypePosition` | +| `specificUse`? | `string` | +| `xlink:href`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5077) +Defined in: [libs/jast/jast/src/lib/jats.ts:5077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5077) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`GraphicChildrenMap`](modules.md#graphicchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5088) +Defined in: [libs/jast/jast/src/lib/jats.ts:5088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5088) ##### `data?` @@ -20017,13 +20017,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"graphic"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5076) +Defined in: [libs/jast/jast/src/lib/jats.ts:5076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5076) ##### `position?` @@ -20034,7 +20034,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -20044,9 +20044,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5075) +Defined in: [libs/jast/jast/src/lib/jats.ts:5075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5075) -*** +--- ### `GraphicChildrenMap` @@ -20056,93 +20056,93 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5075](https://github.com/TrialAndEr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5093](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5093) +Defined in: [libs/jast/jast/src/lib/jats.ts:5093](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5093) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5095](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5095) +Defined in: [libs/jast/jast/src/lib/jats.ts:5095](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5095) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5097](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5097) +Defined in: [libs/jast/jast/src/lib/jats.ts:5097](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5097) ##### `caption?` > [`Caption`](modules.md#caption)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5099) +Defined in: [libs/jast/jast/src/lib/jats.ts:5099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5099) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5101](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5101) +Defined in: [libs/jast/jast/src/lib/jats.ts:5101](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5101) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5103) +Defined in: [libs/jast/jast/src/lib/jats.ts:5103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5103) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5105) +Defined in: [libs/jast/jast/src/lib/jats.ts:5105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5105) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5107](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5107) +Defined in: [libs/jast/jast/src/lib/jats.ts:5107](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5107) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5109) +Defined in: [libs/jast/jast/src/lib/jats.ts:5109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5109) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5111) +Defined in: [libs/jast/jast/src/lib/jats.ts:5111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5111) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5113) +Defined in: [libs/jast/jast/src/lib/jats.ts:5113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5113) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5114) +Defined in: [libs/jast/jast/src/lib/jats.ts:5114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5114) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5092) +Defined in: [libs/jast/jast/src/lib/jats.ts:5092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5092) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5116) +Defined in: [libs/jast/jast/src/lib/jats.ts:5116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5116) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5118) +Defined in: [libs/jast/jast/src/lib/jats.ts:5118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5118) -*** +--- ### `History` @@ -20150,7 +20150,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**History** +- [`Node`](modules.md#node).**History** #### Properties @@ -20166,17 +20166,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5128) +Defined in: [libs/jast/jast/src/lib/jats.ts:5128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5128) ##### `children` > [`Date`](modules.md#date)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5132) +Defined in: [libs/jast/jast/src/lib/jats.ts:5132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5132) ##### `data?` @@ -20186,13 +20186,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"history"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5127) +Defined in: [libs/jast/jast/src/lib/jats.ts:5127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5127) ##### `position?` @@ -20203,7 +20203,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -20213,9 +20213,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5126) +Defined in: [libs/jast/jast/src/lib/jats.ts:5126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5126) -*** +--- ### `HistoryChildrenMap` @@ -20225,9 +20225,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5126](https://github.com/TrialAndEr > [`Date`](modules.md#date)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5136) +Defined in: [libs/jast/jast/src/lib/jats.ts:5136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5136) -*** +--- ### `Hr` @@ -20235,7 +20235,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Hr** +- [`Node`](modules.md#node).**Hr** #### Properties @@ -20251,17 +20251,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5142) +Defined in: [libs/jast/jast/src/lib/jats.ts:5142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5142) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:5145](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5145) +Defined in: [libs/jast/jast/src/lib/jats.ts:5145](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5145) ##### `data?` @@ -20271,13 +20271,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"hr"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5141) +Defined in: [libs/jast/jast/src/lib/jats.ts:5141](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5141) ##### `position?` @@ -20288,7 +20288,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -20298,9 +20298,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5140](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5140) +Defined in: [libs/jast/jast/src/lib/jats.ts:5140](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5140) -*** +--- ### `IndexTerm` @@ -20308,7 +20308,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**IndexTerm** +- [`Node`](modules.md#node).**IndexTerm** #### Properties @@ -20330,23 +20330,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `indexType`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `id`? | `string` | +| `indexType`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5161) +Defined in: [libs/jast/jast/src/lib/jats.ts:5161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5161) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`IndexTermChildrenMap`](modules.md#indextermchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5171](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5171) +Defined in: [libs/jast/jast/src/lib/jats.ts:5171](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5171) ##### `data?` @@ -20356,13 +20356,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"indexTerm"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5160) +Defined in: [libs/jast/jast/src/lib/jats.ts:5160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5160) ##### `position?` @@ -20373,7 +20373,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -20383,9 +20383,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5159](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5159) +Defined in: [libs/jast/jast/src/lib/jats.ts:5159](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5159) -*** +--- ### `IndexTermChildrenMap` @@ -20395,33 +20395,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5159](https://github.com/TrialAndEr > [`IndexTerm`](modules.md#indexterm) -Defined in: [libs/jast/jast/src/lib/jats.ts:5177](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5177) +Defined in: [libs/jast/jast/src/lib/jats.ts:5177](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5177) ##### `see?` > [`See`](modules.md#see)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5179](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5179) +Defined in: [libs/jast/jast/src/lib/jats.ts:5179](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5179) ##### `seeAlso?` > [`SeeAlso`](modules.md#seealso)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5181](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5181) +Defined in: [libs/jast/jast/src/lib/jats.ts:5181](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5181) ##### `term` > [`Term`](modules.md#term) -Defined in: [libs/jast/jast/src/lib/jats.ts:5183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5183) +Defined in: [libs/jast/jast/src/lib/jats.ts:5183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5183) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5175](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5175) +Defined in: [libs/jast/jast/src/lib/jats.ts:5175](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5175) -*** +--- ### `IndexTermrangeend` @@ -20429,7 +20429,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**IndexTermrangeend** +- [`Node`](modules.md#node).**IndexTermrangeend** #### Properties @@ -20446,18 +20446,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid` | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | +| `rid` | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5151) +Defined in: [libs/jast/jast/src/lib/jats.ts:5151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5151) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:5155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5155) +Defined in: [libs/jast/jast/src/lib/jats.ts:5155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5155) ##### `data?` @@ -20467,13 +20467,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"indexTermrangeend"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5150) +Defined in: [libs/jast/jast/src/lib/jats.ts:5150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5150) ##### `position?` @@ -20484,7 +20484,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -20494,9 +20494,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5149) +Defined in: [libs/jast/jast/src/lib/jats.ts:5149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5149) -*** +--- ### `InlineFormula` @@ -20504,7 +20504,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**InlineFormula** +- [`Node`](modules.md#node).**InlineFormula** #### Properties @@ -20521,18 +20521,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5189) +Defined in: [libs/jast/jast/src/lib/jats.ts:5189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5189) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`InlineFormulaChildrenMap`](modules.md#inlineformulachildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5194) +Defined in: [libs/jast/jast/src/lib/jats.ts:5194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5194) ##### `data?` @@ -20542,13 +20542,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"inlineFormula"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5188) +Defined in: [libs/jast/jast/src/lib/jats.ts:5188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5188) ##### `position?` @@ -20559,7 +20559,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -20569,9 +20569,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5187) +Defined in: [libs/jast/jast/src/lib/jats.ts:5187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5187) -*** +--- ### `InlineFormulaChildrenMap` @@ -20581,153 +20581,153 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5187](https://github.com/TrialAndEr > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5200) +Defined in: [libs/jast/jast/src/lib/jats.ts:5200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5200) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5202) +Defined in: [libs/jast/jast/src/lib/jats.ts:5202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5202) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5204) +Defined in: [libs/jast/jast/src/lib/jats.ts:5204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5204) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5206) +Defined in: [libs/jast/jast/src/lib/jats.ts:5206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5206) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5208) +Defined in: [libs/jast/jast/src/lib/jats.ts:5208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5208) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5210) +Defined in: [libs/jast/jast/src/lib/jats.ts:5210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5210) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5212](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5212) +Defined in: [libs/jast/jast/src/lib/jats.ts:5212](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5212) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5214) +Defined in: [libs/jast/jast/src/lib/jats.ts:5214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5214) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5216) +Defined in: [libs/jast/jast/src/lib/jats.ts:5216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5216) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5218) +Defined in: [libs/jast/jast/src/lib/jats.ts:5218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5218) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5220) +Defined in: [libs/jast/jast/src/lib/jats.ts:5220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5220) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5222) +Defined in: [libs/jast/jast/src/lib/jats.ts:5222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5222) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5224) +Defined in: [libs/jast/jast/src/lib/jats.ts:5224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5224) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5226) +Defined in: [libs/jast/jast/src/lib/jats.ts:5226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5226) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5228) +Defined in: [libs/jast/jast/src/lib/jats.ts:5228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5228) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5230) +Defined in: [libs/jast/jast/src/lib/jats.ts:5230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5230) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5232) +Defined in: [libs/jast/jast/src/lib/jats.ts:5232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5232) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5234) +Defined in: [libs/jast/jast/src/lib/jats.ts:5234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5234) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5236) +Defined in: [libs/jast/jast/src/lib/jats.ts:5236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5236) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5238) +Defined in: [libs/jast/jast/src/lib/jats.ts:5238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5238) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5240) +Defined in: [libs/jast/jast/src/lib/jats.ts:5240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5240) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5242) +Defined in: [libs/jast/jast/src/lib/jats.ts:5242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5242) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5244) +Defined in: [libs/jast/jast/src/lib/jats.ts:5244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5244) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5198) +Defined in: [libs/jast/jast/src/lib/jats.ts:5198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5198) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5246) +Defined in: [libs/jast/jast/src/lib/jats.ts:5246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5246) -*** +--- ### `InlineGraphic` @@ -20735,7 +20735,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**InlineGraphic** +- [`Node`](modules.md#node).**InlineGraphic** #### Properties @@ -20757,23 +20757,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `UnistNodelineShift`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `mimeSubtype`? | `string` | -| `mimetype`? | `string` | -| `specificUse`? | `string` | -| `xlink:href`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `mimeSubtype`? | `string` | +| `mimetype`? | `string` | +| `specificUse`? | `string` | +| `xlink:href`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5252) +Defined in: [libs/jast/jast/src/lib/jats.ts:5252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5252) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`InlineGraphicChildrenMap`](modules.md#inlinegraphicchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5262) +Defined in: [libs/jast/jast/src/lib/jats.ts:5262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5262) ##### `data?` @@ -20783,13 +20783,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"inlineGraphic"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5251) +Defined in: [libs/jast/jast/src/lib/jats.ts:5251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5251) ##### `position?` @@ -20800,7 +20800,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -20810,9 +20810,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5250) +Defined in: [libs/jast/jast/src/lib/jats.ts:5250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5250) -*** +--- ### `InlineGraphicChildrenMap` @@ -20822,21 +20822,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5250](https://github.com/TrialAndEr > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5268) +Defined in: [libs/jast/jast/src/lib/jats.ts:5268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5268) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5270](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5270) +Defined in: [libs/jast/jast/src/lib/jats.ts:5270](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5270) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5266) +Defined in: [libs/jast/jast/src/lib/jats.ts:5266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5266) -*** +--- ### `InlineMedia` @@ -20844,7 +20844,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**InlineMedia** +- [`Node`](modules.md#node).**InlineMedia** #### Properties @@ -20868,25 +20868,25 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | -| `mimeSubtype`? | `string` | -| `mimetype`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | +| `mimeSubtype`? | `string` | +| `mimetype`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5276) +Defined in: [libs/jast/jast/src/lib/jats.ts:5276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5276) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`InlineMediaChildrenMap`](modules.md#inlinemediachildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5288) +Defined in: [libs/jast/jast/src/lib/jats.ts:5288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5288) ##### `data?` @@ -20896,13 +20896,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"inlineMedia"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5275) +Defined in: [libs/jast/jast/src/lib/jats.ts:5275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5275) ##### `position?` @@ -20913,7 +20913,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -20923,9 +20923,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5274) +Defined in: [libs/jast/jast/src/lib/jats.ts:5274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5274) -*** +--- ### `InlineMediaChildrenMap` @@ -20935,129 +20935,129 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5274](https://github.com/TrialAndEr > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5294) +Defined in: [libs/jast/jast/src/lib/jats.ts:5294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5294) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5296) +Defined in: [libs/jast/jast/src/lib/jats.ts:5296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5296) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5298](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5298) +Defined in: [libs/jast/jast/src/lib/jats.ts:5298](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5298) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5300) +Defined in: [libs/jast/jast/src/lib/jats.ts:5300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5300) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5302) +Defined in: [libs/jast/jast/src/lib/jats.ts:5302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5302) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5304](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5304) +Defined in: [libs/jast/jast/src/lib/jats.ts:5304](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5304) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5306) +Defined in: [libs/jast/jast/src/lib/jats.ts:5306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5306) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5308) +Defined in: [libs/jast/jast/src/lib/jats.ts:5308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5308) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5310) +Defined in: [libs/jast/jast/src/lib/jats.ts:5310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5310) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5312) +Defined in: [libs/jast/jast/src/lib/jats.ts:5312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5312) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5314) +Defined in: [libs/jast/jast/src/lib/jats.ts:5314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5314) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5316) +Defined in: [libs/jast/jast/src/lib/jats.ts:5316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5316) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5318) +Defined in: [libs/jast/jast/src/lib/jats.ts:5318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5318) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5320) +Defined in: [libs/jast/jast/src/lib/jats.ts:5320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5320) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5322) +Defined in: [libs/jast/jast/src/lib/jats.ts:5322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5322) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5324) +Defined in: [libs/jast/jast/src/lib/jats.ts:5324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5324) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5326) +Defined in: [libs/jast/jast/src/lib/jats.ts:5326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5326) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5328) +Defined in: [libs/jast/jast/src/lib/jats.ts:5328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5328) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5292](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5292) +Defined in: [libs/jast/jast/src/lib/jats.ts:5292](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5292) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5330) +Defined in: [libs/jast/jast/src/lib/jats.ts:5330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5330) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5332) +Defined in: [libs/jast/jast/src/lib/jats.ts:5332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5332) -*** +--- ### `InlineSupplementarymaterial` @@ -21065,7 +21065,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**InlineSupplementarymaterial** +- [`Node`](modules.md#node).**InlineSupplementarymaterial** #### Properties @@ -21085,21 +21085,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `mimeSubtype`? | `string` | -| `mimetype`? | `string` | +| `mimetype`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5338) +Defined in: [libs/jast/jast/src/lib/jats.ts:5338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5338) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`InlineSupplementarymaterialChildrenMap`](modules.md#inlinesupplementarymaterialchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5346) +Defined in: [libs/jast/jast/src/lib/jats.ts:5346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5346) ##### `data?` @@ -21109,13 +21109,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"inlineSupplementarymaterial"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5337) +Defined in: [libs/jast/jast/src/lib/jats.ts:5337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5337) ##### `position?` @@ -21126,7 +21126,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -21136,9 +21136,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5336) +Defined in: [libs/jast/jast/src/lib/jats.ts:5336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5336) -*** +--- ### `InlineSupplementarymaterialChildrenMap` @@ -21148,129 +21148,129 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5336](https://github.com/TrialAndEr > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5352) +Defined in: [libs/jast/jast/src/lib/jats.ts:5352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5352) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5354) +Defined in: [libs/jast/jast/src/lib/jats.ts:5354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5354) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5356) +Defined in: [libs/jast/jast/src/lib/jats.ts:5356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5356) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5358) +Defined in: [libs/jast/jast/src/lib/jats.ts:5358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5358) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5360) +Defined in: [libs/jast/jast/src/lib/jats.ts:5360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5360) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5362) +Defined in: [libs/jast/jast/src/lib/jats.ts:5362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5362) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5364) +Defined in: [libs/jast/jast/src/lib/jats.ts:5364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5364) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5366) +Defined in: [libs/jast/jast/src/lib/jats.ts:5366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5366) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5368) +Defined in: [libs/jast/jast/src/lib/jats.ts:5368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5368) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5370) +Defined in: [libs/jast/jast/src/lib/jats.ts:5370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5370) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5372) +Defined in: [libs/jast/jast/src/lib/jats.ts:5372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5372) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5374) +Defined in: [libs/jast/jast/src/lib/jats.ts:5374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5374) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5376](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5376) +Defined in: [libs/jast/jast/src/lib/jats.ts:5376](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5376) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5378](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5378) +Defined in: [libs/jast/jast/src/lib/jats.ts:5378](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5378) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5380) +Defined in: [libs/jast/jast/src/lib/jats.ts:5380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5380) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5382](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5382) +Defined in: [libs/jast/jast/src/lib/jats.ts:5382](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5382) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5384) +Defined in: [libs/jast/jast/src/lib/jats.ts:5384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5384) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5386) +Defined in: [libs/jast/jast/src/lib/jats.ts:5386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5386) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5350) +Defined in: [libs/jast/jast/src/lib/jats.ts:5350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5350) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5388) +Defined in: [libs/jast/jast/src/lib/jats.ts:5388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5388) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5390) +Defined in: [libs/jast/jast/src/lib/jats.ts:5390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5390) -*** +--- ### `Institution` @@ -21278,7 +21278,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Institution** +- [`Node`](modules.md#node).**Institution** #### Properties @@ -21296,19 +21296,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5415) +Defined in: [libs/jast/jast/src/lib/jats.ts:5415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5415) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`InstitutionChildrenMap`](modules.md#institutionchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5421) +Defined in: [libs/jast/jast/src/lib/jats.ts:5421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5421) ##### `data?` @@ -21318,13 +21318,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"institution"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5414](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5414) +Defined in: [libs/jast/jast/src/lib/jats.ts:5414](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5414) ##### `position?` @@ -21335,7 +21335,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -21345,9 +21345,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5413) +Defined in: [libs/jast/jast/src/lib/jats.ts:5413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5413) -*** +--- ### `InstitutionChildrenMap` @@ -21357,21 +21357,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5413](https://github.com/TrialAndEr > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5427) +Defined in: [libs/jast/jast/src/lib/jats.ts:5427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5427) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5429](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5429) +Defined in: [libs/jast/jast/src/lib/jats.ts:5429](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5429) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5425](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5425) +Defined in: [libs/jast/jast/src/lib/jats.ts:5425](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5425) -*** +--- ### `InstitutionId` @@ -21379,7 +21379,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**InstitutionId** +- [`Node`](modules.md#node).**InstitutionId** #### Properties @@ -21400,22 +21400,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `id`? | `string` | -| `institutionIdtype`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | +| `id`? | `string` | +| `institutionIdtype`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5396) +Defined in: [libs/jast/jast/src/lib/jats.ts:5396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5396) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5405) +Defined in: [libs/jast/jast/src/lib/jats.ts:5405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5405) ##### `data?` @@ -21425,13 +21425,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"institutionId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5395) +Defined in: [libs/jast/jast/src/lib/jats.ts:5395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5395) ##### `position?` @@ -21442,7 +21442,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -21452,9 +21452,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5394) +Defined in: [libs/jast/jast/src/lib/jats.ts:5394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5394) -*** +--- ### `InstitutionIdChildrenMap` @@ -21464,9 +21464,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5394](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5409) +Defined in: [libs/jast/jast/src/lib/jats.ts:5409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5409) -*** +--- ### `InstitutionWrap` @@ -21474,7 +21474,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**InstitutionWrap** +- [`Node`](modules.md#node).**InstitutionWrap** #### Properties @@ -21490,17 +21490,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5435) +Defined in: [libs/jast/jast/src/lib/jats.ts:5435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5435) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`InstitutionWrapChildrenMap`](modules.md#institutionwrapchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5439](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5439) +Defined in: [libs/jast/jast/src/lib/jats.ts:5439](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5439) ##### `data?` @@ -21510,13 +21510,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"institutionWrap"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5434) +Defined in: [libs/jast/jast/src/lib/jats.ts:5434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5434) ##### `position?` @@ -21527,7 +21527,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -21537,9 +21537,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5433) +Defined in: [libs/jast/jast/src/lib/jats.ts:5433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5433) -*** +--- ### `InstitutionWrapChildrenMap` @@ -21549,15 +21549,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5433](https://github.com/TrialAndEr > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5443](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5443) +Defined in: [libs/jast/jast/src/lib/jats.ts:5443](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5443) ##### `institutionId?` > [`InstitutionId`](modules.md#institutionid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5445) +Defined in: [libs/jast/jast/src/lib/jats.ts:5445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5445) -*** +--- ### `Isbn` @@ -21565,7 +21565,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Isbn** +- [`Node`](modules.md#node).**Isbn** #### Properties @@ -21584,20 +21584,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `id`? | `string` | -| `publicationFormat`? | `string` | -| `specificUse`? | `string` | +| `id`? | `string` | +| `publicationFormat`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5451) +Defined in: [libs/jast/jast/src/lib/jats.ts:5451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5451) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5458) +Defined in: [libs/jast/jast/src/lib/jats.ts:5458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5458) ##### `data?` @@ -21607,13 +21607,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"isbn"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5450) +Defined in: [libs/jast/jast/src/lib/jats.ts:5450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5450) ##### `position?` @@ -21624,7 +21624,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -21634,9 +21634,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5449) +Defined in: [libs/jast/jast/src/lib/jats.ts:5449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5449) -*** +--- ### `IsbnChildrenMap` @@ -21646,9 +21646,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5449](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5462) +Defined in: [libs/jast/jast/src/lib/jats.ts:5462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5462) -*** +--- ### `Issn` @@ -21656,7 +21656,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Issn** +- [`Node`](modules.md#node).**Issn** #### Properties @@ -21676,21 +21676,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `id`? | `string` | -| `pubType`? | `string` | -| `publicationFormat`? | `string` | -| `specificUse`? | `string` | +| `id`? | `string` | +| `pubType`? | `string` | +| `publicationFormat`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5479) +Defined in: [libs/jast/jast/src/lib/jats.ts:5479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5479) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5487) +Defined in: [libs/jast/jast/src/lib/jats.ts:5487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5487) ##### `data?` @@ -21700,13 +21700,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"issn"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5478) +Defined in: [libs/jast/jast/src/lib/jats.ts:5478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5478) ##### `position?` @@ -21717,7 +21717,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -21727,9 +21727,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5477](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5477) +Defined in: [libs/jast/jast/src/lib/jats.ts:5477](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5477) -*** +--- ### `IssnChildrenMap` @@ -21739,9 +21739,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5477](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5491) +Defined in: [libs/jast/jast/src/lib/jats.ts:5491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5491) -*** +--- ### `IssnL` @@ -21749,7 +21749,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**IssnL** +- [`Node`](modules.md#node).**IssnL** #### Properties @@ -21767,19 +21767,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5468) +Defined in: [libs/jast/jast/src/lib/jats.ts:5468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5468) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:5473](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5473) +Defined in: [libs/jast/jast/src/lib/jats.ts:5473](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5473) ##### `data?` @@ -21789,13 +21789,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"issnL"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5467) +Defined in: [libs/jast/jast/src/lib/jats.ts:5467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5467) ##### `position?` @@ -21806,7 +21806,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -21816,9 +21816,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5466) +Defined in: [libs/jast/jast/src/lib/jats.ts:5466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5466) -*** +--- ### `Issue` @@ -21826,7 +21826,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Issue** +- [`Node`](modules.md#node).**Issue** #### Properties @@ -21844,19 +21844,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `seq`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `seq`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5596) +Defined in: [libs/jast/jast/src/lib/jats.ts:5596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5596) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5602) +Defined in: [libs/jast/jast/src/lib/jats.ts:5602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5602) ##### `data?` @@ -21866,13 +21866,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"issue"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5595) +Defined in: [libs/jast/jast/src/lib/jats.ts:5595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5595) ##### `position?` @@ -21883,7 +21883,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -21893,9 +21893,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5594) +Defined in: [libs/jast/jast/src/lib/jats.ts:5594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5594) -*** +--- ### `IssueChildrenMap` @@ -21905,9 +21905,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5594](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5606) +Defined in: [libs/jast/jast/src/lib/jats.ts:5606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5606) -*** +--- ### `IssueId` @@ -21915,7 +21915,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**IssueId** +- [`Node`](modules.md#node).**IssueId** #### Properties @@ -21935,21 +21935,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `pubIdType`? | `string` | -| `specificUse`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `pubIdType`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5497) +Defined in: [libs/jast/jast/src/lib/jats.ts:5497](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5497) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5505) +Defined in: [libs/jast/jast/src/lib/jats.ts:5505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5505) ##### `data?` @@ -21959,13 +21959,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"issueId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5496) +Defined in: [libs/jast/jast/src/lib/jats.ts:5496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5496) ##### `position?` @@ -21976,7 +21976,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -21986,9 +21986,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5495](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5495) +Defined in: [libs/jast/jast/src/lib/jats.ts:5495](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5495) -*** +--- ### `IssueIdChildrenMap` @@ -21998,9 +21998,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5495](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5509) +Defined in: [libs/jast/jast/src/lib/jats.ts:5509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5509) -*** +--- ### `IssuePart` @@ -22008,7 +22008,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**IssuePart** +- [`Node`](modules.md#node).**IssuePart** #### Properties @@ -22025,18 +22025,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5515) +Defined in: [libs/jast/jast/src/lib/jats.ts:5515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5515) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5520) +Defined in: [libs/jast/jast/src/lib/jats.ts:5520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5520) ##### `data?` @@ -22046,13 +22046,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"issuePart"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5514) +Defined in: [libs/jast/jast/src/lib/jats.ts:5514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5514) ##### `position?` @@ -22063,7 +22063,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -22073,9 +22073,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5513) +Defined in: [libs/jast/jast/src/lib/jats.ts:5513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5513) -*** +--- ### `IssuePartChildrenMap` @@ -22085,9 +22085,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5513](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5524) +Defined in: [libs/jast/jast/src/lib/jats.ts:5524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5524) -*** +--- ### `IssueSponsor` @@ -22095,7 +22095,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**IssueSponsor** +- [`Node`](modules.md#node).**IssueSponsor** #### Properties @@ -22112,18 +22112,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5530) +Defined in: [libs/jast/jast/src/lib/jats.ts:5530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5530) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5535) +Defined in: [libs/jast/jast/src/lib/jats.ts:5535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5535) ##### `data?` @@ -22133,13 +22133,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"issueSponsor"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5529](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5529) +Defined in: [libs/jast/jast/src/lib/jats.ts:5529](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5529) ##### `position?` @@ -22150,7 +22150,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -22160,9 +22160,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5528) +Defined in: [libs/jast/jast/src/lib/jats.ts:5528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5528) -*** +--- ### `IssueSponsorChildrenMap` @@ -22172,9 +22172,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5528](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5539) +Defined in: [libs/jast/jast/src/lib/jats.ts:5539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5539) -*** +--- ### `IssueSubtitle` @@ -22182,7 +22182,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**IssueSubtitle** +- [`Node`](modules.md#node).**IssueSubtitle** #### Properties @@ -22199,18 +22199,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5545) +Defined in: [libs/jast/jast/src/lib/jats.ts:5545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5545) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5550](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5550) +Defined in: [libs/jast/jast/src/lib/jats.ts:5550](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5550) ##### `data?` @@ -22220,13 +22220,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"issueSubtitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5544](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5544) +Defined in: [libs/jast/jast/src/lib/jats.ts:5544](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5544) ##### `position?` @@ -22237,7 +22237,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -22247,9 +22247,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5543) +Defined in: [libs/jast/jast/src/lib/jats.ts:5543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5543) -*** +--- ### `IssueSubtitleChildrenMap` @@ -22259,9 +22259,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5543](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5554](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5554) +Defined in: [libs/jast/jast/src/lib/jats.ts:5554](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5554) -*** +--- ### `IssueTitle` @@ -22269,7 +22269,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**IssueTitle** +- [`Node`](modules.md#node).**IssueTitle** #### Properties @@ -22286,18 +22286,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5581) +Defined in: [libs/jast/jast/src/lib/jats.ts:5581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5581) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5586) +Defined in: [libs/jast/jast/src/lib/jats.ts:5586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5586) ##### `data?` @@ -22307,13 +22307,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"issueTitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5580](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5580) +Defined in: [libs/jast/jast/src/lib/jats.ts:5580](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5580) ##### `position?` @@ -22324,7 +22324,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -22334,9 +22334,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5579) +Defined in: [libs/jast/jast/src/lib/jats.ts:5579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5579) -*** +--- ### `IssueTitleChildrenMap` @@ -22346,9 +22346,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5579](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5590) +Defined in: [libs/jast/jast/src/lib/jats.ts:5590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5590) -*** +--- ### `IssueTitlegroup` @@ -22356,7 +22356,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**IssueTitlegroup** +- [`Node`](modules.md#node).**IssueTitlegroup** #### Properties @@ -22373,18 +22373,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5560](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5560) +Defined in: [libs/jast/jast/src/lib/jats.ts:5560](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5560) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`IssueTitlegroupChildrenMap`](modules.md#issuetitlegroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5565) +Defined in: [libs/jast/jast/src/lib/jats.ts:5565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5565) ##### `data?` @@ -22394,13 +22394,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"issueTitlegroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5559](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5559) +Defined in: [libs/jast/jast/src/lib/jats.ts:5559](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5559) ##### `position?` @@ -22411,7 +22411,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -22421,9 +22421,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5558) +Defined in: [libs/jast/jast/src/lib/jats.ts:5558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5558) -*** +--- ### `IssueTitlegroupChildrenMap` @@ -22433,27 +22433,27 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5558](https://github.com/TrialAndEr > [`IssueSubtitle`](modules.md#issuesubtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5571) +Defined in: [libs/jast/jast/src/lib/jats.ts:5571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5571) ##### `issueTitle` > [`IssueTitle`](modules.md#issuetitle) -Defined in: [libs/jast/jast/src/lib/jats.ts:5573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5573) +Defined in: [libs/jast/jast/src/lib/jats.ts:5573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5573) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5569) +Defined in: [libs/jast/jast/src/lib/jats.ts:5569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5569) ##### `transTitlegroup?` > [`TransTitlegroup`](modules.md#transtitlegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5575) +Defined in: [libs/jast/jast/src/lib/jats.ts:5575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5575) -*** +--- ### `Italic` @@ -22461,7 +22461,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Italic** +- [`Node`](modules.md#node).**Italic** #### Properties @@ -22479,19 +22479,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `specificUse`? | `string` | -| `toggle`? | `ItalicTypeToggle` | +| Member | Type | +| :------------- | :----------------- | +| `id`? | `string` | +| `specificUse`? | `string` | +| `toggle`? | `ItalicTypeToggle` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5612) +Defined in: [libs/jast/jast/src/lib/jats.ts:5612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5612) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ItalicChildrenMap`](modules.md#italicchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5618) +Defined in: [libs/jast/jast/src/lib/jats.ts:5618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5618) ##### `data?` @@ -22501,13 +22501,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"italic"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5611) +Defined in: [libs/jast/jast/src/lib/jats.ts:5611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5611) ##### `position?` @@ -22518,7 +22518,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -22528,9 +22528,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5610) +Defined in: [libs/jast/jast/src/lib/jats.ts:5610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5610) -*** +--- ### `ItalicChildrenMap` @@ -22540,219 +22540,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5610](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5622) +Defined in: [libs/jast/jast/src/lib/jats.ts:5622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5622) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5624) +Defined in: [libs/jast/jast/src/lib/jats.ts:5624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5624) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5626) +Defined in: [libs/jast/jast/src/lib/jats.ts:5626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5626) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5628) +Defined in: [libs/jast/jast/src/lib/jats.ts:5628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5628) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5630) +Defined in: [libs/jast/jast/src/lib/jats.ts:5630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5630) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5632) +Defined in: [libs/jast/jast/src/lib/jats.ts:5632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5632) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5634) +Defined in: [libs/jast/jast/src/lib/jats.ts:5634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5634) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5636) +Defined in: [libs/jast/jast/src/lib/jats.ts:5636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5636) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5638) +Defined in: [libs/jast/jast/src/lib/jats.ts:5638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5638) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5640) +Defined in: [libs/jast/jast/src/lib/jats.ts:5640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5640) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5642) +Defined in: [libs/jast/jast/src/lib/jats.ts:5642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5642) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5644) +Defined in: [libs/jast/jast/src/lib/jats.ts:5644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5644) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5646) +Defined in: [libs/jast/jast/src/lib/jats.ts:5646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5646) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5648) +Defined in: [libs/jast/jast/src/lib/jats.ts:5648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5648) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5650) +Defined in: [libs/jast/jast/src/lib/jats.ts:5650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5650) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5652) +Defined in: [libs/jast/jast/src/lib/jats.ts:5652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5652) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5654) +Defined in: [libs/jast/jast/src/lib/jats.ts:5654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5654) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5656) +Defined in: [libs/jast/jast/src/lib/jats.ts:5656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5656) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5658) +Defined in: [libs/jast/jast/src/lib/jats.ts:5658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5658) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5660) +Defined in: [libs/jast/jast/src/lib/jats.ts:5660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5660) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5662) +Defined in: [libs/jast/jast/src/lib/jats.ts:5662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5662) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5664) +Defined in: [libs/jast/jast/src/lib/jats.ts:5664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5664) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5666) +Defined in: [libs/jast/jast/src/lib/jats.ts:5666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5666) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5668) +Defined in: [libs/jast/jast/src/lib/jats.ts:5668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5668) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5670) +Defined in: [libs/jast/jast/src/lib/jats.ts:5670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5670) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5672) +Defined in: [libs/jast/jast/src/lib/jats.ts:5672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5672) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5674) +Defined in: [libs/jast/jast/src/lib/jats.ts:5674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5674) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5676) +Defined in: [libs/jast/jast/src/lib/jats.ts:5676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5676) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5678) +Defined in: [libs/jast/jast/src/lib/jats.ts:5678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5678) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5680) +Defined in: [libs/jast/jast/src/lib/jats.ts:5680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5680) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5682) +Defined in: [libs/jast/jast/src/lib/jats.ts:5682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5682) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5684) +Defined in: [libs/jast/jast/src/lib/jats.ts:5684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5684) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5686) +Defined in: [libs/jast/jast/src/lib/jats.ts:5686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5686) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5688) +Defined in: [libs/jast/jast/src/lib/jats.ts:5688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5688) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5690) +Defined in: [libs/jast/jast/src/lib/jats.ts:5690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5690) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5692) +Defined in: [libs/jast/jast/src/lib/jats.ts:5692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5692) -*** +--- ### `JournalId` @@ -22760,7 +22760,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**JournalId** +- [`Node`](modules.md#node).**JournalId** #### Properties @@ -22779,20 +22779,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `id`? | `string` | -| `journalIdtype`? | `string` | -| `specificUse`? | `string` | +| `id`? | `string` | +| `journalIdtype`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5700) +Defined in: [libs/jast/jast/src/lib/jats.ts:5700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5700) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:5706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5706) +Defined in: [libs/jast/jast/src/lib/jats.ts:5706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5706) ##### `data?` @@ -22802,13 +22802,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"journalId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5699](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5699) +Defined in: [libs/jast/jast/src/lib/jats.ts:5699](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5699) ##### `position?` @@ -22819,7 +22819,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -22829,9 +22829,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5698) +Defined in: [libs/jast/jast/src/lib/jats.ts:5698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5698) -*** +--- ### `JournalMeta` @@ -22839,7 +22839,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**JournalMeta** +- [`Node`](modules.md#node).**JournalMeta** #### Properties @@ -22855,17 +22855,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5712) +Defined in: [libs/jast/jast/src/lib/jats.ts:5712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5712) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`JournalMetaChildrenMap`](modules.md#journalmetachildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5716) +Defined in: [libs/jast/jast/src/lib/jats.ts:5716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5716) ##### `data?` @@ -22875,13 +22875,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"journalMeta"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5711](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5711) +Defined in: [libs/jast/jast/src/lib/jats.ts:5711](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5711) ##### `position?` @@ -22892,7 +22892,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -22902,9 +22902,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5710) +Defined in: [libs/jast/jast/src/lib/jats.ts:5710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5710) -*** +--- ### `JournalMetaChildrenMap` @@ -22914,69 +22914,69 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5710](https://github.com/TrialAndEr > [`Aff`](modules.md#aff)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5720) +Defined in: [libs/jast/jast/src/lib/jats.ts:5720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5720) ##### `affAlternatives?` > [`AffAlternatives`](modules.md#affalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5722) +Defined in: [libs/jast/jast/src/lib/jats.ts:5722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5722) ##### `contribGroup?` > [`ContribGroup`](modules.md#contribgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5724) +Defined in: [libs/jast/jast/src/lib/jats.ts:5724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5724) ##### `isbn?` > [`Isbn`](modules.md#isbn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5726) +Defined in: [libs/jast/jast/src/lib/jats.ts:5726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5726) ##### `issn` > [`Issn`](modules.md#issn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5728) +Defined in: [libs/jast/jast/src/lib/jats.ts:5728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5728) ##### `issnL?` > [`IssnL`](modules.md#issnl) -Defined in: [libs/jast/jast/src/lib/jats.ts:5730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5730) +Defined in: [libs/jast/jast/src/lib/jats.ts:5730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5730) ##### `journalId` > [`JournalId`](modules.md#journalid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5732) +Defined in: [libs/jast/jast/src/lib/jats.ts:5732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5732) ##### `journalTitlegroup?` > [`JournalTitlegroup`](modules.md#journaltitlegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5734) +Defined in: [libs/jast/jast/src/lib/jats.ts:5734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5734) ##### `notes?` > [`Notes`](modules.md#notes)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5736) +Defined in: [libs/jast/jast/src/lib/jats.ts:5736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5736) ##### `publisher?` > [`Publisher`](modules.md#publisher) -Defined in: [libs/jast/jast/src/lib/jats.ts:5738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5738) +Defined in: [libs/jast/jast/src/lib/jats.ts:5738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5738) ##### `selfUri?` > [`SelfUri`](modules.md#selfuri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5740) +Defined in: [libs/jast/jast/src/lib/jats.ts:5740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5740) -*** +--- ### `JournalSubtitle` @@ -22984,7 +22984,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**JournalSubtitle** +- [`Node`](modules.md#node).**JournalSubtitle** #### Properties @@ -23001,18 +23001,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5746) +Defined in: [libs/jast/jast/src/lib/jats.ts:5746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5746) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5751) +Defined in: [libs/jast/jast/src/lib/jats.ts:5751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5751) ##### `data?` @@ -23022,13 +23022,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"journalSubtitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5745) +Defined in: [libs/jast/jast/src/lib/jats.ts:5745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5745) ##### `position?` @@ -23039,7 +23039,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -23049,9 +23049,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5744) +Defined in: [libs/jast/jast/src/lib/jats.ts:5744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5744) -*** +--- ### `JournalSubtitleChildrenMap` @@ -23061,9 +23061,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5744](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5755) +Defined in: [libs/jast/jast/src/lib/jats.ts:5755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5755) -*** +--- ### `JournalTitle` @@ -23071,7 +23071,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**JournalTitle** +- [`Node`](modules.md#node).**JournalTitle** #### Properties @@ -23088,18 +23088,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5783](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5783) +Defined in: [libs/jast/jast/src/lib/jats.ts:5783](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5783) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5788) +Defined in: [libs/jast/jast/src/lib/jats.ts:5788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5788) ##### `data?` @@ -23109,13 +23109,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"journalTitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5782) +Defined in: [libs/jast/jast/src/lib/jats.ts:5782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5782) ##### `position?` @@ -23126,7 +23126,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -23136,9 +23136,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5781](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5781) +Defined in: [libs/jast/jast/src/lib/jats.ts:5781](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5781) -*** +--- ### `JournalTitleChildrenMap` @@ -23148,9 +23148,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5781](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5792) +Defined in: [libs/jast/jast/src/lib/jats.ts:5792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5792) -*** +--- ### `JournalTitlegroup` @@ -23158,7 +23158,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**JournalTitlegroup** +- [`Node`](modules.md#node).**JournalTitlegroup** #### Properties @@ -23174,17 +23174,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5761) +Defined in: [libs/jast/jast/src/lib/jats.ts:5761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5761) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`JournalTitlegroupChildrenMap`](modules.md#journaltitlegroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5765](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5765) +Defined in: [libs/jast/jast/src/lib/jats.ts:5765](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5765) ##### `data?` @@ -23194,13 +23194,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"journalTitlegroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5760) +Defined in: [libs/jast/jast/src/lib/jats.ts:5760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5760) ##### `position?` @@ -23211,7 +23211,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -23221,9 +23221,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5759) +Defined in: [libs/jast/jast/src/lib/jats.ts:5759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5759) -*** +--- ### `JournalTitlegroupChildrenMap` @@ -23233,33 +23233,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5759](https://github.com/TrialAndEr > [`AbbrevJournaltitle`](modules.md#abbrevjournaltitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5771](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5771) +Defined in: [libs/jast/jast/src/lib/jats.ts:5771](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5771) ##### `journalSubtitle?` > [`JournalSubtitle`](modules.md#journalsubtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5773](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5773) +Defined in: [libs/jast/jast/src/lib/jats.ts:5773](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5773) ##### `journalTitle?` > [`JournalTitle`](modules.md#journaltitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5775](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5775) +Defined in: [libs/jast/jast/src/lib/jats.ts:5775](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5775) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5769) +Defined in: [libs/jast/jast/src/lib/jats.ts:5769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5769) ##### `transTitlegroup?` > [`TransTitlegroup`](modules.md#transtitlegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5777) +Defined in: [libs/jast/jast/src/lib/jats.ts:5777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5777) -*** +--- ### `Kwd` @@ -23267,7 +23267,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Kwd** +- [`Node`](modules.md#node).**Kwd** #### Properties @@ -23288,22 +23288,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `id`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `assigningAuthority`? | `string` | +| `id`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5825](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5825) +Defined in: [libs/jast/jast/src/lib/jats.ts:5825](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5825) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`KwdChildrenMap`](modules.md#kwdchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5834) +Defined in: [libs/jast/jast/src/lib/jats.ts:5834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5834) ##### `data?` @@ -23313,13 +23313,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"kwd"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5824) +Defined in: [libs/jast/jast/src/lib/jats.ts:5824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5824) ##### `position?` @@ -23330,7 +23330,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -23340,9 +23340,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5823](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5823) +Defined in: [libs/jast/jast/src/lib/jats.ts:5823](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5823) -*** +--- ### `KwdChildrenMap` @@ -23352,15 +23352,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5823](https://github.com/TrialAndEr > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5840) +Defined in: [libs/jast/jast/src/lib/jats.ts:5840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5840) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5838) +Defined in: [libs/jast/jast/src/lib/jats.ts:5838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5838) -*** +--- ### `KwdGroup` @@ -23368,7 +23368,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**KwdGroup** +- [`Node`](modules.md#node).**KwdGroup** #### Properties @@ -23389,22 +23389,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `id`? | `string` | -| `kwdGrouptype`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | +| `id`? | `string` | +| `kwdGrouptype`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5798) +Defined in: [libs/jast/jast/src/lib/jats.ts:5798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5798) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`KwdGroupChildrenMap`](modules.md#kwdgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5807) +Defined in: [libs/jast/jast/src/lib/jats.ts:5807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5807) ##### `data?` @@ -23414,13 +23414,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"kwdGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5797](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5797) +Defined in: [libs/jast/jast/src/lib/jats.ts:5797](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5797) ##### `position?` @@ -23431,7 +23431,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -23441,9 +23441,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5796) +Defined in: [libs/jast/jast/src/lib/jats.ts:5796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5796) -*** +--- ### `KwdGroupChildrenMap` @@ -23453,33 +23453,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5796](https://github.com/TrialAndEr > [`CompoundKwd`](modules.md#compoundkwd)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5811](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5811) +Defined in: [libs/jast/jast/src/lib/jats.ts:5811](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5811) ##### `kwd` > [`Kwd`](modules.md#kwd)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5813](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5813) +Defined in: [libs/jast/jast/src/lib/jats.ts:5813](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5813) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:5815](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5815) +Defined in: [libs/jast/jast/src/lib/jats.ts:5815](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5815) ##### `nestedKwd` > [`NestedKwd`](modules.md#nestedkwd)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5817](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5817) +Defined in: [libs/jast/jast/src/lib/jats.ts:5817](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5817) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:5819](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5819) +Defined in: [libs/jast/jast/src/lib/jats.ts:5819](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5819) -*** +--- ### `Label` @@ -23487,7 +23487,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Label** +- [`Node`](modules.md#node).**Label** #### Properties @@ -23504,18 +23504,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :----- | :------- | | `alt`? | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5846) +Defined in: [libs/jast/jast/src/lib/jats.ts:5846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5846) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`LabelChildrenMap`](modules.md#labelchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5851](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5851) +Defined in: [libs/jast/jast/src/lib/jats.ts:5851](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5851) ##### `data?` @@ -23525,13 +23525,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"label"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5845](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5845) +Defined in: [libs/jast/jast/src/lib/jats.ts:5845](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5845) ##### `position?` @@ -23542,7 +23542,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -23552,9 +23552,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5844) +Defined in: [libs/jast/jast/src/lib/jats.ts:5844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5844) -*** +--- ### `LabelChildrenMap` @@ -23564,117 +23564,117 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5844](https://github.com/TrialAndEr > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5855](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5855) +Defined in: [libs/jast/jast/src/lib/jats.ts:5855](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5855) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5857](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5857) +Defined in: [libs/jast/jast/src/lib/jats.ts:5857](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5857) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5859](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5859) +Defined in: [libs/jast/jast/src/lib/jats.ts:5859](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5859) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5861](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5861) +Defined in: [libs/jast/jast/src/lib/jats.ts:5861](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5861) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5863](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5863) +Defined in: [libs/jast/jast/src/lib/jats.ts:5863](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5863) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5865) +Defined in: [libs/jast/jast/src/lib/jats.ts:5865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5865) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5867](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5867) +Defined in: [libs/jast/jast/src/lib/jats.ts:5867](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5867) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5869](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5869) +Defined in: [libs/jast/jast/src/lib/jats.ts:5869](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5869) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5871](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5871) +Defined in: [libs/jast/jast/src/lib/jats.ts:5871](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5871) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5873) +Defined in: [libs/jast/jast/src/lib/jats.ts:5873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5873) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5875](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5875) +Defined in: [libs/jast/jast/src/lib/jats.ts:5875](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5875) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5877) +Defined in: [libs/jast/jast/src/lib/jats.ts:5877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5877) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5879) +Defined in: [libs/jast/jast/src/lib/jats.ts:5879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5879) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5881) +Defined in: [libs/jast/jast/src/lib/jats.ts:5881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5881) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5883) +Defined in: [libs/jast/jast/src/lib/jats.ts:5883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5883) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5885) +Defined in: [libs/jast/jast/src/lib/jats.ts:5885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5885) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5887) +Defined in: [libs/jast/jast/src/lib/jats.ts:5887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5887) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5889) +Defined in: [libs/jast/jast/src/lib/jats.ts:5889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5889) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5891) +Defined in: [libs/jast/jast/src/lib/jats.ts:5891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5891) -*** +--- ### `License` @@ -23682,7 +23682,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**License** +- [`Node`](modules.md#node).**License** #### Properties @@ -23701,20 +23701,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `licenseType`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6056](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6056) +Defined in: [libs/jast/jast/src/lib/jats.ts:6056](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6056) ##### `children` > [`LicenseP`](modules.md#licensep)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6063) +Defined in: [libs/jast/jast/src/lib/jats.ts:6063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6063) ##### `data?` @@ -23724,13 +23724,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"license"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6055](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6055) +Defined in: [libs/jast/jast/src/lib/jats.ts:6055](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6055) ##### `position?` @@ -23741,7 +23741,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -23751,9 +23751,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6054) +Defined in: [libs/jast/jast/src/lib/jats.ts:6054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6054) -*** +--- ### `LicenseChildrenMap` @@ -23763,9 +23763,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6054](https://github.com/TrialAndEr > [`LicenseP`](modules.md#licensep)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6067) +Defined in: [libs/jast/jast/src/lib/jats.ts:6067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6067) -*** +--- ### `LicenseP` @@ -23773,7 +23773,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**LicenseP** +- [`Node`](modules.md#node).**LicenseP** #### Properties @@ -23790,18 +23790,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:5897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5897) +Defined in: [libs/jast/jast/src/lib/jats.ts:5897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5897) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`LicensePChildrenMap`](modules.md#licensepchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5902) +Defined in: [libs/jast/jast/src/lib/jats.ts:5902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5902) ##### `data?` @@ -23811,13 +23811,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"licenseP"` -Defined in: [libs/jast/jast/src/lib/jats.ts:5896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5896) +Defined in: [libs/jast/jast/src/lib/jats.ts:5896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5896) ##### `position?` @@ -23828,7 +23828,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -23838,9 +23838,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:5895](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5895) +Defined in: [libs/jast/jast/src/lib/jats.ts:5895](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5895) -*** +--- ### `LicensePChildrenMap` @@ -23850,441 +23850,441 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:5895](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5908) +Defined in: [libs/jast/jast/src/lib/jats.ts:5908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5908) ##### `address?` > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5910) +Defined in: [libs/jast/jast/src/lib/jats.ts:5910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5910) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5912) +Defined in: [libs/jast/jast/src/lib/jats.ts:5912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5912) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5914) +Defined in: [libs/jast/jast/src/lib/jats.ts:5914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5914) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5916) +Defined in: [libs/jast/jast/src/lib/jats.ts:5916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5916) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5918) +Defined in: [libs/jast/jast/src/lib/jats.ts:5918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5918) ##### `awardId?` > [`AwardId`](modules.md#awardid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5920) +Defined in: [libs/jast/jast/src/lib/jats.ts:5920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5920) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5922) +Defined in: [libs/jast/jast/src/lib/jats.ts:5922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5922) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5924) +Defined in: [libs/jast/jast/src/lib/jats.ts:5924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5924) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5926) +Defined in: [libs/jast/jast/src/lib/jats.ts:5926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5926) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5928) +Defined in: [libs/jast/jast/src/lib/jats.ts:5928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5928) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5930) +Defined in: [libs/jast/jast/src/lib/jats.ts:5930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5930) ##### `citationAlternatives?` > [`CitationAlternatives`](modules.md#citationalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5932) +Defined in: [libs/jast/jast/src/lib/jats.ts:5932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5932) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5934) +Defined in: [libs/jast/jast/src/lib/jats.ts:5934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5934) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5936) +Defined in: [libs/jast/jast/src/lib/jats.ts:5936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5936) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5938](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5938) +Defined in: [libs/jast/jast/src/lib/jats.ts:5938](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5938) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5940) +Defined in: [libs/jast/jast/src/lib/jats.ts:5940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5940) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5942) +Defined in: [libs/jast/jast/src/lib/jats.ts:5942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5942) ##### `elementCitation?` > [`ElementCitation`](modules.md#elementcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5944) +Defined in: [libs/jast/jast/src/lib/jats.ts:5944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5944) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5946) +Defined in: [libs/jast/jast/src/lib/jats.ts:5946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5946) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5948](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5948) +Defined in: [libs/jast/jast/src/lib/jats.ts:5948](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5948) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5950) +Defined in: [libs/jast/jast/src/lib/jats.ts:5950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5950) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5952](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5952) +Defined in: [libs/jast/jast/src/lib/jats.ts:5952](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5952) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5954](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5954) +Defined in: [libs/jast/jast/src/lib/jats.ts:5954](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5954) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5956](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5956) +Defined in: [libs/jast/jast/src/lib/jats.ts:5956](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5956) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5958](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5958) +Defined in: [libs/jast/jast/src/lib/jats.ts:5958](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5958) ##### `fundingSource?` > [`FundingSource`](modules.md#fundingsource)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5960](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5960) +Defined in: [libs/jast/jast/src/lib/jats.ts:5960](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5960) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5962](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5962) +Defined in: [libs/jast/jast/src/lib/jats.ts:5962](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5962) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5964](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5964) +Defined in: [libs/jast/jast/src/lib/jats.ts:5964](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5964) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5966) +Defined in: [libs/jast/jast/src/lib/jats.ts:5966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5966) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5968](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5968) +Defined in: [libs/jast/jast/src/lib/jats.ts:5968](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5968) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5970](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5970) +Defined in: [libs/jast/jast/src/lib/jats.ts:5970](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5970) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5972](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5972) +Defined in: [libs/jast/jast/src/lib/jats.ts:5972](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5972) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5974](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5974) +Defined in: [libs/jast/jast/src/lib/jats.ts:5974](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5974) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5976](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5976) +Defined in: [libs/jast/jast/src/lib/jats.ts:5976](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5976) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5978](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5978) +Defined in: [libs/jast/jast/src/lib/jats.ts:5978](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5978) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5980](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5980) +Defined in: [libs/jast/jast/src/lib/jats.ts:5980](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5980) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5982](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5982) +Defined in: [libs/jast/jast/src/lib/jats.ts:5982](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5982) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5984](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5984) +Defined in: [libs/jast/jast/src/lib/jats.ts:5984](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5984) ##### `mixedCitation?` > [`MixedCitation`](modules.md#mixedcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5986) +Defined in: [libs/jast/jast/src/lib/jats.ts:5986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5986) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5988) +Defined in: [libs/jast/jast/src/lib/jats.ts:5988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5988) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5990](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5990) +Defined in: [libs/jast/jast/src/lib/jats.ts:5990](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5990) ##### `nlmCitation?` > [`NlmCitation`](modules.md#nlmcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5992](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5992) +Defined in: [libs/jast/jast/src/lib/jats.ts:5992](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5992) ##### `openAccess?` > [`OpenAccess`](modules.md#openaccess)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5994) +Defined in: [libs/jast/jast/src/lib/jats.ts:5994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5994) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5996) +Defined in: [libs/jast/jast/src/lib/jats.ts:5996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5996) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:5998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5998) +Defined in: [libs/jast/jast/src/lib/jats.ts:5998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5998) ##### `price?` > [`Price`](modules.md#price)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6000) +Defined in: [libs/jast/jast/src/lib/jats.ts:6000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6000) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6002) +Defined in: [libs/jast/jast/src/lib/jats.ts:6002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6002) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6004) +Defined in: [libs/jast/jast/src/lib/jats.ts:6004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6004) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6006) +Defined in: [libs/jast/jast/src/lib/jats.ts:6006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6006) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6008) +Defined in: [libs/jast/jast/src/lib/jats.ts:6008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6008) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6010) +Defined in: [libs/jast/jast/src/lib/jats.ts:6010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6010) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6012) +Defined in: [libs/jast/jast/src/lib/jats.ts:6012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6012) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6014) +Defined in: [libs/jast/jast/src/lib/jats.ts:6014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6014) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6016) +Defined in: [libs/jast/jast/src/lib/jats.ts:6016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6016) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6018) +Defined in: [libs/jast/jast/src/lib/jats.ts:6018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6018) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6020) +Defined in: [libs/jast/jast/src/lib/jats.ts:6020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6020) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6022) +Defined in: [libs/jast/jast/src/lib/jats.ts:6022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6022) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6024](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6024) +Defined in: [libs/jast/jast/src/lib/jats.ts:6024](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6024) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6026](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6026) +Defined in: [libs/jast/jast/src/lib/jats.ts:6026](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6026) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6028](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6028) +Defined in: [libs/jast/jast/src/lib/jats.ts:6028](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6028) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6030](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6030) +Defined in: [libs/jast/jast/src/lib/jats.ts:6030](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6030) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6032](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6032) +Defined in: [libs/jast/jast/src/lib/jats.ts:6032](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6032) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6034) +Defined in: [libs/jast/jast/src/lib/jats.ts:6034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6034) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6036](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6036) +Defined in: [libs/jast/jast/src/lib/jats.ts:6036](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6036) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6038](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6038) +Defined in: [libs/jast/jast/src/lib/jats.ts:6038](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6038) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6040](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6040) +Defined in: [libs/jast/jast/src/lib/jats.ts:6040](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6040) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6042](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6042) +Defined in: [libs/jast/jast/src/lib/jats.ts:6042](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6042) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:5906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5906) +Defined in: [libs/jast/jast/src/lib/jats.ts:5906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L5906) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6044) +Defined in: [libs/jast/jast/src/lib/jats.ts:6044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6044) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6046) +Defined in: [libs/jast/jast/src/lib/jats.ts:6046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6046) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6048) +Defined in: [libs/jast/jast/src/lib/jats.ts:6048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6048) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6050](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6050) +Defined in: [libs/jast/jast/src/lib/jats.ts:6050](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6050) -*** +--- ### `List` @@ -24292,7 +24292,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**List** +- [`Node`](modules.md#node).**List** #### Properties @@ -24313,22 +24313,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :--------------- | :------- | | `continuedFrom`? | `string` | -| `id`? | `string` | -| `listContent`? | `string` | -| `listType`? | `string` | -| `prefixWord`? | `string` | -| `specificUse`? | `string` | +| `id`? | `string` | +| `listContent`? | `string` | +| `listType`? | `string` | +| `prefixWord`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6096) +Defined in: [libs/jast/jast/src/lib/jats.ts:6096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6096) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ListChildrenMap`](modules.md#listchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6105) +Defined in: [libs/jast/jast/src/lib/jats.ts:6105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6105) ##### `data?` @@ -24338,13 +24338,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"list"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6095](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6095) +Defined in: [libs/jast/jast/src/lib/jats.ts:6095](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6095) ##### `position?` @@ -24355,7 +24355,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -24365,9 +24365,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6094) +Defined in: [libs/jast/jast/src/lib/jats.ts:6094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6094) -*** +--- ### `ListChildrenMap` @@ -24377,27 +24377,27 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6094](https://github.com/TrialAndEr > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:6109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6109) +Defined in: [libs/jast/jast/src/lib/jats.ts:6109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6109) ##### `listItem` > [`ListItem`](modules.md#listitem)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6111) +Defined in: [libs/jast/jast/src/lib/jats.ts:6111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6111) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6113) +Defined in: [libs/jast/jast/src/lib/jats.ts:6113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6113) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:6115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6115) +Defined in: [libs/jast/jast/src/lib/jats.ts:6115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6115) -*** +--- ### `ListItem` @@ -24405,7 +24405,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ListItem** +- [`Node`](modules.md#node).**ListItem** #### Properties @@ -24422,18 +24422,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6073](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6073) +Defined in: [libs/jast/jast/src/lib/jats.ts:6073](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6073) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ListItemChildrenMap`](modules.md#listitemchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6078) +Defined in: [libs/jast/jast/src/lib/jats.ts:6078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6078) ##### `data?` @@ -24443,13 +24443,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"listItem"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6072](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6072) +Defined in: [libs/jast/jast/src/lib/jats.ts:6072](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6072) ##### `position?` @@ -24460,7 +24460,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -24470,9 +24470,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6071) +Defined in: [libs/jast/jast/src/lib/jats.ts:6071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6071) -*** +--- ### `ListItemChildrenMap` @@ -24482,33 +24482,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6071](https://github.com/TrialAndEr > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6082) +Defined in: [libs/jast/jast/src/lib/jats.ts:6082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6082) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:6084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6084) +Defined in: [libs/jast/jast/src/lib/jats.ts:6084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6084) ##### `list` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6086) +Defined in: [libs/jast/jast/src/lib/jats.ts:6086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6086) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6088) +Defined in: [libs/jast/jast/src/lib/jats.ts:6088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6088) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:6090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6090) +Defined in: [libs/jast/jast/src/lib/jats.ts:6090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6090) -*** +--- ### `LongDesc` @@ -24516,7 +24516,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**LongDesc** +- [`Node`](modules.md#node).**LongDesc** #### Properties @@ -24534,19 +24534,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6121) +Defined in: [libs/jast/jast/src/lib/jats.ts:6121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6121) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6127) +Defined in: [libs/jast/jast/src/lib/jats.ts:6127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6127) ##### `data?` @@ -24556,13 +24556,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"longDesc"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6120) +Defined in: [libs/jast/jast/src/lib/jats.ts:6120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6120) ##### `position?` @@ -24573,7 +24573,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -24583,9 +24583,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6119) +Defined in: [libs/jast/jast/src/lib/jats.ts:6119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6119) -*** +--- ### `LongDescChildrenMap` @@ -24595,9 +24595,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6119](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:6131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6131) +Defined in: [libs/jast/jast/src/lib/jats.ts:6131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6131) -*** +--- ### `Lpage` @@ -24605,7 +24605,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Lpage** +- [`Node`](modules.md#node).**Lpage** #### Properties @@ -24622,18 +24622,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6137) +Defined in: [libs/jast/jast/src/lib/jats.ts:6137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6137) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6142) +Defined in: [libs/jast/jast/src/lib/jats.ts:6142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6142) ##### `data?` @@ -24643,13 +24643,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"lpage"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6136) +Defined in: [libs/jast/jast/src/lib/jats.ts:6136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6136) ##### `position?` @@ -24660,7 +24660,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -24670,9 +24670,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6135](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6135) +Defined in: [libs/jast/jast/src/lib/jats.ts:6135](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6135) -*** +--- ### `LpageChildrenMap` @@ -24682,9 +24682,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6135](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:6146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6146) +Defined in: [libs/jast/jast/src/lib/jats.ts:6146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6146) -*** +--- ### `Media` @@ -24692,7 +24692,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Media** +- [`Node`](modules.md#node).**Media** #### Properties @@ -24714,23 +24714,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | -| `mimeSubtype`? | `string` | -| `mimetype`? | `string` | +| Member | Type | +| :------------- | :--------------------- | +| `hreflang`? | `string` | +| `id`? | `string` | +| `mimeSubtype`? | `string` | +| `mimetype`? | `string` | | `orientation`? | `MediaTypeOrientation` | -| `position`? | `MediaTypePosition` | -| `specificUse`? | `string` | +| `position`? | `MediaTypePosition` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6152) +Defined in: [libs/jast/jast/src/lib/jats.ts:6152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6152) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`MediaChildrenMap`](modules.md#mediachildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6163) +Defined in: [libs/jast/jast/src/lib/jats.ts:6163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6163) ##### `data?` @@ -24740,13 +24740,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"media"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6151) +Defined in: [libs/jast/jast/src/lib/jats.ts:6151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6151) ##### `position?` @@ -24757,7 +24757,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -24767,9 +24767,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6150) +Defined in: [libs/jast/jast/src/lib/jats.ts:6150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6150) -*** +--- ### `MediaChildrenMap` @@ -24779,93 +24779,93 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6150](https://github.com/TrialAndEr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6168) +Defined in: [libs/jast/jast/src/lib/jats.ts:6168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6168) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6170) +Defined in: [libs/jast/jast/src/lib/jats.ts:6170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6170) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6172) +Defined in: [libs/jast/jast/src/lib/jats.ts:6172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6172) ##### `caption?` > [`Caption`](modules.md#caption)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6174) +Defined in: [libs/jast/jast/src/lib/jats.ts:6174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6174) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6176) +Defined in: [libs/jast/jast/src/lib/jats.ts:6176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6176) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6178) +Defined in: [libs/jast/jast/src/lib/jats.ts:6178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6178) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6180) +Defined in: [libs/jast/jast/src/lib/jats.ts:6180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6180) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6182) +Defined in: [libs/jast/jast/src/lib/jats.ts:6182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6182) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6184) +Defined in: [libs/jast/jast/src/lib/jats.ts:6184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6184) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6186](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6186) +Defined in: [libs/jast/jast/src/lib/jats.ts:6186](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6186) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6188) +Defined in: [libs/jast/jast/src/lib/jats.ts:6188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6188) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6189) +Defined in: [libs/jast/jast/src/lib/jats.ts:6189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6189) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:6167](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6167) +Defined in: [libs/jast/jast/src/lib/jats.ts:6167](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6167) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6191) +Defined in: [libs/jast/jast/src/lib/jats.ts:6191](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6191) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6193](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6193) +Defined in: [libs/jast/jast/src/lib/jats.ts:6193](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6193) -*** +--- ### `MetaName` @@ -24873,7 +24873,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**MetaName** +- [`Node`](modules.md#node).**MetaName** #### Properties @@ -24889,17 +24889,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6203](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6203) +Defined in: [libs/jast/jast/src/lib/jats.ts:6203](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6203) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:6206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6206) +Defined in: [libs/jast/jast/src/lib/jats.ts:6206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6206) ##### `data?` @@ -24909,13 +24909,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"metaName"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6202) +Defined in: [libs/jast/jast/src/lib/jats.ts:6202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6202) ##### `position?` @@ -24926,7 +24926,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -24936,9 +24936,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6201](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6201) +Defined in: [libs/jast/jast/src/lib/jats.ts:6201](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6201) -*** +--- ### `MetaValue` @@ -24946,7 +24946,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**MetaValue** +- [`Node`](modules.md#node).**MetaValue** #### Properties @@ -24962,17 +24962,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6212](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6212) +Defined in: [libs/jast/jast/src/lib/jats.ts:6212](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6212) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`MetaValueChildrenMap`](modules.md#metavaluechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6216) +Defined in: [libs/jast/jast/src/lib/jats.ts:6216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6216) ##### `data?` @@ -24982,13 +24982,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"metaValue"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6211) +Defined in: [libs/jast/jast/src/lib/jats.ts:6211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6211) ##### `position?` @@ -24999,7 +24999,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -25009,9 +25009,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6210) +Defined in: [libs/jast/jast/src/lib/jats.ts:6210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6210) -*** +--- ### `MetaValueChildrenMap` @@ -25021,219 +25021,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6210](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6220) +Defined in: [libs/jast/jast/src/lib/jats.ts:6220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6220) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6222) +Defined in: [libs/jast/jast/src/lib/jats.ts:6222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6222) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6224) +Defined in: [libs/jast/jast/src/lib/jats.ts:6224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6224) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6226) +Defined in: [libs/jast/jast/src/lib/jats.ts:6226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6226) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6228) +Defined in: [libs/jast/jast/src/lib/jats.ts:6228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6228) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6230) +Defined in: [libs/jast/jast/src/lib/jats.ts:6230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6230) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6232) +Defined in: [libs/jast/jast/src/lib/jats.ts:6232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6232) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6234) +Defined in: [libs/jast/jast/src/lib/jats.ts:6234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6234) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6236) +Defined in: [libs/jast/jast/src/lib/jats.ts:6236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6236) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6238) +Defined in: [libs/jast/jast/src/lib/jats.ts:6238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6238) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6240) +Defined in: [libs/jast/jast/src/lib/jats.ts:6240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6240) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6242) +Defined in: [libs/jast/jast/src/lib/jats.ts:6242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6242) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6244) +Defined in: [libs/jast/jast/src/lib/jats.ts:6244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6244) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6246) +Defined in: [libs/jast/jast/src/lib/jats.ts:6246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6246) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6248) +Defined in: [libs/jast/jast/src/lib/jats.ts:6248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6248) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6250) +Defined in: [libs/jast/jast/src/lib/jats.ts:6250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6250) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6252) +Defined in: [libs/jast/jast/src/lib/jats.ts:6252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6252) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6254) +Defined in: [libs/jast/jast/src/lib/jats.ts:6254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6254) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6256) +Defined in: [libs/jast/jast/src/lib/jats.ts:6256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6256) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6258) +Defined in: [libs/jast/jast/src/lib/jats.ts:6258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6258) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6260) +Defined in: [libs/jast/jast/src/lib/jats.ts:6260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6260) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6262) +Defined in: [libs/jast/jast/src/lib/jats.ts:6262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6262) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6264](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6264) +Defined in: [libs/jast/jast/src/lib/jats.ts:6264](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6264) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6266) +Defined in: [libs/jast/jast/src/lib/jats.ts:6266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6266) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6268) +Defined in: [libs/jast/jast/src/lib/jats.ts:6268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6268) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6270](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6270) +Defined in: [libs/jast/jast/src/lib/jats.ts:6270](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6270) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6272) +Defined in: [libs/jast/jast/src/lib/jats.ts:6272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6272) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6274) +Defined in: [libs/jast/jast/src/lib/jats.ts:6274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6274) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6276) +Defined in: [libs/jast/jast/src/lib/jats.ts:6276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6276) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6278) +Defined in: [libs/jast/jast/src/lib/jats.ts:6278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6278) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6280](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6280) +Defined in: [libs/jast/jast/src/lib/jats.ts:6280](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6280) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6282) +Defined in: [libs/jast/jast/src/lib/jats.ts:6282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6282) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6284](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6284) +Defined in: [libs/jast/jast/src/lib/jats.ts:6284](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6284) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6286](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6286) +Defined in: [libs/jast/jast/src/lib/jats.ts:6286](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6286) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6288) +Defined in: [libs/jast/jast/src/lib/jats.ts:6288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6288) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6290](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6290) +Defined in: [libs/jast/jast/src/lib/jats.ts:6290](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6290) -*** +--- ### `MilestoneEnd` @@ -25241,7 +25241,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**MilestoneEnd** +- [`Node`](modules.md#node).**MilestoneEnd** #### Properties @@ -25260,20 +25260,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rationale`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rationale`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6296) +Defined in: [libs/jast/jast/src/lib/jats.ts:6296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6296) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6303) +Defined in: [libs/jast/jast/src/lib/jats.ts:6303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6303) ##### `data?` @@ -25283,13 +25283,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"milestoneEnd"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6295) +Defined in: [libs/jast/jast/src/lib/jats.ts:6295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6295) ##### `position?` @@ -25300,7 +25300,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -25310,9 +25310,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6294) +Defined in: [libs/jast/jast/src/lib/jats.ts:6294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6294) -*** +--- ### `MilestoneEndChildrenMap` @@ -25322,9 +25322,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6294](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:6307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6307) +Defined in: [libs/jast/jast/src/lib/jats.ts:6307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6307) -*** +--- ### `MilestoneStart` @@ -25332,7 +25332,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**MilestoneStart** +- [`Node`](modules.md#node).**MilestoneStart** #### Properties @@ -25351,20 +25351,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rationale`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rationale`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6313) +Defined in: [libs/jast/jast/src/lib/jats.ts:6313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6313) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6320) +Defined in: [libs/jast/jast/src/lib/jats.ts:6320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6320) ##### `data?` @@ -25374,13 +25374,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"milestoneStart"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6312) +Defined in: [libs/jast/jast/src/lib/jats.ts:6312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6312) ##### `position?` @@ -25391,7 +25391,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -25401,9 +25401,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6311) +Defined in: [libs/jast/jast/src/lib/jats.ts:6311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6311) -*** +--- ### `MilestoneStartChildrenMap` @@ -25413,9 +25413,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6311](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:6324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6324) +Defined in: [libs/jast/jast/src/lib/jats.ts:6324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6324) -*** +--- ### `MixedCitation` @@ -25423,7 +25423,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**MixedCitation** +- [`Node`](modules.md#node).**MixedCitation** #### Properties @@ -25445,23 +25445,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `publicationFormat`? | `string` | -| `publicationType`? | `string` | -| `publisherType`? | `string` | -| `specificUse`? | `string` | -| `useType`? | `string` | +| `publicationType`? | `string` | +| `publisherType`? | `string` | +| `specificUse`? | `string` | +| `useType`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6330) +Defined in: [libs/jast/jast/src/lib/jats.ts:6330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6330) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`MixedCitationChildrenMap`](modules.md#mixedcitationchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6340) +Defined in: [libs/jast/jast/src/lib/jats.ts:6340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6340) ##### `data?` @@ -25471,13 +25471,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"mixedCitation"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6329) +Defined in: [libs/jast/jast/src/lib/jats.ts:6329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6329) ##### `position?` @@ -25488,7 +25488,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -25498,9 +25498,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6328) +Defined in: [libs/jast/jast/src/lib/jats.ts:6328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6328) -*** +--- ### `MixedCitationChildrenMap` @@ -25510,525 +25510,525 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6328](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6344) +Defined in: [libs/jast/jast/src/lib/jats.ts:6344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6344) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6346) +Defined in: [libs/jast/jast/src/lib/jats.ts:6346](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6346) ##### `annotation?` > [`Annotation`](modules.md#annotation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6348) +Defined in: [libs/jast/jast/src/lib/jats.ts:6348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6348) ##### `articleTitle?` > [`ArticleTitle`](modules.md#articletitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6350) +Defined in: [libs/jast/jast/src/lib/jats.ts:6350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6350) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6352) +Defined in: [libs/jast/jast/src/lib/jats.ts:6352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6352) ##### `chapterTitle?` > [`ChapterTitle`](modules.md#chaptertitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6354) +Defined in: [libs/jast/jast/src/lib/jats.ts:6354](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6354) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6356) +Defined in: [libs/jast/jast/src/lib/jats.ts:6356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6356) ##### `collab?` > [`Collab`](modules.md#collab)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6358) +Defined in: [libs/jast/jast/src/lib/jats.ts:6358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6358) ##### `collabAlternatives?` > [`CollabAlternatives`](modules.md#collabalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6360) +Defined in: [libs/jast/jast/src/lib/jats.ts:6360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6360) ##### `comment?` > [`Comment`](modules.md#comment)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6362) +Defined in: [libs/jast/jast/src/lib/jats.ts:6362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6362) ##### `confAcronym?` > [`ConfAcronym`](modules.md#confacronym)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6364) +Defined in: [libs/jast/jast/src/lib/jats.ts:6364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6364) ##### `confDate?` > [`ConfDate`](modules.md#confdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6366) +Defined in: [libs/jast/jast/src/lib/jats.ts:6366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6366) ##### `confLoc?` > [`ConfLoc`](modules.md#confloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6368) +Defined in: [libs/jast/jast/src/lib/jats.ts:6368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6368) ##### `confName?` > [`ConfName`](modules.md#confname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6370) +Defined in: [libs/jast/jast/src/lib/jats.ts:6370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6370) ##### `confSponsor?` > [`ConfSponsor`](modules.md#confsponsor)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6372) +Defined in: [libs/jast/jast/src/lib/jats.ts:6372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6372) ##### `dataTitle?` > [`DataTitle`](modules.md#datatitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6374) +Defined in: [libs/jast/jast/src/lib/jats.ts:6374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6374) ##### `date?` > [`Date`](modules.md#date)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6376](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6376) +Defined in: [libs/jast/jast/src/lib/jats.ts:6376](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6376) ##### `dateIncitation?` > [`DateIncitation`](modules.md#dateincitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6378](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6378) +Defined in: [libs/jast/jast/src/lib/jats.ts:6378](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6378) ##### `day?` > [`Day`](modules.md#day)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6380) +Defined in: [libs/jast/jast/src/lib/jats.ts:6380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6380) ##### `edition?` > [`Edition`](modules.md#edition)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6382](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6382) +Defined in: [libs/jast/jast/src/lib/jats.ts:6382](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6382) ##### `elocationId?` > [`ElocationId`](modules.md#elocationid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6384) +Defined in: [libs/jast/jast/src/lib/jats.ts:6384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6384) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6386) +Defined in: [libs/jast/jast/src/lib/jats.ts:6386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6386) ##### `etal?` > [`Etal`](modules.md#etal)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6388) +Defined in: [libs/jast/jast/src/lib/jats.ts:6388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6388) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6390) +Defined in: [libs/jast/jast/src/lib/jats.ts:6390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6390) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6392) +Defined in: [libs/jast/jast/src/lib/jats.ts:6392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6392) ##### `fpage?` > [`Fpage`](modules.md#fpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6394) +Defined in: [libs/jast/jast/src/lib/jats.ts:6394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6394) ##### `gov?` > [`Gov`](modules.md#gov)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6396) +Defined in: [libs/jast/jast/src/lib/jats.ts:6396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6396) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6398) +Defined in: [libs/jast/jast/src/lib/jats.ts:6398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6398) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6400) +Defined in: [libs/jast/jast/src/lib/jats.ts:6400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6400) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6402) +Defined in: [libs/jast/jast/src/lib/jats.ts:6402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6402) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6404) +Defined in: [libs/jast/jast/src/lib/jats.ts:6404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6404) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6406) +Defined in: [libs/jast/jast/src/lib/jats.ts:6406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6406) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6408) +Defined in: [libs/jast/jast/src/lib/jats.ts:6408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6408) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6410) +Defined in: [libs/jast/jast/src/lib/jats.ts:6410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6410) ##### `isbn?` > [`Isbn`](modules.md#isbn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6412) +Defined in: [libs/jast/jast/src/lib/jats.ts:6412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6412) ##### `issn?` > [`Issn`](modules.md#issn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6414](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6414) +Defined in: [libs/jast/jast/src/lib/jats.ts:6414](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6414) ##### `issnL?` > [`IssnL`](modules.md#issnl)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6416) +Defined in: [libs/jast/jast/src/lib/jats.ts:6416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6416) ##### `issue?` > [`Issue`](modules.md#issue)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6418](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6418) +Defined in: [libs/jast/jast/src/lib/jats.ts:6418](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6418) ##### `issueId?` > [`IssueId`](modules.md#issueid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6420) +Defined in: [libs/jast/jast/src/lib/jats.ts:6420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6420) ##### `issuePart?` > [`IssuePart`](modules.md#issuepart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6422](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6422) +Defined in: [libs/jast/jast/src/lib/jats.ts:6422](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6422) ##### `issueTitle?` > [`IssueTitle`](modules.md#issuetitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6424](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6424) +Defined in: [libs/jast/jast/src/lib/jats.ts:6424](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6424) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6426) +Defined in: [libs/jast/jast/src/lib/jats.ts:6426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6426) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6428) +Defined in: [libs/jast/jast/src/lib/jats.ts:6428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6428) ##### `lpage?` > [`Lpage`](modules.md#lpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6430) +Defined in: [libs/jast/jast/src/lib/jats.ts:6430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6430) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6432) +Defined in: [libs/jast/jast/src/lib/jats.ts:6432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6432) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6434) +Defined in: [libs/jast/jast/src/lib/jats.ts:6434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6434) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6436) +Defined in: [libs/jast/jast/src/lib/jats.ts:6436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6436) ##### `month?` > [`Month`](modules.md#month)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6438](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6438) +Defined in: [libs/jast/jast/src/lib/jats.ts:6438](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6438) ##### `name?` > [`Name`](modules.md#name)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6440) +Defined in: [libs/jast/jast/src/lib/jats.ts:6440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6440) ##### `nameAlternatives?` > [`NameAlternatives`](modules.md#namealternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6442) +Defined in: [libs/jast/jast/src/lib/jats.ts:6442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6442) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6444) +Defined in: [libs/jast/jast/src/lib/jats.ts:6444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6444) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6446) +Defined in: [libs/jast/jast/src/lib/jats.ts:6446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6446) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6448) +Defined in: [libs/jast/jast/src/lib/jats.ts:6448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6448) ##### `pageRange?` > [`PageRange`](modules.md#pagerange)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6450) +Defined in: [libs/jast/jast/src/lib/jats.ts:6450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6450) ##### `partTitle?` > [`PartTitle`](modules.md#parttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6452) +Defined in: [libs/jast/jast/src/lib/jats.ts:6452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6452) ##### `patent?` > [`Patent`](modules.md#patent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6454) +Defined in: [libs/jast/jast/src/lib/jats.ts:6454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6454) ##### `personGroup?` > [`PersonGroup`](modules.md#persongroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6456) +Defined in: [libs/jast/jast/src/lib/jats.ts:6456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6456) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6458) +Defined in: [libs/jast/jast/src/lib/jats.ts:6458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6458) ##### `pubId?` > [`PubId`](modules.md#pubid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6460) +Defined in: [libs/jast/jast/src/lib/jats.ts:6460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6460) ##### `publisherLoc?` > [`PublisherLoc`](modules.md#publisherloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6462) +Defined in: [libs/jast/jast/src/lib/jats.ts:6462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6462) ##### `publisherName?` > [`PublisherName`](modules.md#publishername)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6464) +Defined in: [libs/jast/jast/src/lib/jats.ts:6464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6464) ##### `role?` > [`Role`](modules.md#role)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6466) +Defined in: [libs/jast/jast/src/lib/jats.ts:6466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6466) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6468) +Defined in: [libs/jast/jast/src/lib/jats.ts:6468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6468) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6470) +Defined in: [libs/jast/jast/src/lib/jats.ts:6470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6470) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6472) +Defined in: [libs/jast/jast/src/lib/jats.ts:6472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6472) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6474) +Defined in: [libs/jast/jast/src/lib/jats.ts:6474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6474) ##### `season?` > [`Season`](modules.md#season)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6476) +Defined in: [libs/jast/jast/src/lib/jats.ts:6476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6476) ##### `series?` > [`Series`](modules.md#series)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6478) +Defined in: [libs/jast/jast/src/lib/jats.ts:6478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6478) ##### `size?` > [`Size`](modules.md#size)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6480) +Defined in: [libs/jast/jast/src/lib/jats.ts:6480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6480) ##### `source?` > [`Source`](modules.md#source)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6482) +Defined in: [libs/jast/jast/src/lib/jats.ts:6482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6482) ##### `std?` > [`Std`](modules.md#std)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6484) +Defined in: [libs/jast/jast/src/lib/jats.ts:6484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6484) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6486) +Defined in: [libs/jast/jast/src/lib/jats.ts:6486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6486) ##### `stringDate?` > [`StringDate`](modules.md#stringdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6488) +Defined in: [libs/jast/jast/src/lib/jats.ts:6488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6488) ##### `stringName?` > [`StringName`](modules.md#stringname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6490](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6490) +Defined in: [libs/jast/jast/src/lib/jats.ts:6490](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6490) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6492) +Defined in: [libs/jast/jast/src/lib/jats.ts:6492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6492) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6494) +Defined in: [libs/jast/jast/src/lib/jats.ts:6494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6494) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6496) +Defined in: [libs/jast/jast/src/lib/jats.ts:6496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6496) ##### `supplement?` > [`Supplement`](modules.md#supplement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6498) +Defined in: [libs/jast/jast/src/lib/jats.ts:6498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6498) ##### `transSource?` > [`TransSource`](modules.md#transsource)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6500) +Defined in: [libs/jast/jast/src/lib/jats.ts:6500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6500) ##### `transTitle?` > [`TransTitle`](modules.md#transtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6502](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6502) +Defined in: [libs/jast/jast/src/lib/jats.ts:6502](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6502) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6504) +Defined in: [libs/jast/jast/src/lib/jats.ts:6504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6504) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6506) +Defined in: [libs/jast/jast/src/lib/jats.ts:6506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6506) ##### `version?` > [`Version`](modules.md#version)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6508) +Defined in: [libs/jast/jast/src/lib/jats.ts:6508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6508) ##### `volume?` > [`Volume`](modules.md#volume)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6510](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6510) +Defined in: [libs/jast/jast/src/lib/jats.ts:6510](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6510) ##### `volumeId?` > [`VolumeId`](modules.md#volumeid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6512) +Defined in: [libs/jast/jast/src/lib/jats.ts:6512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6512) ##### `volumeSeries?` > [`VolumeSeries`](modules.md#volumeseries)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6514) +Defined in: [libs/jast/jast/src/lib/jats.ts:6514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6514) ##### `year?` > [`Year`](modules.md#year)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6516) +Defined in: [libs/jast/jast/src/lib/jats.ts:6516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6516) -*** +--- ### `Monospace` @@ -26036,7 +26036,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Monospace** +- [`Node`](modules.md#node).**Monospace** #### Properties @@ -26054,19 +26054,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `specificUse`? | `string` | -| `toggle`? | `MonospaceTypeToggle` | +| Member | Type | +| :------------- | :-------------------- | +| `id`? | `string` | +| `specificUse`? | `string` | +| `toggle`? | `MonospaceTypeToggle` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6522) +Defined in: [libs/jast/jast/src/lib/jats.ts:6522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6522) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`MonospaceChildrenMap`](modules.md#monospacechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6528) +Defined in: [libs/jast/jast/src/lib/jats.ts:6528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6528) ##### `data?` @@ -26076,13 +26076,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"monospace"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6521) +Defined in: [libs/jast/jast/src/lib/jats.ts:6521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6521) ##### `position?` @@ -26093,7 +26093,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -26103,9 +26103,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6520) +Defined in: [libs/jast/jast/src/lib/jats.ts:6520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6520) -*** +--- ### `MonospaceChildrenMap` @@ -26115,219 +26115,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6520](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6532) +Defined in: [libs/jast/jast/src/lib/jats.ts:6532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6532) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6534) +Defined in: [libs/jast/jast/src/lib/jats.ts:6534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6534) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6536) +Defined in: [libs/jast/jast/src/lib/jats.ts:6536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6536) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6538) +Defined in: [libs/jast/jast/src/lib/jats.ts:6538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6538) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6540) +Defined in: [libs/jast/jast/src/lib/jats.ts:6540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6540) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6542](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6542) +Defined in: [libs/jast/jast/src/lib/jats.ts:6542](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6542) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6544](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6544) +Defined in: [libs/jast/jast/src/lib/jats.ts:6544](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6544) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6546](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6546) +Defined in: [libs/jast/jast/src/lib/jats.ts:6546](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6546) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6548](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6548) +Defined in: [libs/jast/jast/src/lib/jats.ts:6548](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6548) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6550](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6550) +Defined in: [libs/jast/jast/src/lib/jats.ts:6550](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6550) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6552) +Defined in: [libs/jast/jast/src/lib/jats.ts:6552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6552) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6554](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6554) +Defined in: [libs/jast/jast/src/lib/jats.ts:6554](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6554) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6556](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6556) +Defined in: [libs/jast/jast/src/lib/jats.ts:6556](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6556) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6558) +Defined in: [libs/jast/jast/src/lib/jats.ts:6558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6558) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6560](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6560) +Defined in: [libs/jast/jast/src/lib/jats.ts:6560](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6560) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6562) +Defined in: [libs/jast/jast/src/lib/jats.ts:6562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6562) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6564](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6564) +Defined in: [libs/jast/jast/src/lib/jats.ts:6564](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6564) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6566](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6566) +Defined in: [libs/jast/jast/src/lib/jats.ts:6566](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6566) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6568](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6568) +Defined in: [libs/jast/jast/src/lib/jats.ts:6568](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6568) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6570](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6570) +Defined in: [libs/jast/jast/src/lib/jats.ts:6570](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6570) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6572) +Defined in: [libs/jast/jast/src/lib/jats.ts:6572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6572) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6574](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6574) +Defined in: [libs/jast/jast/src/lib/jats.ts:6574](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6574) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6576) +Defined in: [libs/jast/jast/src/lib/jats.ts:6576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6576) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6578](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6578) +Defined in: [libs/jast/jast/src/lib/jats.ts:6578](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6578) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6580](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6580) +Defined in: [libs/jast/jast/src/lib/jats.ts:6580](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6580) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6582) +Defined in: [libs/jast/jast/src/lib/jats.ts:6582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6582) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6584) +Defined in: [libs/jast/jast/src/lib/jats.ts:6584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6584) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6586) +Defined in: [libs/jast/jast/src/lib/jats.ts:6586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6586) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6588) +Defined in: [libs/jast/jast/src/lib/jats.ts:6588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6588) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6590) +Defined in: [libs/jast/jast/src/lib/jats.ts:6590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6590) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6592) +Defined in: [libs/jast/jast/src/lib/jats.ts:6592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6592) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6594) +Defined in: [libs/jast/jast/src/lib/jats.ts:6594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6594) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6596) +Defined in: [libs/jast/jast/src/lib/jats.ts:6596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6596) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6598) +Defined in: [libs/jast/jast/src/lib/jats.ts:6598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6598) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6600) +Defined in: [libs/jast/jast/src/lib/jats.ts:6600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6600) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6602) +Defined in: [libs/jast/jast/src/lib/jats.ts:6602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6602) -*** +--- ### `Month` @@ -26335,7 +26335,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Month** +- [`Node`](modules.md#node).**Month** #### Properties @@ -26352,18 +26352,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6610) +Defined in: [libs/jast/jast/src/lib/jats.ts:6610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6610) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6615) +Defined in: [libs/jast/jast/src/lib/jats.ts:6615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6615) ##### `data?` @@ -26373,13 +26373,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"month"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6609) +Defined in: [libs/jast/jast/src/lib/jats.ts:6609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6609) ##### `position?` @@ -26390,7 +26390,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -26400,9 +26400,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6608) +Defined in: [libs/jast/jast/src/lib/jats.ts:6608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6608) -*** +--- ### `MonthChildrenMap` @@ -26412,9 +26412,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6608](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:6619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6619) +Defined in: [libs/jast/jast/src/lib/jats.ts:6619](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6619) -*** +--- ### `Name` @@ -26422,7 +26422,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Name** +- [`Node`](modules.md#node).**Name** #### Properties @@ -26440,19 +26440,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `nameStyle`? | `NameTypeNameStyle` | -| `specificUse`? | `string` | +| Member | Type | +| :------------- | :------------------ | +| `id`? | `string` | +| `nameStyle`? | `NameTypeNameStyle` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6790) +Defined in: [libs/jast/jast/src/lib/jats.ts:6790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6790) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`NameChildrenMap`](modules.md#namechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6796) +Defined in: [libs/jast/jast/src/lib/jats.ts:6796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6796) ##### `data?` @@ -26462,13 +26462,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"name"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6789](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6789) +Defined in: [libs/jast/jast/src/lib/jats.ts:6789](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6789) ##### `position?` @@ -26479,7 +26479,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -26489,9 +26489,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6788) +Defined in: [libs/jast/jast/src/lib/jats.ts:6788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6788) -*** +--- ### `NameAlternatives` @@ -26499,7 +26499,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**NameAlternatives** +- [`Node`](modules.md#node).**NameAlternatives** #### Properties @@ -26515,17 +26515,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6625) +Defined in: [libs/jast/jast/src/lib/jats.ts:6625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6625) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`NameAlternativesChildrenMap`](modules.md#namealternativeschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6629](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6629) +Defined in: [libs/jast/jast/src/lib/jats.ts:6629](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6629) ##### `data?` @@ -26535,13 +26535,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"nameAlternatives"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6624) +Defined in: [libs/jast/jast/src/lib/jats.ts:6624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6624) ##### `position?` @@ -26552,7 +26552,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -26562,9 +26562,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6623) +Defined in: [libs/jast/jast/src/lib/jats.ts:6623](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6623) -*** +--- ### `NameAlternativesChildrenMap` @@ -26574,15 +26574,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6623](https://github.com/TrialAndEr > [`Name`](modules.md#name)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6633](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6633) +Defined in: [libs/jast/jast/src/lib/jats.ts:6633](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6633) ##### `stringName` > [`StringName`](modules.md#stringname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6635](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6635) +Defined in: [libs/jast/jast/src/lib/jats.ts:6635](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6635) -*** +--- ### `NameChildrenMap` @@ -26592,33 +26592,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6635](https://github.com/TrialAndEr > [`GivenNames`](modules.md#givennames)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6801](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6801) +Defined in: [libs/jast/jast/src/lib/jats.ts:6801](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6801) ##### `prefix?` > [`Prefix`](modules.md#prefix) -Defined in: [libs/jast/jast/src/lib/jats.ts:6803](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6803) +Defined in: [libs/jast/jast/src/lib/jats.ts:6803](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6803) ##### `suffix?` > [`Suffix`](modules.md#suffix) -Defined in: [libs/jast/jast/src/lib/jats.ts:6805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6805) +Defined in: [libs/jast/jast/src/lib/jats.ts:6805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6805) ##### `surname` > [`Surname`](modules.md#surname) -Defined in: [libs/jast/jast/src/lib/jats.ts:6807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6807) +Defined in: [libs/jast/jast/src/lib/jats.ts:6807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6807) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:6800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6800) +Defined in: [libs/jast/jast/src/lib/jats.ts:6800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6800) -*** +--- ### `NamedContent` @@ -26626,7 +26626,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**NamedContent** +- [`Node`](modules.md#node).**NamedContent** #### Properties @@ -26650,25 +26650,25 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `alt`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `rid`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `alt`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `rid`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6641) +Defined in: [libs/jast/jast/src/lib/jats.ts:6641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6641) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`NamedContentChildrenMap`](modules.md#namedcontentchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6653](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6653) +Defined in: [libs/jast/jast/src/lib/jats.ts:6653](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6653) ##### `data?` @@ -26678,13 +26678,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"namedContent"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6640) +Defined in: [libs/jast/jast/src/lib/jats.ts:6640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6640) ##### `position?` @@ -26695,7 +26695,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -26705,9 +26705,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6639](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6639) +Defined in: [libs/jast/jast/src/lib/jats.ts:6639](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6639) -*** +--- ### `NamedContentChildrenMap` @@ -26717,393 +26717,393 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6639](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6658) +Defined in: [libs/jast/jast/src/lib/jats.ts:6658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6658) ##### `address?` > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6660) +Defined in: [libs/jast/jast/src/lib/jats.ts:6660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6660) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6662) +Defined in: [libs/jast/jast/src/lib/jats.ts:6662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6662) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6664) +Defined in: [libs/jast/jast/src/lib/jats.ts:6664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6664) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6666) +Defined in: [libs/jast/jast/src/lib/jats.ts:6666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6666) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6668) +Defined in: [libs/jast/jast/src/lib/jats.ts:6668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6668) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6670) +Defined in: [libs/jast/jast/src/lib/jats.ts:6670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6670) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6672) +Defined in: [libs/jast/jast/src/lib/jats.ts:6672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6672) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6674) +Defined in: [libs/jast/jast/src/lib/jats.ts:6674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6674) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6676) +Defined in: [libs/jast/jast/src/lib/jats.ts:6676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6676) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6678) +Defined in: [libs/jast/jast/src/lib/jats.ts:6678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6678) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6680) +Defined in: [libs/jast/jast/src/lib/jats.ts:6680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6680) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6682) +Defined in: [libs/jast/jast/src/lib/jats.ts:6682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6682) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6684) +Defined in: [libs/jast/jast/src/lib/jats.ts:6684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6684) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6686) +Defined in: [libs/jast/jast/src/lib/jats.ts:6686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6686) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6688) +Defined in: [libs/jast/jast/src/lib/jats.ts:6688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6688) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6690) +Defined in: [libs/jast/jast/src/lib/jats.ts:6690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6690) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6692) +Defined in: [libs/jast/jast/src/lib/jats.ts:6692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6692) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6694) +Defined in: [libs/jast/jast/src/lib/jats.ts:6694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6694) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6696) +Defined in: [libs/jast/jast/src/lib/jats.ts:6696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6696) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6698) +Defined in: [libs/jast/jast/src/lib/jats.ts:6698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6698) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6700) +Defined in: [libs/jast/jast/src/lib/jats.ts:6700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6700) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6702) +Defined in: [libs/jast/jast/src/lib/jats.ts:6702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6702) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6704) +Defined in: [libs/jast/jast/src/lib/jats.ts:6704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6704) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6706) +Defined in: [libs/jast/jast/src/lib/jats.ts:6706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6706) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6708) +Defined in: [libs/jast/jast/src/lib/jats.ts:6708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6708) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6710) +Defined in: [libs/jast/jast/src/lib/jats.ts:6710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6710) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6712) +Defined in: [libs/jast/jast/src/lib/jats.ts:6712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6712) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6714) +Defined in: [libs/jast/jast/src/lib/jats.ts:6714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6714) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6716) +Defined in: [libs/jast/jast/src/lib/jats.ts:6716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6716) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6718) +Defined in: [libs/jast/jast/src/lib/jats.ts:6718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6718) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6720) +Defined in: [libs/jast/jast/src/lib/jats.ts:6720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6720) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6722) +Defined in: [libs/jast/jast/src/lib/jats.ts:6722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6722) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6724) +Defined in: [libs/jast/jast/src/lib/jats.ts:6724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6724) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6726) +Defined in: [libs/jast/jast/src/lib/jats.ts:6726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6726) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6728) +Defined in: [libs/jast/jast/src/lib/jats.ts:6728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6728) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6730) +Defined in: [libs/jast/jast/src/lib/jats.ts:6730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6730) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6732) +Defined in: [libs/jast/jast/src/lib/jats.ts:6732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6732) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6734) +Defined in: [libs/jast/jast/src/lib/jats.ts:6734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6734) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6736) +Defined in: [libs/jast/jast/src/lib/jats.ts:6736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6736) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6738) +Defined in: [libs/jast/jast/src/lib/jats.ts:6738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6738) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6740) +Defined in: [libs/jast/jast/src/lib/jats.ts:6740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6740) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6742) +Defined in: [libs/jast/jast/src/lib/jats.ts:6742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6742) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6744) +Defined in: [libs/jast/jast/src/lib/jats.ts:6744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6744) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6746) +Defined in: [libs/jast/jast/src/lib/jats.ts:6746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6746) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6748) +Defined in: [libs/jast/jast/src/lib/jats.ts:6748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6748) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6750) +Defined in: [libs/jast/jast/src/lib/jats.ts:6750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6750) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6752) +Defined in: [libs/jast/jast/src/lib/jats.ts:6752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6752) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6754) +Defined in: [libs/jast/jast/src/lib/jats.ts:6754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6754) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6756) +Defined in: [libs/jast/jast/src/lib/jats.ts:6756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6756) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6758) +Defined in: [libs/jast/jast/src/lib/jats.ts:6758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6758) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6760) +Defined in: [libs/jast/jast/src/lib/jats.ts:6760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6760) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6762) +Defined in: [libs/jast/jast/src/lib/jats.ts:6762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6762) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6764) +Defined in: [libs/jast/jast/src/lib/jats.ts:6764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6764) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6766) +Defined in: [libs/jast/jast/src/lib/jats.ts:6766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6766) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6768) +Defined in: [libs/jast/jast/src/lib/jats.ts:6768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6768) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6770) +Defined in: [libs/jast/jast/src/lib/jats.ts:6770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6770) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6772) +Defined in: [libs/jast/jast/src/lib/jats.ts:6772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6772) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6774) +Defined in: [libs/jast/jast/src/lib/jats.ts:6774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6774) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6776) +Defined in: [libs/jast/jast/src/lib/jats.ts:6776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6776) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:6657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6657) +Defined in: [libs/jast/jast/src/lib/jats.ts:6657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6657) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6778) +Defined in: [libs/jast/jast/src/lib/jats.ts:6778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6778) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6780) +Defined in: [libs/jast/jast/src/lib/jats.ts:6780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6780) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6782) +Defined in: [libs/jast/jast/src/lib/jats.ts:6782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6782) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6784) +Defined in: [libs/jast/jast/src/lib/jats.ts:6784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6784) -*** +--- ### `NestedKwd` @@ -27111,7 +27111,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**NestedKwd** +- [`Node`](modules.md#node).**NestedKwd** #### Properties @@ -27132,22 +27132,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `id`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `assigningAuthority`? | `string` | +| `id`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6815](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6815) +Defined in: [libs/jast/jast/src/lib/jats.ts:6815](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6815) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`NestedKwdChildrenMap`](modules.md#nestedkwdchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6824) +Defined in: [libs/jast/jast/src/lib/jats.ts:6824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6824) ##### `data?` @@ -27157,13 +27157,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"nestedKwd"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6814) +Defined in: [libs/jast/jast/src/lib/jats.ts:6814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6814) ##### `position?` @@ -27174,7 +27174,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -27184,9 +27184,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6813](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6813) +Defined in: [libs/jast/jast/src/lib/jats.ts:6813](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6813) -*** +--- ### `NestedKwdChildrenMap` @@ -27196,27 +27196,27 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6813](https://github.com/TrialAndEr > [`CompoundKwd`](modules.md#compoundkwd)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6830) +Defined in: [libs/jast/jast/src/lib/jats.ts:6830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6830) ##### `kwd` > [`Kwd`](modules.md#kwd)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6832) +Defined in: [libs/jast/jast/src/lib/jats.ts:6832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6832) ##### `nestedKwd?` > [`NestedKwd`](modules.md#nestedkwd)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6834) +Defined in: [libs/jast/jast/src/lib/jats.ts:6834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6834) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:6828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6828) +Defined in: [libs/jast/jast/src/lib/jats.ts:6828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6828) -*** +--- ### `NlmCitation` @@ -27224,7 +27224,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**NlmCitation** +- [`Node`](modules.md#node).**NlmCitation** #### Properties @@ -27245,22 +27245,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `publicationFormat`? | `string` | -| `publicationType`? | `string` | -| `publisherType`? | `string` | -| `specificUse`? | `string` | +| `publicationType`? | `string` | +| `publisherType`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6840) +Defined in: [libs/jast/jast/src/lib/jats.ts:6840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6840) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`NlmCitationChildrenMap`](modules.md#nlmcitationchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6849](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6849) +Defined in: [libs/jast/jast/src/lib/jats.ts:6849](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6849) ##### `data?` @@ -27270,13 +27270,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"nlmCitation"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6839](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6839) +Defined in: [libs/jast/jast/src/lib/jats.ts:6839](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6839) ##### `position?` @@ -27287,7 +27287,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -27297,9 +27297,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6838) +Defined in: [libs/jast/jast/src/lib/jats.ts:6838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6838) -*** +--- ### `NlmCitationChildrenMap` @@ -27309,177 +27309,177 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6838](https://github.com/TrialAndEr > [`AccessDate`](modules.md#accessdate) -Defined in: [libs/jast/jast/src/lib/jats.ts:6853](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6853) +Defined in: [libs/jast/jast/src/lib/jats.ts:6853](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6853) ##### `annotation?` > [`Annotation`](modules.md#annotation) -Defined in: [libs/jast/jast/src/lib/jats.ts:6855](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6855) +Defined in: [libs/jast/jast/src/lib/jats.ts:6855](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6855) ##### `articleTitle?` > [`ArticleTitle`](modules.md#articletitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6857](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6857) +Defined in: [libs/jast/jast/src/lib/jats.ts:6857](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6857) ##### `collab?` > [`Collab`](modules.md#collab)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6859](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6859) +Defined in: [libs/jast/jast/src/lib/jats.ts:6859](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6859) ##### `comment?` > [`Comment`](modules.md#comment)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6861](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6861) +Defined in: [libs/jast/jast/src/lib/jats.ts:6861](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6861) ##### `confDate?` > [`ConfDate`](modules.md#confdate) -Defined in: [libs/jast/jast/src/lib/jats.ts:6863](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6863) +Defined in: [libs/jast/jast/src/lib/jats.ts:6863](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6863) ##### `confLoc?` > [`ConfLoc`](modules.md#confloc) -Defined in: [libs/jast/jast/src/lib/jats.ts:6865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6865) +Defined in: [libs/jast/jast/src/lib/jats.ts:6865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6865) ##### `confName?` > [`ConfName`](modules.md#confname) -Defined in: [libs/jast/jast/src/lib/jats.ts:6867](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6867) +Defined in: [libs/jast/jast/src/lib/jats.ts:6867](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6867) ##### `day?` > [`Day`](modules.md#day) -Defined in: [libs/jast/jast/src/lib/jats.ts:6869](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6869) +Defined in: [libs/jast/jast/src/lib/jats.ts:6869](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6869) ##### `edition?` > [`Edition`](modules.md#edition) -Defined in: [libs/jast/jast/src/lib/jats.ts:6871](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6871) +Defined in: [libs/jast/jast/src/lib/jats.ts:6871](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6871) ##### `fpage?` > [`Fpage`](modules.md#fpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6873) +Defined in: [libs/jast/jast/src/lib/jats.ts:6873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6873) ##### `issue?` > [`Issue`](modules.md#issue)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6875](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6875) +Defined in: [libs/jast/jast/src/lib/jats.ts:6875](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6875) ##### `lpage?` > [`Lpage`](modules.md#lpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6877) +Defined in: [libs/jast/jast/src/lib/jats.ts:6877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6877) ##### `month?` > [`Month`](modules.md#month) -Defined in: [libs/jast/jast/src/lib/jats.ts:6879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6879) +Defined in: [libs/jast/jast/src/lib/jats.ts:6879](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6879) ##### `pageCount?` > [`PageCount`](modules.md#pagecount) -Defined in: [libs/jast/jast/src/lib/jats.ts:6881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6881) +Defined in: [libs/jast/jast/src/lib/jats.ts:6881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6881) ##### `patent?` > [`Patent`](modules.md#patent) -Defined in: [libs/jast/jast/src/lib/jats.ts:6883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6883) +Defined in: [libs/jast/jast/src/lib/jats.ts:6883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6883) ##### `personGroup?` > [`PersonGroup`](modules.md#persongroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6885) +Defined in: [libs/jast/jast/src/lib/jats.ts:6885](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6885) ##### `pubId?` > [`PubId`](modules.md#pubid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6887) +Defined in: [libs/jast/jast/src/lib/jats.ts:6887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6887) ##### `publisherLoc?` > [`PublisherLoc`](modules.md#publisherloc) -Defined in: [libs/jast/jast/src/lib/jats.ts:6889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6889) +Defined in: [libs/jast/jast/src/lib/jats.ts:6889](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6889) ##### `publisherName?` > [`PublisherName`](modules.md#publishername) -Defined in: [libs/jast/jast/src/lib/jats.ts:6891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6891) +Defined in: [libs/jast/jast/src/lib/jats.ts:6891](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6891) ##### `season?` > [`Season`](modules.md#season) -Defined in: [libs/jast/jast/src/lib/jats.ts:6893](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6893) +Defined in: [libs/jast/jast/src/lib/jats.ts:6893](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6893) ##### `series?` > [`Series`](modules.md#series) -Defined in: [libs/jast/jast/src/lib/jats.ts:6895](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6895) +Defined in: [libs/jast/jast/src/lib/jats.ts:6895](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6895) ##### `source?` > [`Source`](modules.md#source) -Defined in: [libs/jast/jast/src/lib/jats.ts:6897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6897) +Defined in: [libs/jast/jast/src/lib/jats.ts:6897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6897) ##### `supplement?` > [`Supplement`](modules.md#supplement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6899](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6899) +Defined in: [libs/jast/jast/src/lib/jats.ts:6899](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6899) ##### `timeStamp?` > [`TimeStamp`](modules.md#timestamp) -Defined in: [libs/jast/jast/src/lib/jats.ts:6901](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6901) +Defined in: [libs/jast/jast/src/lib/jats.ts:6901](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6901) ##### `transSource?` > [`TransSource`](modules.md#transsource) -Defined in: [libs/jast/jast/src/lib/jats.ts:6903](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6903) +Defined in: [libs/jast/jast/src/lib/jats.ts:6903](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6903) ##### `transTitle?` > [`TransTitle`](modules.md#transtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6905](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6905) +Defined in: [libs/jast/jast/src/lib/jats.ts:6905](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6905) ##### `volume?` > [`Volume`](modules.md#volume) -Defined in: [libs/jast/jast/src/lib/jats.ts:6907](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6907) +Defined in: [libs/jast/jast/src/lib/jats.ts:6907](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6907) ##### `year?` > [`Year`](modules.md#year) -Defined in: [libs/jast/jast/src/lib/jats.ts:6909](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6909) +Defined in: [libs/jast/jast/src/lib/jats.ts:6909](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6909) -*** +--- ### `Node` @@ -27487,314 +27487,314 @@ Syntactic units in unist syntax trees are called nodes. #### Type parameters -* `TData` *extends* `object` = `Data`Information from the ecosystem. Useful for more specific [data](modules.md#data). - -#### Hierarchy - -* [`Element`](modules.md#element) -* [`AbbrevJournaltitle`](modules.md#abbrevjournaltitle) -* [`Abbrev`](modules.md#abbrev) -* [`Abstract`](modules.md#abstract) -* [`AccessDate`](modules.md#accessdate) -* [`Ack`](modules.md#ack) -* [`Address`](modules.md#address) -* [`AddrLine`](modules.md#addrline) -* [`AffAlternatives`](modules.md#affalternatives) -* [`Aff`](modules.md#aff) -* [`Alternatives`](modules.md#alternatives) -* [`AltText`](modules.md#alttext) -* [`AltTitle`](modules.md#alttitle) -* [`Annotation`](modules.md#annotation) -* [`Anonymous`](modules.md#anonymous) -* [`AnswerSet`](modules.md#answerset) -* [`Answer`](modules.md#answer) -* [`AppGroup`](modules.md#appgroup) -* [`App`](modules.md#app) -* [`Array`](modules.md#array) -* [`ArticleCategories`](modules.md#articlecategories) -* [`ArticleId`](modules.md#articleid) -* [`ArticleMeta`](modules.md#articlemeta) -* [`ArticleTitle`](modules.md#articletitle) -* [`Article`](modules.md#article) -* [`ArticleVersionalternatives`](modules.md#articleversionalternatives) -* [`ArticleVersion`](modules.md#articleversion) -* [`Attrib`](modules.md#attrib) -* [`AuthorComment`](modules.md#authorcomment) -* [`AuthorNotes`](modules.md#authornotes) -* [`AwardDesc`](modules.md#awarddesc) -* [`AwardGroup`](modules.md#awardgroup) -* [`AwardId`](modules.md#awardid) -* [`AwardName`](modules.md#awardname) -* [`Back`](modules.md#back) -* [`Bio`](modules.md#bio) -* [`BlockAlternatives`](modules.md#blockalternatives) -* [`Body`](modules.md#body) -* [`Bold`](modules.md#bold) -* [`BoxedText`](modules.md#boxedtext) -* [`Break`](modules.md#break) -* [`Caption`](modules.md#caption) -* [`ChapterTitle`](modules.md#chaptertitle) -* [`ChemStruct`](modules.md#chemstruct) -* [`ChemStructwrap`](modules.md#chemstructwrap) -* [`CitationAlternatives`](modules.md#citationalternatives) -* [`City`](modules.md#city) -* [`Code`](modules.md#code) -* [`Colgroup`](modules.md#colgroup) -* [`CollabAlternatives`](modules.md#collabalternatives) -* [`Collab`](modules.md#collab) -* [`Col`](modules.md#col) -* [`Comment`](modules.md#comment) -* [`CompoundKwdpart`](modules.md#compoundkwdpart) -* [`CompoundKwd`](modules.md#compoundkwd) -* [`CompoundSubjectpart`](modules.md#compoundsubjectpart) -* [`CompoundSubject`](modules.md#compoundsubject) -* [`ConfAcronym`](modules.md#confacronym) -* [`ConfDate`](modules.md#confdate) -* [`Conference`](modules.md#conference) -* [`ConfLoc`](modules.md#confloc) -* [`ConfName`](modules.md#confname) -* [`ConfNum`](modules.md#confnum) -* [`ConfSponsor`](modules.md#confsponsor) -* [`ConfTheme`](modules.md#conftheme) -* [`ContribGroup`](modules.md#contribgroup) -* [`ContribId`](modules.md#contribid) -* [`Contrib`](modules.md#contrib) -* [`ContributedResourcegroup`](modules.md#contributedresourcegroup) -* [`CopyrightHolder`](modules.md#copyrightholder) -* [`CopyrightStatement`](modules.md#copyrightstatement) -* [`CopyrightYear`](modules.md#copyrightyear) -* [`Corresp`](modules.md#corresp) -* [`Country`](modules.md#country) -* [`Counts`](modules.md#counts) -* [`Count`](modules.md#count) -* [`CustomMetagroup`](modules.md#custommetagroup) -* [`CustomMeta`](modules.md#custommeta) -* [`DataTitle`](modules.md#datatitle) -* [`DateIncitation`](modules.md#dateincitation) -* [`Date`](modules.md#date) -* [`Day`](modules.md#day) -* [`DefHead`](modules.md#defhead) -* [`DefItem`](modules.md#defitem) -* [`DefList`](modules.md#deflist) -* [`Def`](modules.md#def) -* [`Degrees`](modules.md#degrees) -* [`DispFormulagroup`](modules.md#dispformulagroup) -* [`DispFormula`](modules.md#dispformula) -* [`DispQuote`](modules.md#dispquote) -* [`Edition`](modules.md#edition) -* [`ElementCitation`](modules.md#elementcitation) -* [`ElocationId`](modules.md#elocationid) -* [`Email`](modules.md#email) -* [`EquationCount`](modules.md#equationcount) -* [`Era`](modules.md#era) -* [`Etal`](modules.md#etal) -* [`EventDesc`](modules.md#eventdesc) -* [`Event`](modules.md#event) -* [`Explanation`](modules.md#explanation) -* [`ExtendedBy`](modules.md#extendedby) -* [`ExtLink`](modules.md#extlink) -* [`Fax`](modules.md#fax) -* [`FigCount`](modules.md#figcount) -* [`FigGroup`](modules.md#figgroup) -* [`Fig`](modules.md#fig) -* [`FixedCase`](modules.md#fixedcase) -* [`FloatsGroup`](modules.md#floatsgroup) -* [`FnGroup`](modules.md#fngroup) -* [`Fn`](modules.md#fn) -* [`Fpage`](modules.md#fpage) -* [`FrontStub`](modules.md#frontstub) -* [`Front`](modules.md#front) -* [`FundingGroup`](modules.md#fundinggroup) -* [`FundingSource`](modules.md#fundingsource) -* [`FundingStatement`](modules.md#fundingstatement) -* [`GivenNames`](modules.md#givennames) -* [`Glossary`](modules.md#glossary) -* [`GlyphData`](modules.md#glyphdata) -* [`GlyphRef`](modules.md#glyphref) -* [`Gov`](modules.md#gov) -* [`Graphic`](modules.md#graphic) -* [`History`](modules.md#history) -* [`Hr`](modules.md#hr) -* [`IndexTermrangeend`](modules.md#indextermrangeend) -* [`IndexTerm`](modules.md#indexterm) -* [`InlineFormula`](modules.md#inlineformula) -* [`InlineGraphic`](modules.md#inlinegraphic) -* [`InlineMedia`](modules.md#inlinemedia) -* [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial) -* [`InstitutionId`](modules.md#institutionid) -* [`Institution`](modules.md#institution) -* [`InstitutionWrap`](modules.md#institutionwrap) -* [`Isbn`](modules.md#isbn) -* [`IssnL`](modules.md#issnl) -* [`Issn`](modules.md#issn) -* [`IssueId`](modules.md#issueid) -* [`IssuePart`](modules.md#issuepart) -* [`IssueSponsor`](modules.md#issuesponsor) -* [`IssueSubtitle`](modules.md#issuesubtitle) -* [`IssueTitlegroup`](modules.md#issuetitlegroup) -* [`IssueTitle`](modules.md#issuetitle) -* [`Issue`](modules.md#issue) -* [`Italic`](modules.md#italic) -* [`JournalId`](modules.md#journalid) -* [`JournalMeta`](modules.md#journalmeta) -* [`JournalSubtitle`](modules.md#journalsubtitle) -* [`JournalTitlegroup`](modules.md#journaltitlegroup) -* [`JournalTitle`](modules.md#journaltitle) -* [`KwdGroup`](modules.md#kwdgroup) -* [`Kwd`](modules.md#kwd) -* [`Label`](modules.md#label) -* [`LicenseP`](modules.md#licensep) -* [`License`](modules.md#license) -* [`ListItem`](modules.md#listitem) -* [`List`](modules.md#list) -* [`LongDesc`](modules.md#longdesc) -* [`Lpage`](modules.md#lpage) -* [`Media`](modules.md#media) -* [`MetaName`](modules.md#metaname) -* [`MetaValue`](modules.md#metavalue) -* [`MilestoneEnd`](modules.md#milestoneend) -* [`MilestoneStart`](modules.md#milestonestart) -* [`MixedCitation`](modules.md#mixedcitation) -* [`Monospace`](modules.md#monospace) -* [`Month`](modules.md#month) -* [`NameAlternatives`](modules.md#namealternatives) -* [`NamedContent`](modules.md#namedcontent) -* [`Name`](modules.md#name) -* [`NestedKwd`](modules.md#nestedkwd) -* [`NlmCitation`](modules.md#nlmcitation) -* [`Notes`](modules.md#notes) -* [`Note`](modules.md#note) -* [`ObjectId`](modules.md#objectid) -* [`OnBehalfof`](modules.md#onbehalfof) -* [`OpenAccess`](modules.md#openaccess) -* [`Option`](modules.md#option) -* [`OverlineEnd`](modules.md#overlineend) -* [`OverlineStart`](modules.md#overlinestart) -* [`Overline`](modules.md#overline) -* [`PageCount`](modules.md#pagecount) -* [`PageRange`](modules.md#pagerange) -* [`PartTitle`](modules.md#parttitle) -* [`Patent`](modules.md#patent) -* [`Permissions`](modules.md#permissions) -* [`PersonGroup`](modules.md#persongroup) -* [`Phone`](modules.md#phone) -* [`PostalCode`](modules.md#postalcode) -* [`Prefix`](modules.md#prefix) -* [`Preformat`](modules.md#preformat) -* [`Price`](modules.md#price) -* [`PrincipalAwardrecipient`](modules.md#principalawardrecipient) -* [`PrincipalInvestigator`](modules.md#principalinvestigator) -* [`PrivateChar`](modules.md#privatechar) -* [`ProcessingMeta`](modules.md#processingmeta) -* [`Product`](modules.md#product) -* [`P`](modules.md#p) -* [`PubDatenotavailable`](modules.md#pubdatenotavailable) -* [`PubDate`](modules.md#pubdate) -* [`PubHistory`](modules.md#pubhistory) -* [`PubId`](modules.md#pubid) -* [`PublisherLoc`](modules.md#publisherloc) -* [`PublisherName`](modules.md#publishername) -* [`Publisher`](modules.md#publisher) -* [`QuestionPreamble`](modules.md#questionpreamble) -* [`Question`](modules.md#question) -* [`QuestionWrapgroup`](modules.md#questionwrapgroup) -* [`QuestionWrap`](modules.md#questionwrap) -* [`Rb`](modules.md#rb) -* [`RefCount`](modules.md#refcount) -* [`RefList`](modules.md#reflist) -* [`Ref`](modules.md#ref) -* [`RelatedArticle`](modules.md#relatedarticle) -* [`RelatedObject`](modules.md#relatedobject) -* [`ResourceGroup`](modules.md#resourcegroup) -* [`ResourceId`](modules.md#resourceid) -* [`ResourceName`](modules.md#resourcename) -* [`ResourceWrap`](modules.md#resourcewrap) -* [`Response`](modules.md#response) -* [`RestrictedBy`](modules.md#restrictedby) -* [`Role`](modules.md#role) -* [`Roman`](modules.md#roman) -* [`Rp`](modules.md#rp) -* [`Rt`](modules.md#rt) -* [`Ruby`](modules.md#ruby) -* [`SansSerif`](modules.md#sansserif) -* [`Sc`](modules.md#sc) -* [`Season`](modules.md#season) -* [`SecMeta`](modules.md#secmeta) -* [`Sec`](modules.md#sec) -* [`SeeAlso`](modules.md#seealso) -* [`See`](modules.md#see) -* [`SelfUri`](modules.md#selfuri) -* [`SeriesText`](modules.md#seriestext) -* [`SeriesTitle`](modules.md#seriestitle) -* [`Series`](modules.md#series) -* [`SigBlock`](modules.md#sigblock) -* [`Sig`](modules.md#sig) -* [`Size`](modules.md#size) -* [`Source`](modules.md#source) -* [`Speaker`](modules.md#speaker) -* [`Speech`](modules.md#speech) -* [`Statement`](modules.md#statement) -* [`State`](modules.md#state) -* [`StdOrganization`](modules.md#stdorganization) -* [`Std`](modules.md#std) -* [`Strike`](modules.md#strike) -* [`StringConf`](modules.md#stringconf) -* [`StringDate`](modules.md#stringdate) -* [`StringName`](modules.md#stringname) -* [`StyledContent`](modules.md#styledcontent) -* [`SubArticle`](modules.md#subarticle) -* [`Subject`](modules.md#subject) -* [`SubjGroup`](modules.md#subjgroup) -* [`Subtitle`](modules.md#subtitle) -* [`Sub`](modules.md#sub) -* [`Suffix`](modules.md#suffix) -* [`SupplementaryMaterial`](modules.md#supplementarymaterial) -* [`Supplement`](modules.md#supplement) -* [`SupportDescription`](modules.md#supportdescription) -* [`SupportGroup`](modules.md#supportgroup) -* [`SupportSource`](modules.md#supportsource) -* [`Sup`](modules.md#sup) -* [`Surname`](modules.md#surname) -* [`TableCount`](modules.md#tablecount) -* [`Table`](modules.md#table) -* [`TableWrapfoot`](modules.md#tablewrapfoot) -* [`TableWrapgroup`](modules.md#tablewrapgroup) -* [`TableWrap`](modules.md#tablewrap) -* [`Target`](modules.md#target) -* [`Tbody`](modules.md#tbody) -* [`Td`](modules.md#td) -* [`TermHead`](modules.md#termhead) -* [`Term`](modules.md#term) -* [`TexMath`](modules.md#texmath) -* [`TextualForm`](modules.md#textualform) -* [`Tfoot`](modules.md#tfoot) -* [`Thead`](modules.md#thead) -* [`Th`](modules.md#th) -* [`TimeStamp`](modules.md#timestamp) -* [`TitleGroup`](modules.md#titlegroup) -* [`Title`](modules.md#title) -* [`TransAbstract`](modules.md#transabstract) -* [`TransSource`](modules.md#transsource) -* [`TransSubtitle`](modules.md#transsubtitle) -* [`TransTitlegroup`](modules.md#transtitlegroup) -* [`TransTitle`](modules.md#transtitle) -* [`Tr`](modules.md#tr) -* [`UnderlineEnd`](modules.md#underlineend) -* [`UnderlineStart`](modules.md#underlinestart) -* [`Underline`](modules.md#underline) -* [`UnstructuredKwdgroup`](modules.md#unstructuredkwdgroup) -* [`Uri`](modules.md#uri) -* [`VerseGroup`](modules.md#versegroup) -* [`VerseLine`](modules.md#verseline) -* [`Version`](modules.md#version) -* [`VolumeId`](modules.md#volumeid) -* [`VolumeIssuegroup`](modules.md#volumeissuegroup) -* [`VolumeSeries`](modules.md#volumeseries) -* [`Volume`](modules.md#volume) -* [`WordCount`](modules.md#wordcount) -* [`Xref`](modules.md#xref) -* [`X`](modules.md#x) -* [`Year`](modules.md#year) +- `TData` _extends_ `object` = `Data`Information from the ecosystem. Useful for more specific [data](modules.md#data). + +#### Hierarchy + +- [`Element`](modules.md#element) +- [`AbbrevJournaltitle`](modules.md#abbrevjournaltitle) +- [`Abbrev`](modules.md#abbrev) +- [`Abstract`](modules.md#abstract) +- [`AccessDate`](modules.md#accessdate) +- [`Ack`](modules.md#ack) +- [`Address`](modules.md#address) +- [`AddrLine`](modules.md#addrline) +- [`AffAlternatives`](modules.md#affalternatives) +- [`Aff`](modules.md#aff) +- [`Alternatives`](modules.md#alternatives) +- [`AltText`](modules.md#alttext) +- [`AltTitle`](modules.md#alttitle) +- [`Annotation`](modules.md#annotation) +- [`Anonymous`](modules.md#anonymous) +- [`AnswerSet`](modules.md#answerset) +- [`Answer`](modules.md#answer) +- [`AppGroup`](modules.md#appgroup) +- [`App`](modules.md#app) +- [`Array`](modules.md#array) +- [`ArticleCategories`](modules.md#articlecategories) +- [`ArticleId`](modules.md#articleid) +- [`ArticleMeta`](modules.md#articlemeta) +- [`ArticleTitle`](modules.md#articletitle) +- [`Article`](modules.md#article) +- [`ArticleVersionalternatives`](modules.md#articleversionalternatives) +- [`ArticleVersion`](modules.md#articleversion) +- [`Attrib`](modules.md#attrib) +- [`AuthorComment`](modules.md#authorcomment) +- [`AuthorNotes`](modules.md#authornotes) +- [`AwardDesc`](modules.md#awarddesc) +- [`AwardGroup`](modules.md#awardgroup) +- [`AwardId`](modules.md#awardid) +- [`AwardName`](modules.md#awardname) +- [`Back`](modules.md#back) +- [`Bio`](modules.md#bio) +- [`BlockAlternatives`](modules.md#blockalternatives) +- [`Body`](modules.md#body) +- [`Bold`](modules.md#bold) +- [`BoxedText`](modules.md#boxedtext) +- [`Break`](modules.md#break) +- [`Caption`](modules.md#caption) +- [`ChapterTitle`](modules.md#chaptertitle) +- [`ChemStruct`](modules.md#chemstruct) +- [`ChemStructwrap`](modules.md#chemstructwrap) +- [`CitationAlternatives`](modules.md#citationalternatives) +- [`City`](modules.md#city) +- [`Code`](modules.md#code) +- [`Colgroup`](modules.md#colgroup) +- [`CollabAlternatives`](modules.md#collabalternatives) +- [`Collab`](modules.md#collab) +- [`Col`](modules.md#col) +- [`Comment`](modules.md#comment) +- [`CompoundKwdpart`](modules.md#compoundkwdpart) +- [`CompoundKwd`](modules.md#compoundkwd) +- [`CompoundSubjectpart`](modules.md#compoundsubjectpart) +- [`CompoundSubject`](modules.md#compoundsubject) +- [`ConfAcronym`](modules.md#confacronym) +- [`ConfDate`](modules.md#confdate) +- [`Conference`](modules.md#conference) +- [`ConfLoc`](modules.md#confloc) +- [`ConfName`](modules.md#confname) +- [`ConfNum`](modules.md#confnum) +- [`ConfSponsor`](modules.md#confsponsor) +- [`ConfTheme`](modules.md#conftheme) +- [`ContribGroup`](modules.md#contribgroup) +- [`ContribId`](modules.md#contribid) +- [`Contrib`](modules.md#contrib) +- [`ContributedResourcegroup`](modules.md#contributedresourcegroup) +- [`CopyrightHolder`](modules.md#copyrightholder) +- [`CopyrightStatement`](modules.md#copyrightstatement) +- [`CopyrightYear`](modules.md#copyrightyear) +- [`Corresp`](modules.md#corresp) +- [`Country`](modules.md#country) +- [`Counts`](modules.md#counts) +- [`Count`](modules.md#count) +- [`CustomMetagroup`](modules.md#custommetagroup) +- [`CustomMeta`](modules.md#custommeta) +- [`DataTitle`](modules.md#datatitle) +- [`DateIncitation`](modules.md#dateincitation) +- [`Date`](modules.md#date) +- [`Day`](modules.md#day) +- [`DefHead`](modules.md#defhead) +- [`DefItem`](modules.md#defitem) +- [`DefList`](modules.md#deflist) +- [`Def`](modules.md#def) +- [`Degrees`](modules.md#degrees) +- [`DispFormulagroup`](modules.md#dispformulagroup) +- [`DispFormula`](modules.md#dispformula) +- [`DispQuote`](modules.md#dispquote) +- [`Edition`](modules.md#edition) +- [`ElementCitation`](modules.md#elementcitation) +- [`ElocationId`](modules.md#elocationid) +- [`Email`](modules.md#email) +- [`EquationCount`](modules.md#equationcount) +- [`Era`](modules.md#era) +- [`Etal`](modules.md#etal) +- [`EventDesc`](modules.md#eventdesc) +- [`Event`](modules.md#event) +- [`Explanation`](modules.md#explanation) +- [`ExtendedBy`](modules.md#extendedby) +- [`ExtLink`](modules.md#extlink) +- [`Fax`](modules.md#fax) +- [`FigCount`](modules.md#figcount) +- [`FigGroup`](modules.md#figgroup) +- [`Fig`](modules.md#fig) +- [`FixedCase`](modules.md#fixedcase) +- [`FloatsGroup`](modules.md#floatsgroup) +- [`FnGroup`](modules.md#fngroup) +- [`Fn`](modules.md#fn) +- [`Fpage`](modules.md#fpage) +- [`FrontStub`](modules.md#frontstub) +- [`Front`](modules.md#front) +- [`FundingGroup`](modules.md#fundinggroup) +- [`FundingSource`](modules.md#fundingsource) +- [`FundingStatement`](modules.md#fundingstatement) +- [`GivenNames`](modules.md#givennames) +- [`Glossary`](modules.md#glossary) +- [`GlyphData`](modules.md#glyphdata) +- [`GlyphRef`](modules.md#glyphref) +- [`Gov`](modules.md#gov) +- [`Graphic`](modules.md#graphic) +- [`History`](modules.md#history) +- [`Hr`](modules.md#hr) +- [`IndexTermrangeend`](modules.md#indextermrangeend) +- [`IndexTerm`](modules.md#indexterm) +- [`InlineFormula`](modules.md#inlineformula) +- [`InlineGraphic`](modules.md#inlinegraphic) +- [`InlineMedia`](modules.md#inlinemedia) +- [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial) +- [`InstitutionId`](modules.md#institutionid) +- [`Institution`](modules.md#institution) +- [`InstitutionWrap`](modules.md#institutionwrap) +- [`Isbn`](modules.md#isbn) +- [`IssnL`](modules.md#issnl) +- [`Issn`](modules.md#issn) +- [`IssueId`](modules.md#issueid) +- [`IssuePart`](modules.md#issuepart) +- [`IssueSponsor`](modules.md#issuesponsor) +- [`IssueSubtitle`](modules.md#issuesubtitle) +- [`IssueTitlegroup`](modules.md#issuetitlegroup) +- [`IssueTitle`](modules.md#issuetitle) +- [`Issue`](modules.md#issue) +- [`Italic`](modules.md#italic) +- [`JournalId`](modules.md#journalid) +- [`JournalMeta`](modules.md#journalmeta) +- [`JournalSubtitle`](modules.md#journalsubtitle) +- [`JournalTitlegroup`](modules.md#journaltitlegroup) +- [`JournalTitle`](modules.md#journaltitle) +- [`KwdGroup`](modules.md#kwdgroup) +- [`Kwd`](modules.md#kwd) +- [`Label`](modules.md#label) +- [`LicenseP`](modules.md#licensep) +- [`License`](modules.md#license) +- [`ListItem`](modules.md#listitem) +- [`List`](modules.md#list) +- [`LongDesc`](modules.md#longdesc) +- [`Lpage`](modules.md#lpage) +- [`Media`](modules.md#media) +- [`MetaName`](modules.md#metaname) +- [`MetaValue`](modules.md#metavalue) +- [`MilestoneEnd`](modules.md#milestoneend) +- [`MilestoneStart`](modules.md#milestonestart) +- [`MixedCitation`](modules.md#mixedcitation) +- [`Monospace`](modules.md#monospace) +- [`Month`](modules.md#month) +- [`NameAlternatives`](modules.md#namealternatives) +- [`NamedContent`](modules.md#namedcontent) +- [`Name`](modules.md#name) +- [`NestedKwd`](modules.md#nestedkwd) +- [`NlmCitation`](modules.md#nlmcitation) +- [`Notes`](modules.md#notes) +- [`Note`](modules.md#note) +- [`ObjectId`](modules.md#objectid) +- [`OnBehalfof`](modules.md#onbehalfof) +- [`OpenAccess`](modules.md#openaccess) +- [`Option`](modules.md#option) +- [`OverlineEnd`](modules.md#overlineend) +- [`OverlineStart`](modules.md#overlinestart) +- [`Overline`](modules.md#overline) +- [`PageCount`](modules.md#pagecount) +- [`PageRange`](modules.md#pagerange) +- [`PartTitle`](modules.md#parttitle) +- [`Patent`](modules.md#patent) +- [`Permissions`](modules.md#permissions) +- [`PersonGroup`](modules.md#persongroup) +- [`Phone`](modules.md#phone) +- [`PostalCode`](modules.md#postalcode) +- [`Prefix`](modules.md#prefix) +- [`Preformat`](modules.md#preformat) +- [`Price`](modules.md#price) +- [`PrincipalAwardrecipient`](modules.md#principalawardrecipient) +- [`PrincipalInvestigator`](modules.md#principalinvestigator) +- [`PrivateChar`](modules.md#privatechar) +- [`ProcessingMeta`](modules.md#processingmeta) +- [`Product`](modules.md#product) +- [`P`](modules.md#p) +- [`PubDatenotavailable`](modules.md#pubdatenotavailable) +- [`PubDate`](modules.md#pubdate) +- [`PubHistory`](modules.md#pubhistory) +- [`PubId`](modules.md#pubid) +- [`PublisherLoc`](modules.md#publisherloc) +- [`PublisherName`](modules.md#publishername) +- [`Publisher`](modules.md#publisher) +- [`QuestionPreamble`](modules.md#questionpreamble) +- [`Question`](modules.md#question) +- [`QuestionWrapgroup`](modules.md#questionwrapgroup) +- [`QuestionWrap`](modules.md#questionwrap) +- [`Rb`](modules.md#rb) +- [`RefCount`](modules.md#refcount) +- [`RefList`](modules.md#reflist) +- [`Ref`](modules.md#ref) +- [`RelatedArticle`](modules.md#relatedarticle) +- [`RelatedObject`](modules.md#relatedobject) +- [`ResourceGroup`](modules.md#resourcegroup) +- [`ResourceId`](modules.md#resourceid) +- [`ResourceName`](modules.md#resourcename) +- [`ResourceWrap`](modules.md#resourcewrap) +- [`Response`](modules.md#response) +- [`RestrictedBy`](modules.md#restrictedby) +- [`Role`](modules.md#role) +- [`Roman`](modules.md#roman) +- [`Rp`](modules.md#rp) +- [`Rt`](modules.md#rt) +- [`Ruby`](modules.md#ruby) +- [`SansSerif`](modules.md#sansserif) +- [`Sc`](modules.md#sc) +- [`Season`](modules.md#season) +- [`SecMeta`](modules.md#secmeta) +- [`Sec`](modules.md#sec) +- [`SeeAlso`](modules.md#seealso) +- [`See`](modules.md#see) +- [`SelfUri`](modules.md#selfuri) +- [`SeriesText`](modules.md#seriestext) +- [`SeriesTitle`](modules.md#seriestitle) +- [`Series`](modules.md#series) +- [`SigBlock`](modules.md#sigblock) +- [`Sig`](modules.md#sig) +- [`Size`](modules.md#size) +- [`Source`](modules.md#source) +- [`Speaker`](modules.md#speaker) +- [`Speech`](modules.md#speech) +- [`Statement`](modules.md#statement) +- [`State`](modules.md#state) +- [`StdOrganization`](modules.md#stdorganization) +- [`Std`](modules.md#std) +- [`Strike`](modules.md#strike) +- [`StringConf`](modules.md#stringconf) +- [`StringDate`](modules.md#stringdate) +- [`StringName`](modules.md#stringname) +- [`StyledContent`](modules.md#styledcontent) +- [`SubArticle`](modules.md#subarticle) +- [`Subject`](modules.md#subject) +- [`SubjGroup`](modules.md#subjgroup) +- [`Subtitle`](modules.md#subtitle) +- [`Sub`](modules.md#sub) +- [`Suffix`](modules.md#suffix) +- [`SupplementaryMaterial`](modules.md#supplementarymaterial) +- [`Supplement`](modules.md#supplement) +- [`SupportDescription`](modules.md#supportdescription) +- [`SupportGroup`](modules.md#supportgroup) +- [`SupportSource`](modules.md#supportsource) +- [`Sup`](modules.md#sup) +- [`Surname`](modules.md#surname) +- [`TableCount`](modules.md#tablecount) +- [`Table`](modules.md#table) +- [`TableWrapfoot`](modules.md#tablewrapfoot) +- [`TableWrapgroup`](modules.md#tablewrapgroup) +- [`TableWrap`](modules.md#tablewrap) +- [`Target`](modules.md#target) +- [`Tbody`](modules.md#tbody) +- [`Td`](modules.md#td) +- [`TermHead`](modules.md#termhead) +- [`Term`](modules.md#term) +- [`TexMath`](modules.md#texmath) +- [`TextualForm`](modules.md#textualform) +- [`Tfoot`](modules.md#tfoot) +- [`Thead`](modules.md#thead) +- [`Th`](modules.md#th) +- [`TimeStamp`](modules.md#timestamp) +- [`TitleGroup`](modules.md#titlegroup) +- [`Title`](modules.md#title) +- [`TransAbstract`](modules.md#transabstract) +- [`TransSource`](modules.md#transsource) +- [`TransSubtitle`](modules.md#transsubtitle) +- [`TransTitlegroup`](modules.md#transtitlegroup) +- [`TransTitle`](modules.md#transtitle) +- [`Tr`](modules.md#tr) +- [`UnderlineEnd`](modules.md#underlineend) +- [`UnderlineStart`](modules.md#underlinestart) +- [`Underline`](modules.md#underline) +- [`UnstructuredKwdgroup`](modules.md#unstructuredkwdgroup) +- [`Uri`](modules.md#uri) +- [`VerseGroup`](modules.md#versegroup) +- [`VerseLine`](modules.md#verseline) +- [`Version`](modules.md#version) +- [`VolumeId`](modules.md#volumeid) +- [`VolumeIssuegroup`](modules.md#volumeissuegroup) +- [`VolumeSeries`](modules.md#volumeseries) +- [`Volume`](modules.md#volume) +- [`WordCount`](modules.md#wordcount) +- [`Xref`](modules.md#xref) +- [`X`](modules.md#x) +- [`Year`](modules.md#year) #### Properties @@ -27804,7 +27804,7 @@ Syntactic units in unist syntax trees are called nodes. Information from the ecosystem. -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `position?` @@ -27813,7 +27813,7 @@ Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/ Location of a node in a source document. Must not be present if a node is generated. -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -27821,9 +27821,9 @@ Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/ The variant of a node. -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:22 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:22 -*** +--- ### `Note` @@ -27831,7 +27831,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Note** +- [`Node`](modules.md#node).**Note** #### Properties @@ -27848,18 +27848,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7009) +Defined in: [libs/jast/jast/src/lib/jats.ts:7009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7009) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`NoteChildrenMap`](modules.md#notechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7014) +Defined in: [libs/jast/jast/src/lib/jats.ts:7014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7014) ##### `data?` @@ -27869,13 +27869,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"note"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7008) +Defined in: [libs/jast/jast/src/lib/jats.ts:7008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7008) ##### `position?` @@ -27886,7 +27886,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -27896,9 +27896,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7007) +Defined in: [libs/jast/jast/src/lib/jats.ts:7007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7007) -*** +--- ### `NoteChildrenMap` @@ -27908,27 +27908,27 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7007](https://github.com/TrialAndEr > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:7020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7020) +Defined in: [libs/jast/jast/src/lib/jats.ts:7020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7020) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7022) +Defined in: [libs/jast/jast/src/lib/jats.ts:7022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7022) ##### `product` > [`Product`](modules.md#product)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7024](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7024) +Defined in: [libs/jast/jast/src/lib/jats.ts:7024](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7024) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:7018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7018) +Defined in: [libs/jast/jast/src/lib/jats.ts:7018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7018) -*** +--- ### `Notes` @@ -27936,7 +27936,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Notes** +- [`Node`](modules.md#node).**Notes** #### Properties @@ -27954,19 +27954,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `notesType`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `notesType`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:6915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6915) +Defined in: [libs/jast/jast/src/lib/jats.ts:6915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6915) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`NotesChildrenMap`](modules.md#noteschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6921) +Defined in: [libs/jast/jast/src/lib/jats.ts:6921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6921) ##### `data?` @@ -27976,13 +27976,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"notes"` -Defined in: [libs/jast/jast/src/lib/jats.ts:6914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6914) +Defined in: [libs/jast/jast/src/lib/jats.ts:6914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6914) ##### `position?` @@ -27993,7 +27993,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -28003,9 +28003,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:6913](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6913) +Defined in: [libs/jast/jast/src/lib/jats.ts:6913](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6913) -*** +--- ### `NotesChildrenMap` @@ -28015,243 +28015,243 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:6913](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6925](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6925) +Defined in: [libs/jast/jast/src/lib/jats.ts:6925](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6925) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6927](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6927) +Defined in: [libs/jast/jast/src/lib/jats.ts:6927](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6927) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6929](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6929) +Defined in: [libs/jast/jast/src/lib/jats.ts:6929](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6929) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6931](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6931) +Defined in: [libs/jast/jast/src/lib/jats.ts:6931](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6931) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6933](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6933) +Defined in: [libs/jast/jast/src/lib/jats.ts:6933](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6933) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6935](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6935) +Defined in: [libs/jast/jast/src/lib/jats.ts:6935](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6935) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6937](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6937) +Defined in: [libs/jast/jast/src/lib/jats.ts:6937](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6937) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6939](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6939) +Defined in: [libs/jast/jast/src/lib/jats.ts:6939](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6939) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6941](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6941) +Defined in: [libs/jast/jast/src/lib/jats.ts:6941](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6941) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6943](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6943) +Defined in: [libs/jast/jast/src/lib/jats.ts:6943](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6943) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6945](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6945) +Defined in: [libs/jast/jast/src/lib/jats.ts:6945](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6945) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6947](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6947) +Defined in: [libs/jast/jast/src/lib/jats.ts:6947](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6947) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6949](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6949) +Defined in: [libs/jast/jast/src/lib/jats.ts:6949](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6949) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6951](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6951) +Defined in: [libs/jast/jast/src/lib/jats.ts:6951](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6951) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6953](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6953) +Defined in: [libs/jast/jast/src/lib/jats.ts:6953](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6953) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6955) +Defined in: [libs/jast/jast/src/lib/jats.ts:6955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6955) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6957](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6957) +Defined in: [libs/jast/jast/src/lib/jats.ts:6957](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6957) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6959) +Defined in: [libs/jast/jast/src/lib/jats.ts:6959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6959) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6961) +Defined in: [libs/jast/jast/src/lib/jats.ts:6961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6961) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:6963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6963) +Defined in: [libs/jast/jast/src/lib/jats.ts:6963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6963) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6965) +Defined in: [libs/jast/jast/src/lib/jats.ts:6965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6965) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6967) +Defined in: [libs/jast/jast/src/lib/jats.ts:6967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6967) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6969) +Defined in: [libs/jast/jast/src/lib/jats.ts:6969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6969) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6971) +Defined in: [libs/jast/jast/src/lib/jats.ts:6971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6971) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6973) +Defined in: [libs/jast/jast/src/lib/jats.ts:6973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6973) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6975) +Defined in: [libs/jast/jast/src/lib/jats.ts:6975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6975) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6977) +Defined in: [libs/jast/jast/src/lib/jats.ts:6977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6977) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6979) +Defined in: [libs/jast/jast/src/lib/jats.ts:6979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6979) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6981) +Defined in: [libs/jast/jast/src/lib/jats.ts:6981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6981) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6983) +Defined in: [libs/jast/jast/src/lib/jats.ts:6983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6983) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6985) +Defined in: [libs/jast/jast/src/lib/jats.ts:6985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6985) ##### `secMeta?` > [`SecMeta`](modules.md#secmeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:6987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6987) +Defined in: [libs/jast/jast/src/lib/jats.ts:6987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6987) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6989) +Defined in: [libs/jast/jast/src/lib/jats.ts:6989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6989) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6991) +Defined in: [libs/jast/jast/src/lib/jats.ts:6991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6991) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6993) +Defined in: [libs/jast/jast/src/lib/jats.ts:6993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6993) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6995) +Defined in: [libs/jast/jast/src/lib/jats.ts:6995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6995) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6997) +Defined in: [libs/jast/jast/src/lib/jats.ts:6997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6997) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:6999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6999) +Defined in: [libs/jast/jast/src/lib/jats.ts:6999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L6999) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:7001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7001) +Defined in: [libs/jast/jast/src/lib/jats.ts:7001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7001) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7003) +Defined in: [libs/jast/jast/src/lib/jats.ts:7003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7003) -*** +--- ### `ObjectId` @@ -28259,7 +28259,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ObjectId** +- [`Node`](modules.md#node).**ObjectId** #### Properties @@ -28278,20 +28278,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `id`? | `string` | -| `pubIdType`? | `string` | -| `specificUse`? | `string` | +| `id`? | `string` | +| `pubIdType`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7030](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7030) +Defined in: [libs/jast/jast/src/lib/jats.ts:7030](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7030) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7037) +Defined in: [libs/jast/jast/src/lib/jats.ts:7037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7037) ##### `data?` @@ -28301,13 +28301,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"objectId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7029) +Defined in: [libs/jast/jast/src/lib/jats.ts:7029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7029) ##### `position?` @@ -28318,7 +28318,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -28328,9 +28328,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7028](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7028) +Defined in: [libs/jast/jast/src/lib/jats.ts:7028](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7028) -*** +--- ### `ObjectIdChildrenMap` @@ -28340,9 +28340,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7028](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:7041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7041) +Defined in: [libs/jast/jast/src/lib/jats.ts:7041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7041) -*** +--- ### `OnBehalfof` @@ -28350,7 +28350,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**OnBehalfof** +- [`Node`](modules.md#node).**OnBehalfof** #### Properties @@ -28367,18 +28367,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7047) +Defined in: [libs/jast/jast/src/lib/jats.ts:7047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7047) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`OnBehalfofChildrenMap`](modules.md#onbehalfofchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7052](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7052) +Defined in: [libs/jast/jast/src/lib/jats.ts:7052](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7052) ##### `data?` @@ -28388,13 +28388,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"onBehalfof"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7046) +Defined in: [libs/jast/jast/src/lib/jats.ts:7046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7046) ##### `position?` @@ -28405,7 +28405,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -28415,9 +28415,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7045) +Defined in: [libs/jast/jast/src/lib/jats.ts:7045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7045) -*** +--- ### `OnBehalfofChildrenMap` @@ -28427,123 +28427,123 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7045](https://github.com/TrialAndEr > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7056](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7056) +Defined in: [libs/jast/jast/src/lib/jats.ts:7056](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7056) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7058](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7058) +Defined in: [libs/jast/jast/src/lib/jats.ts:7058](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7058) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7060](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7060) +Defined in: [libs/jast/jast/src/lib/jats.ts:7060](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7060) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7062](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7062) +Defined in: [libs/jast/jast/src/lib/jats.ts:7062](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7062) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7064](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7064) +Defined in: [libs/jast/jast/src/lib/jats.ts:7064](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7064) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7066](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7066) +Defined in: [libs/jast/jast/src/lib/jats.ts:7066](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7066) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7068](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7068) +Defined in: [libs/jast/jast/src/lib/jats.ts:7068](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7068) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7070](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7070) +Defined in: [libs/jast/jast/src/lib/jats.ts:7070](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7070) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7072](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7072) +Defined in: [libs/jast/jast/src/lib/jats.ts:7072](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7072) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7074](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7074) +Defined in: [libs/jast/jast/src/lib/jats.ts:7074](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7074) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7076) +Defined in: [libs/jast/jast/src/lib/jats.ts:7076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7076) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7078) +Defined in: [libs/jast/jast/src/lib/jats.ts:7078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7078) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7080](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7080) +Defined in: [libs/jast/jast/src/lib/jats.ts:7080](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7080) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7082) +Defined in: [libs/jast/jast/src/lib/jats.ts:7082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7082) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7084) +Defined in: [libs/jast/jast/src/lib/jats.ts:7084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7084) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7086) +Defined in: [libs/jast/jast/src/lib/jats.ts:7086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7086) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7088) +Defined in: [libs/jast/jast/src/lib/jats.ts:7088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7088) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7090) +Defined in: [libs/jast/jast/src/lib/jats.ts:7090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7090) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7092) +Defined in: [libs/jast/jast/src/lib/jats.ts:7092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7092) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7094) +Defined in: [libs/jast/jast/src/lib/jats.ts:7094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7094) -*** +--- ### `OpenAccess` @@ -28551,7 +28551,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**OpenAccess** +- [`Node`](modules.md#node).**OpenAccess** #### Properties @@ -28568,18 +28568,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7100) +Defined in: [libs/jast/jast/src/lib/jats.ts:7100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7100) ##### `children` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7105) +Defined in: [libs/jast/jast/src/lib/jats.ts:7105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7105) ##### `data?` @@ -28589,13 +28589,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"openAccess"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7099) +Defined in: [libs/jast/jast/src/lib/jats.ts:7099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7099) ##### `position?` @@ -28606,7 +28606,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -28616,9 +28616,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7098) +Defined in: [libs/jast/jast/src/lib/jats.ts:7098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7098) -*** +--- ### `OpenAccessChildrenMap` @@ -28628,9 +28628,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7098](https://github.com/TrialAndEr > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7109) +Defined in: [libs/jast/jast/src/lib/jats.ts:7109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7109) -*** +--- ### `Option` @@ -28638,7 +28638,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Option** +- [`Node`](modules.md#node).**Option** #### Properties @@ -28656,19 +28656,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `correct`? | `OptionTypeCorrect` | -| `id`? | `string` | -| `specificUse`? | `string` | +| Member | Type | +| :------------- | :------------------ | +| `correct`? | `OptionTypeCorrect` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7115) +Defined in: [libs/jast/jast/src/lib/jats.ts:7115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7115) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`OptionChildrenMap`](modules.md#optionchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7121) +Defined in: [libs/jast/jast/src/lib/jats.ts:7121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7121) ##### `data?` @@ -28678,13 +28678,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"option"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7114) +Defined in: [libs/jast/jast/src/lib/jats.ts:7114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7114) ##### `position?` @@ -28695,7 +28695,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -28705,9 +28705,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7113) +Defined in: [libs/jast/jast/src/lib/jats.ts:7113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7113) -*** +--- ### `OptionChildrenMap` @@ -28717,261 +28717,261 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7113](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7126) +Defined in: [libs/jast/jast/src/lib/jats.ts:7126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7126) ##### `altTitle?` > [`AltTitle`](modules.md#alttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7128) +Defined in: [libs/jast/jast/src/lib/jats.ts:7128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7128) ##### `alternatives` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7130) +Defined in: [libs/jast/jast/src/lib/jats.ts:7130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7130) ##### `answer` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7132) +Defined in: [libs/jast/jast/src/lib/jats.ts:7132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7132) ##### `answerSet` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7134](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7134) +Defined in: [libs/jast/jast/src/lib/jats.ts:7134](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7134) ##### `array` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7136) +Defined in: [libs/jast/jast/src/lib/jats.ts:7136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7136) ##### `blockAlternatives` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7138) +Defined in: [libs/jast/jast/src/lib/jats.ts:7138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7138) ##### `boxedText` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7140](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7140) +Defined in: [libs/jast/jast/src/lib/jats.ts:7140](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7140) ##### `chemStructwrap` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7142) +Defined in: [libs/jast/jast/src/lib/jats.ts:7142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7142) ##### `code` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7144) +Defined in: [libs/jast/jast/src/lib/jats.ts:7144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7144) ##### `defList` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7146) +Defined in: [libs/jast/jast/src/lib/jats.ts:7146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7146) ##### `dispFormula` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7148) +Defined in: [libs/jast/jast/src/lib/jats.ts:7148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7148) ##### `dispFormulagroup` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7150) +Defined in: [libs/jast/jast/src/lib/jats.ts:7150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7150) ##### `dispQuote` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7152) +Defined in: [libs/jast/jast/src/lib/jats.ts:7152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7152) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7154) +Defined in: [libs/jast/jast/src/lib/jats.ts:7154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7154) ##### `fig` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7156](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7156) +Defined in: [libs/jast/jast/src/lib/jats.ts:7156](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7156) ##### `figGroup` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7158) +Defined in: [libs/jast/jast/src/lib/jats.ts:7158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7158) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7160) +Defined in: [libs/jast/jast/src/lib/jats.ts:7160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7160) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7162](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7162) +Defined in: [libs/jast/jast/src/lib/jats.ts:7162](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7162) ##### `graphic` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7164) +Defined in: [libs/jast/jast/src/lib/jats.ts:7164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7164) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:7166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7166) +Defined in: [libs/jast/jast/src/lib/jats.ts:7166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7166) ##### `list` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7168) +Defined in: [libs/jast/jast/src/lib/jats.ts:7168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7168) ##### `media` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7170) +Defined in: [libs/jast/jast/src/lib/jats.ts:7170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7170) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7172) +Defined in: [libs/jast/jast/src/lib/jats.ts:7172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7172) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7174) +Defined in: [libs/jast/jast/src/lib/jats.ts:7174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7174) ##### `preformat` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7176) +Defined in: [libs/jast/jast/src/lib/jats.ts:7176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7176) ##### `question` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7178) +Defined in: [libs/jast/jast/src/lib/jats.ts:7178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7178) ##### `questionWrap` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7180) +Defined in: [libs/jast/jast/src/lib/jats.ts:7180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7180) ##### `questionWrapgroup` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7182) +Defined in: [libs/jast/jast/src/lib/jats.ts:7182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7182) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7184) +Defined in: [libs/jast/jast/src/lib/jats.ts:7184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7184) ##### `relatedArticle` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7186](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7186) +Defined in: [libs/jast/jast/src/lib/jats.ts:7186](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7186) ##### `relatedObject` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7188) +Defined in: [libs/jast/jast/src/lib/jats.ts:7188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7188) ##### `sec` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7190) +Defined in: [libs/jast/jast/src/lib/jats.ts:7190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7190) ##### `speech` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7192) +Defined in: [libs/jast/jast/src/lib/jats.ts:7192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7192) ##### `statement` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7194) +Defined in: [libs/jast/jast/src/lib/jats.ts:7194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7194) ##### `subtitle?` > [`Subtitle`](modules.md#subtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7196) +Defined in: [libs/jast/jast/src/lib/jats.ts:7196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7196) ##### `supplementaryMaterial` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7198) +Defined in: [libs/jast/jast/src/lib/jats.ts:7198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7198) ##### `tableWrap` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7200) +Defined in: [libs/jast/jast/src/lib/jats.ts:7200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7200) ##### `tableWrapgroup` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7202) +Defined in: [libs/jast/jast/src/lib/jats.ts:7202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7202) ##### `texMath` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7204) +Defined in: [libs/jast/jast/src/lib/jats.ts:7204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7204) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:7125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7125) +Defined in: [libs/jast/jast/src/lib/jats.ts:7125](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7125) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:7206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7206) +Defined in: [libs/jast/jast/src/lib/jats.ts:7206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7206) ##### `verseGroup` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7208) +Defined in: [libs/jast/jast/src/lib/jats.ts:7208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7208) -*** +--- ### `Overline` @@ -28979,7 +28979,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Overline** +- [`Node`](modules.md#node).**Overline** #### Properties @@ -28997,19 +28997,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `specificUse`? | `string` | -| `toggle`? | `OverlineTypeToggle` | +| Member | Type | +| :------------- | :------------------- | +| `id`? | `string` | +| `specificUse`? | `string` | +| `toggle`? | `OverlineTypeToggle` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7237) +Defined in: [libs/jast/jast/src/lib/jats.ts:7237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7237) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`OverlineChildrenMap`](modules.md#overlinechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7243) +Defined in: [libs/jast/jast/src/lib/jats.ts:7243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7243) ##### `data?` @@ -29019,13 +29019,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"overline"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7236) +Defined in: [libs/jast/jast/src/lib/jats.ts:7236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7236) ##### `position?` @@ -29036,7 +29036,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -29046,9 +29046,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7235) +Defined in: [libs/jast/jast/src/lib/jats.ts:7235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7235) -*** +--- ### `OverlineChildrenMap` @@ -29058,219 +29058,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7235](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7247) +Defined in: [libs/jast/jast/src/lib/jats.ts:7247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7247) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7249) +Defined in: [libs/jast/jast/src/lib/jats.ts:7249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7249) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7251) +Defined in: [libs/jast/jast/src/lib/jats.ts:7251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7251) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7253) +Defined in: [libs/jast/jast/src/lib/jats.ts:7253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7253) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7255) +Defined in: [libs/jast/jast/src/lib/jats.ts:7255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7255) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7257) +Defined in: [libs/jast/jast/src/lib/jats.ts:7257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7257) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7259) +Defined in: [libs/jast/jast/src/lib/jats.ts:7259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7259) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7261) +Defined in: [libs/jast/jast/src/lib/jats.ts:7261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7261) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7263) +Defined in: [libs/jast/jast/src/lib/jats.ts:7263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7263) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7265) +Defined in: [libs/jast/jast/src/lib/jats.ts:7265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7265) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7267](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7267) +Defined in: [libs/jast/jast/src/lib/jats.ts:7267](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7267) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7269) +Defined in: [libs/jast/jast/src/lib/jats.ts:7269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7269) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7271) +Defined in: [libs/jast/jast/src/lib/jats.ts:7271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7271) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7273](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7273) +Defined in: [libs/jast/jast/src/lib/jats.ts:7273](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7273) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7275) +Defined in: [libs/jast/jast/src/lib/jats.ts:7275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7275) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7277) +Defined in: [libs/jast/jast/src/lib/jats.ts:7277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7277) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7279](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7279) +Defined in: [libs/jast/jast/src/lib/jats.ts:7279](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7279) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7281](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7281) +Defined in: [libs/jast/jast/src/lib/jats.ts:7281](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7281) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7283) +Defined in: [libs/jast/jast/src/lib/jats.ts:7283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7283) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7285](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7285) +Defined in: [libs/jast/jast/src/lib/jats.ts:7285](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7285) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7287) +Defined in: [libs/jast/jast/src/lib/jats.ts:7287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7287) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7289](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7289) +Defined in: [libs/jast/jast/src/lib/jats.ts:7289](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7289) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7291](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7291) +Defined in: [libs/jast/jast/src/lib/jats.ts:7291](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7291) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7293](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7293) +Defined in: [libs/jast/jast/src/lib/jats.ts:7293](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7293) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7295) +Defined in: [libs/jast/jast/src/lib/jats.ts:7295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7295) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7297](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7297) +Defined in: [libs/jast/jast/src/lib/jats.ts:7297](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7297) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7299) +Defined in: [libs/jast/jast/src/lib/jats.ts:7299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7299) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7301) +Defined in: [libs/jast/jast/src/lib/jats.ts:7301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7301) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7303) +Defined in: [libs/jast/jast/src/lib/jats.ts:7303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7303) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7305) +Defined in: [libs/jast/jast/src/lib/jats.ts:7305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7305) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7307) +Defined in: [libs/jast/jast/src/lib/jats.ts:7307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7307) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7309](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7309) +Defined in: [libs/jast/jast/src/lib/jats.ts:7309](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7309) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7311) +Defined in: [libs/jast/jast/src/lib/jats.ts:7311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7311) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7313) +Defined in: [libs/jast/jast/src/lib/jats.ts:7313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7313) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7315) +Defined in: [libs/jast/jast/src/lib/jats.ts:7315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7315) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7317) +Defined in: [libs/jast/jast/src/lib/jats.ts:7317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7317) -*** +--- ### `OverlineEnd` @@ -29278,7 +29278,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**OverlineEnd** +- [`Node`](modules.md#node).**OverlineEnd** #### Properties @@ -29296,19 +29296,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid` | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rid` | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7216) +Defined in: [libs/jast/jast/src/lib/jats.ts:7216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7216) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:7221](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7221) +Defined in: [libs/jast/jast/src/lib/jats.ts:7221](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7221) ##### `data?` @@ -29318,13 +29318,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"overlineEnd"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7215](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7215) +Defined in: [libs/jast/jast/src/lib/jats.ts:7215](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7215) ##### `position?` @@ -29335,7 +29335,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -29345,9 +29345,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7214) +Defined in: [libs/jast/jast/src/lib/jats.ts:7214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7214) -*** +--- ### `OverlineStart` @@ -29355,7 +29355,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**OverlineStart** +- [`Node`](modules.md#node).**OverlineStart** #### Properties @@ -29372,18 +29372,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id` | `string` | +| Member | Type | +| :------------- | :------- | +| `id` | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7227) +Defined in: [libs/jast/jast/src/lib/jats.ts:7227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7227) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:7231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7231) +Defined in: [libs/jast/jast/src/lib/jats.ts:7231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7231) ##### `data?` @@ -29393,13 +29393,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"overlineStart"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7226) +Defined in: [libs/jast/jast/src/lib/jats.ts:7226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7226) ##### `position?` @@ -29410,7 +29410,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -29420,9 +29420,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7225) +Defined in: [libs/jast/jast/src/lib/jats.ts:7225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7225) -*** +--- ### `P` @@ -29430,7 +29430,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**P** +- [`Node`](modules.md#node).**P** #### Properties @@ -29447,18 +29447,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7966) +Defined in: [libs/jast/jast/src/lib/jats.ts:7966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7966) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PChildrenMap`](modules.md#pchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7971) +Defined in: [libs/jast/jast/src/lib/jats.ts:7971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7971) ##### `data?` @@ -29468,13 +29468,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"p"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7965) +Defined in: [libs/jast/jast/src/lib/jats.ts:7965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7965) ##### `position?` @@ -29485,7 +29485,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -29495,9 +29495,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7964](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7964) +Defined in: [libs/jast/jast/src/lib/jats.ts:7964](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7964) -*** +--- ### `PChildrenMap` @@ -29507,435 +29507,435 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7964](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7977) +Defined in: [libs/jast/jast/src/lib/jats.ts:7977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7977) ##### `address?` > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7979) +Defined in: [libs/jast/jast/src/lib/jats.ts:7979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7979) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7981) +Defined in: [libs/jast/jast/src/lib/jats.ts:7981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7981) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7983) +Defined in: [libs/jast/jast/src/lib/jats.ts:7983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7983) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7985) +Defined in: [libs/jast/jast/src/lib/jats.ts:7985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7985) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7987) +Defined in: [libs/jast/jast/src/lib/jats.ts:7987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7987) ##### `awardId?` > [`AwardId`](modules.md#awardid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7989) +Defined in: [libs/jast/jast/src/lib/jats.ts:7989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7989) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7991) +Defined in: [libs/jast/jast/src/lib/jats.ts:7991](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7991) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7993) +Defined in: [libs/jast/jast/src/lib/jats.ts:7993](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7993) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7995) +Defined in: [libs/jast/jast/src/lib/jats.ts:7995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7995) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7997) +Defined in: [libs/jast/jast/src/lib/jats.ts:7997](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7997) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7999) +Defined in: [libs/jast/jast/src/lib/jats.ts:7999](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7999) ##### `citationAlternatives?` > [`CitationAlternatives`](modules.md#citationalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8001) +Defined in: [libs/jast/jast/src/lib/jats.ts:8001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8001) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8003) +Defined in: [libs/jast/jast/src/lib/jats.ts:8003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8003) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8005) +Defined in: [libs/jast/jast/src/lib/jats.ts:8005](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8005) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8007) +Defined in: [libs/jast/jast/src/lib/jats.ts:8007](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8007) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8009) +Defined in: [libs/jast/jast/src/lib/jats.ts:8009](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8009) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8011) +Defined in: [libs/jast/jast/src/lib/jats.ts:8011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8011) ##### `elementCitation?` > [`ElementCitation`](modules.md#elementcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8013) +Defined in: [libs/jast/jast/src/lib/jats.ts:8013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8013) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8015](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8015) +Defined in: [libs/jast/jast/src/lib/jats.ts:8015](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8015) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8017](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8017) +Defined in: [libs/jast/jast/src/lib/jats.ts:8017](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8017) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8019) +Defined in: [libs/jast/jast/src/lib/jats.ts:8019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8019) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8021) +Defined in: [libs/jast/jast/src/lib/jats.ts:8021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8021) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8023](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8023) +Defined in: [libs/jast/jast/src/lib/jats.ts:8023](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8023) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8025) +Defined in: [libs/jast/jast/src/lib/jats.ts:8025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8025) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8027) +Defined in: [libs/jast/jast/src/lib/jats.ts:8027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8027) ##### `fundingSource?` > [`FundingSource`](modules.md#fundingsource)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8029) +Defined in: [libs/jast/jast/src/lib/jats.ts:8029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8029) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8031](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8031) +Defined in: [libs/jast/jast/src/lib/jats.ts:8031](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8031) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8033) +Defined in: [libs/jast/jast/src/lib/jats.ts:8033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8033) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8035) +Defined in: [libs/jast/jast/src/lib/jats.ts:8035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8035) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8037) +Defined in: [libs/jast/jast/src/lib/jats.ts:8037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8037) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8039](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8039) +Defined in: [libs/jast/jast/src/lib/jats.ts:8039](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8039) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8041) +Defined in: [libs/jast/jast/src/lib/jats.ts:8041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8041) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8043](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8043) +Defined in: [libs/jast/jast/src/lib/jats.ts:8043](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8043) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8045) +Defined in: [libs/jast/jast/src/lib/jats.ts:8045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8045) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8047) +Defined in: [libs/jast/jast/src/lib/jats.ts:8047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8047) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8049) +Defined in: [libs/jast/jast/src/lib/jats.ts:8049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8049) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8051](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8051) +Defined in: [libs/jast/jast/src/lib/jats.ts:8051](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8051) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8053) +Defined in: [libs/jast/jast/src/lib/jats.ts:8053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8053) ##### `mixedCitation?` > [`MixedCitation`](modules.md#mixedcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8055](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8055) +Defined in: [libs/jast/jast/src/lib/jats.ts:8055](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8055) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8057) +Defined in: [libs/jast/jast/src/lib/jats.ts:8057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8057) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8059) +Defined in: [libs/jast/jast/src/lib/jats.ts:8059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8059) ##### `nlmCitation?` > [`NlmCitation`](modules.md#nlmcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8061) +Defined in: [libs/jast/jast/src/lib/jats.ts:8061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8061) ##### `openAccess?` > [`OpenAccess`](modules.md#openaccess)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8063) +Defined in: [libs/jast/jast/src/lib/jats.ts:8063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8063) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8065) +Defined in: [libs/jast/jast/src/lib/jats.ts:8065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8065) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8067) +Defined in: [libs/jast/jast/src/lib/jats.ts:8067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8067) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8069) +Defined in: [libs/jast/jast/src/lib/jats.ts:8069](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8069) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8071) +Defined in: [libs/jast/jast/src/lib/jats.ts:8071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8071) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8073](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8073) +Defined in: [libs/jast/jast/src/lib/jats.ts:8073](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8073) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8075) +Defined in: [libs/jast/jast/src/lib/jats.ts:8075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8075) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8077) +Defined in: [libs/jast/jast/src/lib/jats.ts:8077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8077) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8079](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8079) +Defined in: [libs/jast/jast/src/lib/jats.ts:8079](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8079) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8081](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8081) +Defined in: [libs/jast/jast/src/lib/jats.ts:8081](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8081) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8083](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8083) +Defined in: [libs/jast/jast/src/lib/jats.ts:8083](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8083) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8085](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8085) +Defined in: [libs/jast/jast/src/lib/jats.ts:8085](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8085) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8087](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8087) +Defined in: [libs/jast/jast/src/lib/jats.ts:8087](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8087) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8089](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8089) +Defined in: [libs/jast/jast/src/lib/jats.ts:8089](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8089) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8091](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8091) +Defined in: [libs/jast/jast/src/lib/jats.ts:8091](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8091) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8093](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8093) +Defined in: [libs/jast/jast/src/lib/jats.ts:8093](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8093) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8095](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8095) +Defined in: [libs/jast/jast/src/lib/jats.ts:8095](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8095) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8097](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8097) +Defined in: [libs/jast/jast/src/lib/jats.ts:8097](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8097) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8099) +Defined in: [libs/jast/jast/src/lib/jats.ts:8099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8099) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8101](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8101) +Defined in: [libs/jast/jast/src/lib/jats.ts:8101](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8101) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8103) +Defined in: [libs/jast/jast/src/lib/jats.ts:8103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8103) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8105) +Defined in: [libs/jast/jast/src/lib/jats.ts:8105](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8105) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8107](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8107) +Defined in: [libs/jast/jast/src/lib/jats.ts:8107](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8107) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8109) +Defined in: [libs/jast/jast/src/lib/jats.ts:8109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8109) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:7975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7975) +Defined in: [libs/jast/jast/src/lib/jats.ts:7975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7975) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8111) +Defined in: [libs/jast/jast/src/lib/jats.ts:8111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8111) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8113) +Defined in: [libs/jast/jast/src/lib/jats.ts:8113](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8113) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8115) +Defined in: [libs/jast/jast/src/lib/jats.ts:8115](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8115) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8117](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8117) +Defined in: [libs/jast/jast/src/lib/jats.ts:8117](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8117) -*** +--- ### `PageCount` @@ -29943,7 +29943,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PageCount** +- [`Node`](modules.md#node).**PageCount** #### Properties @@ -29960,18 +29960,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------ | :------- | | `count` | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7325) +Defined in: [libs/jast/jast/src/lib/jats.ts:7325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7325) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:7329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7329) +Defined in: [libs/jast/jast/src/lib/jats.ts:7329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7329) ##### `data?` @@ -29981,13 +29981,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"pageCount"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7324) +Defined in: [libs/jast/jast/src/lib/jats.ts:7324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7324) ##### `position?` @@ -29998,7 +29998,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -30008,9 +30008,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7323](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7323) +Defined in: [libs/jast/jast/src/lib/jats.ts:7323](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7323) -*** +--- ### `PageRange` @@ -30018,7 +30018,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PageRange** +- [`Node`](modules.md#node).**PageRange** #### Properties @@ -30035,18 +30035,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7335) +Defined in: [libs/jast/jast/src/lib/jats.ts:7335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7335) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7340) +Defined in: [libs/jast/jast/src/lib/jats.ts:7340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7340) ##### `data?` @@ -30056,13 +30056,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"pageRange"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7334) +Defined in: [libs/jast/jast/src/lib/jats.ts:7334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7334) ##### `position?` @@ -30073,7 +30073,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -30083,9 +30083,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7333](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7333) +Defined in: [libs/jast/jast/src/lib/jats.ts:7333](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7333) -*** +--- ### `PageRangeChildrenMap` @@ -30095,15 +30095,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7333](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:7344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7344) +Defined in: [libs/jast/jast/src/lib/jats.ts:7344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7344) -*** +--- ### `Parent` #### Hierarchy -* `Parent`.**Parent** +- `Parent`.**Parent** #### Properties @@ -30113,7 +30113,7 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7344](https://github.com/TrialAndEr Overrides: UnistParent.children -Defined in: [libs/jast/jast/src/lib/rejour.ts:25](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L25) +Defined in: [libs/jast/jast/src/lib/rejour.ts:25](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L25) ##### `data?` @@ -30123,7 +30123,7 @@ Information from the ecosystem. Inherited from: UnistParent.data -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `position?` @@ -30134,7 +30134,7 @@ Must not be present if a node is generated. Inherited from: UnistParent.position -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -30144,9 +30144,9 @@ The variant of a node. Inherited from: UnistParent.type -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:22 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:22 -*** +--- ### `PartTitle` @@ -30154,7 +30154,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PartTitle** +- [`Node`](modules.md#node).**PartTitle** #### Properties @@ -30171,18 +30171,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7350) +Defined in: [libs/jast/jast/src/lib/jats.ts:7350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7350) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PartTitleChildrenMap`](modules.md#parttitlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7355) +Defined in: [libs/jast/jast/src/lib/jats.ts:7355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7355) ##### `data?` @@ -30192,13 +30192,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"partTitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7349) +Defined in: [libs/jast/jast/src/lib/jats.ts:7349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7349) ##### `position?` @@ -30209,7 +30209,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -30219,9 +30219,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7348) +Defined in: [libs/jast/jast/src/lib/jats.ts:7348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7348) -*** +--- ### `PartTitleChildrenMap` @@ -30231,177 +30231,177 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7348](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7359) +Defined in: [libs/jast/jast/src/lib/jats.ts:7359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7359) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7361](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7361) +Defined in: [libs/jast/jast/src/lib/jats.ts:7361](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7361) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7363) +Defined in: [libs/jast/jast/src/lib/jats.ts:7363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7363) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7365](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7365) +Defined in: [libs/jast/jast/src/lib/jats.ts:7365](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7365) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7367) +Defined in: [libs/jast/jast/src/lib/jats.ts:7367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7367) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7369) +Defined in: [libs/jast/jast/src/lib/jats.ts:7369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7369) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7371) +Defined in: [libs/jast/jast/src/lib/jats.ts:7371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7371) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7373) +Defined in: [libs/jast/jast/src/lib/jats.ts:7373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7373) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7375) +Defined in: [libs/jast/jast/src/lib/jats.ts:7375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7375) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7377](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7377) +Defined in: [libs/jast/jast/src/lib/jats.ts:7377](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7377) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7379](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7379) +Defined in: [libs/jast/jast/src/lib/jats.ts:7379](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7379) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7381](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7381) +Defined in: [libs/jast/jast/src/lib/jats.ts:7381](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7381) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7383) +Defined in: [libs/jast/jast/src/lib/jats.ts:7383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7383) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7385) +Defined in: [libs/jast/jast/src/lib/jats.ts:7385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7385) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7387) +Defined in: [libs/jast/jast/src/lib/jats.ts:7387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7387) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7389) +Defined in: [libs/jast/jast/src/lib/jats.ts:7389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7389) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7391) +Defined in: [libs/jast/jast/src/lib/jats.ts:7391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7391) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7393) +Defined in: [libs/jast/jast/src/lib/jats.ts:7393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7393) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7395) +Defined in: [libs/jast/jast/src/lib/jats.ts:7395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7395) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7397) +Defined in: [libs/jast/jast/src/lib/jats.ts:7397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7397) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7399) +Defined in: [libs/jast/jast/src/lib/jats.ts:7399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7399) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7401) +Defined in: [libs/jast/jast/src/lib/jats.ts:7401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7401) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7403) +Defined in: [libs/jast/jast/src/lib/jats.ts:7403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7403) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7405) +Defined in: [libs/jast/jast/src/lib/jats.ts:7405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7405) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7407) +Defined in: [libs/jast/jast/src/lib/jats.ts:7407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7407) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7409) +Defined in: [libs/jast/jast/src/lib/jats.ts:7409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7409) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7411) +Defined in: [libs/jast/jast/src/lib/jats.ts:7411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7411) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7413) +Defined in: [libs/jast/jast/src/lib/jats.ts:7413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7413) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7415) +Defined in: [libs/jast/jast/src/lib/jats.ts:7415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7415) -*** +--- ### `Patent` @@ -30409,7 +30409,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Patent** +- [`Node`](modules.md#node).**Patent** #### Properties @@ -30427,19 +30427,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `country`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `country`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7421) +Defined in: [libs/jast/jast/src/lib/jats.ts:7421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7421) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7427) +Defined in: [libs/jast/jast/src/lib/jats.ts:7427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7427) ##### `data?` @@ -30449,13 +30449,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"patent"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7420) +Defined in: [libs/jast/jast/src/lib/jats.ts:7420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7420) ##### `position?` @@ -30466,7 +30466,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -30476,9 +30476,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7419](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7419) +Defined in: [libs/jast/jast/src/lib/jats.ts:7419](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7419) -*** +--- ### `PatentChildrenMap` @@ -30488,9 +30488,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7419](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:7431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7431) +Defined in: [libs/jast/jast/src/lib/jats.ts:7431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7431) -*** +--- ### `Permissions` @@ -30498,7 +30498,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Permissions** +- [`Node`](modules.md#node).**Permissions** #### Properties @@ -30514,17 +30514,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7437) +Defined in: [libs/jast/jast/src/lib/jats.ts:7437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7437) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PermissionsChildrenMap`](modules.md#permissionschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7441) +Defined in: [libs/jast/jast/src/lib/jats.ts:7441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7441) ##### `data?` @@ -30534,13 +30534,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"permissions"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7436) +Defined in: [libs/jast/jast/src/lib/jats.ts:7436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7436) ##### `position?` @@ -30551,7 +30551,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -30561,9 +30561,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7435) +Defined in: [libs/jast/jast/src/lib/jats.ts:7435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7435) -*** +--- ### `PermissionsChildrenMap` @@ -30573,27 +30573,27 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7435](https://github.com/TrialAndEr > [`CopyrightHolder`](modules.md#copyrightholder)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7445) +Defined in: [libs/jast/jast/src/lib/jats.ts:7445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7445) ##### `copyrightStatement?` > [`CopyrightStatement`](modules.md#copyrightstatement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7447) +Defined in: [libs/jast/jast/src/lib/jats.ts:7447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7447) ##### `copyrightYear?` > [`CopyrightYear`](modules.md#copyrightyear)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7449) +Defined in: [libs/jast/jast/src/lib/jats.ts:7449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7449) ##### `license?` > [`License`](modules.md#license)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7451) +Defined in: [libs/jast/jast/src/lib/jats.ts:7451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7451) -*** +--- ### `PersonGroup` @@ -30601,7 +30601,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PersonGroup** +- [`Node`](modules.md#node).**PersonGroup** #### Properties @@ -30619,19 +30619,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----------------- | :------------------------------- | +| `id`? | `string` | | `personGroupType`? | `PersonGroupTypePersonGrouptype` | -| `specificUse`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7457](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7457) +Defined in: [libs/jast/jast/src/lib/jats.ts:7457](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7457) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PersonGroupChildrenMap`](modules.md#persongroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7463) +Defined in: [libs/jast/jast/src/lib/jats.ts:7463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7463) ##### `data?` @@ -30641,13 +30641,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"personGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7456) +Defined in: [libs/jast/jast/src/lib/jats.ts:7456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7456) ##### `position?` @@ -30658,7 +30658,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -30668,9 +30668,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7455](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7455) +Defined in: [libs/jast/jast/src/lib/jats.ts:7455](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7455) -*** +--- ### `PersonGroupChildrenMap` @@ -30680,69 +30680,69 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7455](https://github.com/TrialAndEr > [`Aff`](modules.md#aff)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7468) +Defined in: [libs/jast/jast/src/lib/jats.ts:7468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7468) ##### `affAlternatives?` > [`AffAlternatives`](modules.md#affalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7470) +Defined in: [libs/jast/jast/src/lib/jats.ts:7470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7470) ##### `anonymous?` > [`Anonymous`](modules.md#anonymous)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7472) +Defined in: [libs/jast/jast/src/lib/jats.ts:7472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7472) ##### `collab?` > [`Collab`](modules.md#collab)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7474) +Defined in: [libs/jast/jast/src/lib/jats.ts:7474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7474) ##### `collabAlternatives?` > [`CollabAlternatives`](modules.md#collabalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7476) +Defined in: [libs/jast/jast/src/lib/jats.ts:7476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7476) ##### `customType?` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7467) +Defined in: [libs/jast/jast/src/lib/jats.ts:7467](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7467) ##### `etal?` > [`Etal`](modules.md#etal)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7478) +Defined in: [libs/jast/jast/src/lib/jats.ts:7478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7478) ##### `name?` > [`Name`](modules.md#name)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7480) +Defined in: [libs/jast/jast/src/lib/jats.ts:7480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7480) ##### `nameAlternatives?` > [`NameAlternatives`](modules.md#namealternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7482) +Defined in: [libs/jast/jast/src/lib/jats.ts:7482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7482) ##### `role?` > [`Role`](modules.md#role)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7484) +Defined in: [libs/jast/jast/src/lib/jats.ts:7484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7484) ##### `stringName?` > [`StringName`](modules.md#stringname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7486) +Defined in: [libs/jast/jast/src/lib/jats.ts:7486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7486) -*** +--- ### `Phone` @@ -30750,7 +30750,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Phone** +- [`Node`](modules.md#node).**Phone** #### Properties @@ -30767,18 +30767,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7508) +Defined in: [libs/jast/jast/src/lib/jats.ts:7508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7508) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7513) +Defined in: [libs/jast/jast/src/lib/jats.ts:7513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7513) ##### `data?` @@ -30788,13 +30788,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"phone"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7507) +Defined in: [libs/jast/jast/src/lib/jats.ts:7507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7507) ##### `position?` @@ -30805,7 +30805,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -30815,9 +30815,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7506) +Defined in: [libs/jast/jast/src/lib/jats.ts:7506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7506) -*** +--- ### `PhoneChildrenMap` @@ -30827,9 +30827,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7506](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:7517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7517) +Defined in: [libs/jast/jast/src/lib/jats.ts:7517](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7517) -*** +--- ### `PostalCode` @@ -30837,7 +30837,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PostalCode** +- [`Node`](modules.md#node).**PostalCode** #### Properties @@ -30854,18 +30854,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7523](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7523) +Defined in: [libs/jast/jast/src/lib/jats.ts:7523](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7523) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7528) +Defined in: [libs/jast/jast/src/lib/jats.ts:7528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7528) ##### `data?` @@ -30875,13 +30875,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"postalCode"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7522) +Defined in: [libs/jast/jast/src/lib/jats.ts:7522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7522) ##### `position?` @@ -30892,7 +30892,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -30902,9 +30902,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7521) +Defined in: [libs/jast/jast/src/lib/jats.ts:7521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7521) -*** +--- ### `PostalCodeChildrenMap` @@ -30914,9 +30914,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7521](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:7532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7532) +Defined in: [libs/jast/jast/src/lib/jats.ts:7532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7532) -*** +--- ### `Prefix` @@ -30924,7 +30924,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Prefix** +- [`Node`](modules.md#node).**Prefix** #### Properties @@ -30941,18 +30941,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7538) +Defined in: [libs/jast/jast/src/lib/jats.ts:7538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7538) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7543) +Defined in: [libs/jast/jast/src/lib/jats.ts:7543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7543) ##### `data?` @@ -30962,13 +30962,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"prefix"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7537](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7537) +Defined in: [libs/jast/jast/src/lib/jats.ts:7537](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7537) ##### `position?` @@ -30979,7 +30979,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -30989,9 +30989,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7536) +Defined in: [libs/jast/jast/src/lib/jats.ts:7536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7536) -*** +--- ### `PrefixChildrenMap` @@ -31001,9 +31001,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7536](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:7547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7547) +Defined in: [libs/jast/jast/src/lib/jats.ts:7547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7547) -*** +--- ### `Preformat` @@ -31011,7 +31011,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Preformat** +- [`Node`](modules.md#node).**Preformat** #### Properties @@ -31031,21 +31031,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `orientation`? | `PreformatTypeOrientation` | -| `position`? | `PreformatTypePosition` | -| `preformatType`? | `string` | -| `specificUse`? | `string` | +| Member | Type | +| :--------------- | :------------------------- | +| `id`? | `string` | +| `orientation`? | `PreformatTypeOrientation` | +| `position`? | `PreformatTypePosition` | +| `preformatType`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7553) +Defined in: [libs/jast/jast/src/lib/jats.ts:7553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7553) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PreformatChildrenMap`](modules.md#preformatchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7561) +Defined in: [libs/jast/jast/src/lib/jats.ts:7561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7561) ##### `data?` @@ -31055,13 +31055,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"preformat"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7552) +Defined in: [libs/jast/jast/src/lib/jats.ts:7552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7552) ##### `position?` @@ -31072,7 +31072,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -31082,9 +31082,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7551) +Defined in: [libs/jast/jast/src/lib/jats.ts:7551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7551) -*** +--- ### `PreformatChildrenMap` @@ -31094,165 +31094,165 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7551](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7565) +Defined in: [libs/jast/jast/src/lib/jats.ts:7565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7565) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7567) +Defined in: [libs/jast/jast/src/lib/jats.ts:7567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7567) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7569) +Defined in: [libs/jast/jast/src/lib/jats.ts:7569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7569) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7571) +Defined in: [libs/jast/jast/src/lib/jats.ts:7571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7571) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7573) +Defined in: [libs/jast/jast/src/lib/jats.ts:7573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7573) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7575) +Defined in: [libs/jast/jast/src/lib/jats.ts:7575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7575) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7577) +Defined in: [libs/jast/jast/src/lib/jats.ts:7577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7577) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7579) +Defined in: [libs/jast/jast/src/lib/jats.ts:7579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7579) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7581) +Defined in: [libs/jast/jast/src/lib/jats.ts:7581](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7581) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7583) +Defined in: [libs/jast/jast/src/lib/jats.ts:7583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7583) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7585) +Defined in: [libs/jast/jast/src/lib/jats.ts:7585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7585) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7587](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7587) +Defined in: [libs/jast/jast/src/lib/jats.ts:7587](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7587) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7589) +Defined in: [libs/jast/jast/src/lib/jats.ts:7589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7589) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7591) +Defined in: [libs/jast/jast/src/lib/jats.ts:7591](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7591) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7593) +Defined in: [libs/jast/jast/src/lib/jats.ts:7593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7593) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7595) +Defined in: [libs/jast/jast/src/lib/jats.ts:7595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7595) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7597) +Defined in: [libs/jast/jast/src/lib/jats.ts:7597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7597) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7599](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7599) +Defined in: [libs/jast/jast/src/lib/jats.ts:7599](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7599) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7601) +Defined in: [libs/jast/jast/src/lib/jats.ts:7601](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7601) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7603) +Defined in: [libs/jast/jast/src/lib/jats.ts:7603](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7603) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7605) +Defined in: [libs/jast/jast/src/lib/jats.ts:7605](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7605) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7607](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7607) +Defined in: [libs/jast/jast/src/lib/jats.ts:7607](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7607) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7609) +Defined in: [libs/jast/jast/src/lib/jats.ts:7609](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7609) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7611) +Defined in: [libs/jast/jast/src/lib/jats.ts:7611](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7611) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7613) +Defined in: [libs/jast/jast/src/lib/jats.ts:7613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7613) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7615) +Defined in: [libs/jast/jast/src/lib/jats.ts:7615](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7615) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7617) +Defined in: [libs/jast/jast/src/lib/jats.ts:7617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7617) -*** +--- ### `Price` @@ -31260,7 +31260,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Price** +- [`Node`](modules.md#node).**Price** #### Properties @@ -31278,19 +31278,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `currency`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `currency`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7627](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7627) +Defined in: [libs/jast/jast/src/lib/jats.ts:7627](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7627) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PriceChildrenMap`](modules.md#pricechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7633](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7633) +Defined in: [libs/jast/jast/src/lib/jats.ts:7633](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7633) ##### `data?` @@ -31300,13 +31300,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"price"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7626) +Defined in: [libs/jast/jast/src/lib/jats.ts:7626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7626) ##### `position?` @@ -31317,7 +31317,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -31327,9 +31327,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7625) +Defined in: [libs/jast/jast/src/lib/jats.ts:7625](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7625) -*** +--- ### `PriceChildrenMap` @@ -31339,75 +31339,75 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7625](https://github.com/TrialAndEr > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7639](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7639) +Defined in: [libs/jast/jast/src/lib/jats.ts:7639](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7639) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7641) +Defined in: [libs/jast/jast/src/lib/jats.ts:7641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7641) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7643](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7643) +Defined in: [libs/jast/jast/src/lib/jats.ts:7643](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7643) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7645](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7645) +Defined in: [libs/jast/jast/src/lib/jats.ts:7645](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7645) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7647](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7647) +Defined in: [libs/jast/jast/src/lib/jats.ts:7647](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7647) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7649](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7649) +Defined in: [libs/jast/jast/src/lib/jats.ts:7649](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7649) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7651](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7651) +Defined in: [libs/jast/jast/src/lib/jats.ts:7651](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7651) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7653](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7653) +Defined in: [libs/jast/jast/src/lib/jats.ts:7653](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7653) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7655) +Defined in: [libs/jast/jast/src/lib/jats.ts:7655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7655) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7657) +Defined in: [libs/jast/jast/src/lib/jats.ts:7657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7657) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:7637](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7637) +Defined in: [libs/jast/jast/src/lib/jats.ts:7637](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7637) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7659](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7659) +Defined in: [libs/jast/jast/src/lib/jats.ts:7659](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7659) -*** +--- ### `PrincipalAwardrecipient` @@ -31415,7 +31415,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PrincipalAwardrecipient** +- [`Node`](modules.md#node).**PrincipalAwardrecipient** #### Properties @@ -31432,18 +31432,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7665](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7665) +Defined in: [libs/jast/jast/src/lib/jats.ts:7665](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7665) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PrincipalAwardrecipientChildrenMap`](modules.md#principalawardrecipientchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7670) +Defined in: [libs/jast/jast/src/lib/jats.ts:7670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7670) ##### `data?` @@ -31453,13 +31453,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"principalAwardrecipient"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7664) +Defined in: [libs/jast/jast/src/lib/jats.ts:7664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7664) ##### `position?` @@ -31470,7 +31470,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -31480,9 +31480,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7663](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7663) +Defined in: [libs/jast/jast/src/lib/jats.ts:7663](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7663) -*** +--- ### `PrincipalAwardrecipientChildrenMap` @@ -31492,39 +31492,39 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7663](https://github.com/TrialAndEr > [`ContribId`](modules.md#contribid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7674) +Defined in: [libs/jast/jast/src/lib/jats.ts:7674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7674) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7676) +Defined in: [libs/jast/jast/src/lib/jats.ts:7676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7676) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7678) +Defined in: [libs/jast/jast/src/lib/jats.ts:7678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7678) ##### `name?` > [`Name`](modules.md#name)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7680) +Defined in: [libs/jast/jast/src/lib/jats.ts:7680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7680) ##### `nameAlternatives?` > [`NameAlternatives`](modules.md#namealternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7682) +Defined in: [libs/jast/jast/src/lib/jats.ts:7682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7682) ##### `stringName?` > [`StringName`](modules.md#stringname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7684) +Defined in: [libs/jast/jast/src/lib/jats.ts:7684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7684) -*** +--- ### `PrincipalInvestigator` @@ -31532,7 +31532,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PrincipalInvestigator** +- [`Node`](modules.md#node).**PrincipalInvestigator** #### Properties @@ -31549,18 +31549,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7690) +Defined in: [libs/jast/jast/src/lib/jats.ts:7690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7690) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PrincipalInvestigatorChildrenMap`](modules.md#principalinvestigatorchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7695](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7695) +Defined in: [libs/jast/jast/src/lib/jats.ts:7695](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7695) ##### `data?` @@ -31570,13 +31570,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"principalInvestigator"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7689](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7689) +Defined in: [libs/jast/jast/src/lib/jats.ts:7689](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7689) ##### `position?` @@ -31587,7 +31587,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -31597,9 +31597,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7688) +Defined in: [libs/jast/jast/src/lib/jats.ts:7688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7688) -*** +--- ### `PrincipalInvestigatorChildrenMap` @@ -31609,27 +31609,27 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7688](https://github.com/TrialAndEr > [`ContribId`](modules.md#contribid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7699](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7699) +Defined in: [libs/jast/jast/src/lib/jats.ts:7699](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7699) ##### `name?` > [`Name`](modules.md#name)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7701](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7701) +Defined in: [libs/jast/jast/src/lib/jats.ts:7701](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7701) ##### `nameAlternatives?` > [`NameAlternatives`](modules.md#namealternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7703](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7703) +Defined in: [libs/jast/jast/src/lib/jats.ts:7703](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7703) ##### `stringName?` > [`StringName`](modules.md#stringname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7705](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7705) +Defined in: [libs/jast/jast/src/lib/jats.ts:7705](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7705) -*** +--- ### `PrivateChar` @@ -31637,7 +31637,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PrivateChar** +- [`Node`](modules.md#node).**PrivateChar** #### Properties @@ -31656,20 +31656,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------------- | :------- | | `description`? | `string` | -| `id`? | `string` | -| `name`? | `string` | +| `id`? | `string` | +| `name`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7711](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7711) +Defined in: [libs/jast/jast/src/lib/jats.ts:7711](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7711) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PrivateCharChildrenMap`](modules.md#privatecharchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7718) +Defined in: [libs/jast/jast/src/lib/jats.ts:7718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7718) ##### `data?` @@ -31679,13 +31679,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"privateChar"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7710) +Defined in: [libs/jast/jast/src/lib/jats.ts:7710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7710) ##### `position?` @@ -31696,7 +31696,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -31706,9 +31706,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7709](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7709) +Defined in: [libs/jast/jast/src/lib/jats.ts:7709](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7709) -*** +--- ### `PrivateCharChildrenMap` @@ -31718,21 +31718,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7709](https://github.com/TrialAndEr > [`GlyphData`](modules.md#glyphdata) -Defined in: [libs/jast/jast/src/lib/jats.ts:7722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7722) +Defined in: [libs/jast/jast/src/lib/jats.ts:7722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7722) ##### `glyphRef` > [`GlyphRef`](modules.md#glyphref) -Defined in: [libs/jast/jast/src/lib/jats.ts:7724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7724) +Defined in: [libs/jast/jast/src/lib/jats.ts:7724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7724) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7726) +Defined in: [libs/jast/jast/src/lib/jats.ts:7726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7726) -*** +--- ### `ProcessingMeta` @@ -31740,7 +31740,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ProcessingMeta** +- [`Node`](modules.md#node).**ProcessingMeta** #### Properties @@ -31761,22 +31761,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `BaseTagSet`? | `ProcessingMetaTypeUnistNodeTagset` | -| `id`? | `string` | -| `mathRepresentation`? | `string` | -| `mathmlVersion`? | `ProcessingMetaTypeMathmlVersion` | -| `tableModel`? | `ProcessingMetaTypeTableModel` | -| `tagsetFamily`? | `ProcessingMetaTypeTagsetFamily` | +| Member | Type | +| :-------------------- | :---------------------------------- | +| `BaseTagSet`? | `ProcessingMetaTypeUnistNodeTagset` | +| `id`? | `string` | +| `mathRepresentation`? | `string` | +| `mathmlVersion`? | `ProcessingMetaTypeMathmlVersion` | +| `tableModel`? | `ProcessingMetaTypeTableModel` | +| `tagsetFamily`? | `ProcessingMetaTypeTagsetFamily` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7732) +Defined in: [libs/jast/jast/src/lib/jats.ts:7732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7732) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ProcessingMetaChildrenMap`](modules.md#processingmetachildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7741](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7741) +Defined in: [libs/jast/jast/src/lib/jats.ts:7741](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7741) ##### `data?` @@ -31786,13 +31786,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"processingMeta"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7731](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7731) +Defined in: [libs/jast/jast/src/lib/jats.ts:7731](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7731) ##### `position?` @@ -31803,7 +31803,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -31813,9 +31813,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7730) +Defined in: [libs/jast/jast/src/lib/jats.ts:7730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7730) -*** +--- ### `ProcessingMetaChildrenMap` @@ -31825,21 +31825,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7730](https://github.com/TrialAndEr > [`CustomMetagroup`](modules.md#custommetagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7745) +Defined in: [libs/jast/jast/src/lib/jats.ts:7745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7745) ##### `extendedBy?` > [`ExtendedBy`](modules.md#extendedby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7747) +Defined in: [libs/jast/jast/src/lib/jats.ts:7747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7747) ##### `restrictedBy?` > [`RestrictedBy`](modules.md#restrictedby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7749) +Defined in: [libs/jast/jast/src/lib/jats.ts:7749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7749) -*** +--- ### `Product` @@ -31847,7 +31847,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Product** +- [`Node`](modules.md#node).**Product** #### Properties @@ -31866,20 +31866,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `productType`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:7763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7763) +Defined in: [libs/jast/jast/src/lib/jats.ts:7763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7763) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ProductChildrenMap`](modules.md#productchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7770) +Defined in: [libs/jast/jast/src/lib/jats.ts:7770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7770) ##### `data?` @@ -31889,13 +31889,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"product"` -Defined in: [libs/jast/jast/src/lib/jats.ts:7762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7762) +Defined in: [libs/jast/jast/src/lib/jats.ts:7762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7762) ##### `position?` @@ -31906,7 +31906,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -31916,9 +31916,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:7761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7761) +Defined in: [libs/jast/jast/src/lib/jats.ts:7761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7761) -*** +--- ### `ProductChildrenMap` @@ -31928,567 +31928,567 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:7761](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7774) +Defined in: [libs/jast/jast/src/lib/jats.ts:7774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7774) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7776) +Defined in: [libs/jast/jast/src/lib/jats.ts:7776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7776) ##### `annotation?` > [`Annotation`](modules.md#annotation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7778) +Defined in: [libs/jast/jast/src/lib/jats.ts:7778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7778) ##### `articleTitle?` > [`ArticleTitle`](modules.md#articletitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7780) +Defined in: [libs/jast/jast/src/lib/jats.ts:7780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7780) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7782) +Defined in: [libs/jast/jast/src/lib/jats.ts:7782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7782) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7784) +Defined in: [libs/jast/jast/src/lib/jats.ts:7784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7784) ##### `chapterTitle?` > [`ChapterTitle`](modules.md#chaptertitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7786) +Defined in: [libs/jast/jast/src/lib/jats.ts:7786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7786) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7788) +Defined in: [libs/jast/jast/src/lib/jats.ts:7788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7788) ##### `collab?` > [`Collab`](modules.md#collab)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7790) +Defined in: [libs/jast/jast/src/lib/jats.ts:7790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7790) ##### `collabAlternatives?` > [`CollabAlternatives`](modules.md#collabalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7792) +Defined in: [libs/jast/jast/src/lib/jats.ts:7792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7792) ##### `comment?` > [`Comment`](modules.md#comment)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7794) +Defined in: [libs/jast/jast/src/lib/jats.ts:7794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7794) ##### `confAcronym?` > [`ConfAcronym`](modules.md#confacronym)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7796) +Defined in: [libs/jast/jast/src/lib/jats.ts:7796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7796) ##### `confDate?` > [`ConfDate`](modules.md#confdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7798) +Defined in: [libs/jast/jast/src/lib/jats.ts:7798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7798) ##### `confLoc?` > [`ConfLoc`](modules.md#confloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7800) +Defined in: [libs/jast/jast/src/lib/jats.ts:7800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7800) ##### `confName?` > [`ConfName`](modules.md#confname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7802) +Defined in: [libs/jast/jast/src/lib/jats.ts:7802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7802) ##### `confSponsor?` > [`ConfSponsor`](modules.md#confsponsor)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7804) +Defined in: [libs/jast/jast/src/lib/jats.ts:7804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7804) ##### `dataTitle?` > [`DataTitle`](modules.md#datatitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7806) +Defined in: [libs/jast/jast/src/lib/jats.ts:7806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7806) ##### `date?` > [`Date`](modules.md#date)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7808) +Defined in: [libs/jast/jast/src/lib/jats.ts:7808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7808) ##### `dateIncitation?` > [`DateIncitation`](modules.md#dateincitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7810) +Defined in: [libs/jast/jast/src/lib/jats.ts:7810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7810) ##### `day?` > [`Day`](modules.md#day)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7812) +Defined in: [libs/jast/jast/src/lib/jats.ts:7812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7812) ##### `edition?` > [`Edition`](modules.md#edition)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7814) +Defined in: [libs/jast/jast/src/lib/jats.ts:7814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7814) ##### `elocationId?` > [`ElocationId`](modules.md#elocationid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7816) +Defined in: [libs/jast/jast/src/lib/jats.ts:7816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7816) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7818) +Defined in: [libs/jast/jast/src/lib/jats.ts:7818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7818) ##### `etal?` > [`Etal`](modules.md#etal)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7820) +Defined in: [libs/jast/jast/src/lib/jats.ts:7820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7820) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7822) +Defined in: [libs/jast/jast/src/lib/jats.ts:7822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7822) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7824) +Defined in: [libs/jast/jast/src/lib/jats.ts:7824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7824) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7826) +Defined in: [libs/jast/jast/src/lib/jats.ts:7826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7826) ##### `fpage?` > [`Fpage`](modules.md#fpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7828) +Defined in: [libs/jast/jast/src/lib/jats.ts:7828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7828) ##### `gov?` > [`Gov`](modules.md#gov)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7830) +Defined in: [libs/jast/jast/src/lib/jats.ts:7830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7830) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7832) +Defined in: [libs/jast/jast/src/lib/jats.ts:7832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7832) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7834) +Defined in: [libs/jast/jast/src/lib/jats.ts:7834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7834) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7836) +Defined in: [libs/jast/jast/src/lib/jats.ts:7836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7836) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7838) +Defined in: [libs/jast/jast/src/lib/jats.ts:7838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7838) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7840) +Defined in: [libs/jast/jast/src/lib/jats.ts:7840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7840) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7842) +Defined in: [libs/jast/jast/src/lib/jats.ts:7842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7842) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7844) +Defined in: [libs/jast/jast/src/lib/jats.ts:7844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7844) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7846) +Defined in: [libs/jast/jast/src/lib/jats.ts:7846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7846) ##### `isbn?` > [`Isbn`](modules.md#isbn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7848) +Defined in: [libs/jast/jast/src/lib/jats.ts:7848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7848) ##### `issn?` > [`Issn`](modules.md#issn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7850) +Defined in: [libs/jast/jast/src/lib/jats.ts:7850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7850) ##### `issnL?` > [`IssnL`](modules.md#issnl)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7852) +Defined in: [libs/jast/jast/src/lib/jats.ts:7852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7852) ##### `issue?` > [`Issue`](modules.md#issue)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7854) +Defined in: [libs/jast/jast/src/lib/jats.ts:7854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7854) ##### `issueId?` > [`IssueId`](modules.md#issueid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7856) +Defined in: [libs/jast/jast/src/lib/jats.ts:7856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7856) ##### `issuePart?` > [`IssuePart`](modules.md#issuepart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7858) +Defined in: [libs/jast/jast/src/lib/jats.ts:7858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7858) ##### `issueTitle?` > [`IssueTitle`](modules.md#issuetitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7860) +Defined in: [libs/jast/jast/src/lib/jats.ts:7860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7860) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7862) +Defined in: [libs/jast/jast/src/lib/jats.ts:7862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7862) ##### `lpage?` > [`Lpage`](modules.md#lpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7864) +Defined in: [libs/jast/jast/src/lib/jats.ts:7864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7864) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7866) +Defined in: [libs/jast/jast/src/lib/jats.ts:7866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7866) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7868) +Defined in: [libs/jast/jast/src/lib/jats.ts:7868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7868) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7870) +Defined in: [libs/jast/jast/src/lib/jats.ts:7870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7870) ##### `month?` > [`Month`](modules.md#month)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7872) +Defined in: [libs/jast/jast/src/lib/jats.ts:7872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7872) ##### `name?` > [`Name`](modules.md#name)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7874) +Defined in: [libs/jast/jast/src/lib/jats.ts:7874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7874) ##### `nameAlternatives?` > [`NameAlternatives`](modules.md#namealternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7876) +Defined in: [libs/jast/jast/src/lib/jats.ts:7876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7876) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7878) +Defined in: [libs/jast/jast/src/lib/jats.ts:7878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7878) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7880) +Defined in: [libs/jast/jast/src/lib/jats.ts:7880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7880) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7882) +Defined in: [libs/jast/jast/src/lib/jats.ts:7882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7882) ##### `pageRange?` > [`PageRange`](modules.md#pagerange)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7884) +Defined in: [libs/jast/jast/src/lib/jats.ts:7884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7884) ##### `partTitle?` > [`PartTitle`](modules.md#parttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7886) +Defined in: [libs/jast/jast/src/lib/jats.ts:7886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7886) ##### `patent?` > [`Patent`](modules.md#patent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7888) +Defined in: [libs/jast/jast/src/lib/jats.ts:7888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7888) ##### `personGroup?` > [`PersonGroup`](modules.md#persongroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7890) +Defined in: [libs/jast/jast/src/lib/jats.ts:7890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7890) ##### `price?` > [`Price`](modules.md#price)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7892) +Defined in: [libs/jast/jast/src/lib/jats.ts:7892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7892) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7894) +Defined in: [libs/jast/jast/src/lib/jats.ts:7894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7894) ##### `pubId?` > [`PubId`](modules.md#pubid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7896) +Defined in: [libs/jast/jast/src/lib/jats.ts:7896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7896) ##### `publisherLoc?` > [`PublisherLoc`](modules.md#publisherloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7898) +Defined in: [libs/jast/jast/src/lib/jats.ts:7898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7898) ##### `publisherName?` > [`PublisherName`](modules.md#publishername)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7900) +Defined in: [libs/jast/jast/src/lib/jats.ts:7900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7900) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7902) +Defined in: [libs/jast/jast/src/lib/jats.ts:7902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7902) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7904) +Defined in: [libs/jast/jast/src/lib/jats.ts:7904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7904) ##### `role?` > [`Role`](modules.md#role)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7906) +Defined in: [libs/jast/jast/src/lib/jats.ts:7906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7906) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7908) +Defined in: [libs/jast/jast/src/lib/jats.ts:7908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7908) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7910) +Defined in: [libs/jast/jast/src/lib/jats.ts:7910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7910) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7912) +Defined in: [libs/jast/jast/src/lib/jats.ts:7912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7912) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7914) +Defined in: [libs/jast/jast/src/lib/jats.ts:7914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7914) ##### `season?` > [`Season`](modules.md#season)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7916) +Defined in: [libs/jast/jast/src/lib/jats.ts:7916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7916) ##### `series?` > [`Series`](modules.md#series)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7918) +Defined in: [libs/jast/jast/src/lib/jats.ts:7918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7918) ##### `size?` > [`Size`](modules.md#size)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7920) +Defined in: [libs/jast/jast/src/lib/jats.ts:7920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7920) ##### `source?` > [`Source`](modules.md#source)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7922) +Defined in: [libs/jast/jast/src/lib/jats.ts:7922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7922) ##### `std?` > [`Std`](modules.md#std)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7924) +Defined in: [libs/jast/jast/src/lib/jats.ts:7924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7924) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7926) +Defined in: [libs/jast/jast/src/lib/jats.ts:7926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7926) ##### `stringDate?` > [`StringDate`](modules.md#stringdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7928) +Defined in: [libs/jast/jast/src/lib/jats.ts:7928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7928) ##### `stringName?` > [`StringName`](modules.md#stringname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7930) +Defined in: [libs/jast/jast/src/lib/jats.ts:7930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7930) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7932) +Defined in: [libs/jast/jast/src/lib/jats.ts:7932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7932) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7934) +Defined in: [libs/jast/jast/src/lib/jats.ts:7934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7934) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7936) +Defined in: [libs/jast/jast/src/lib/jats.ts:7936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7936) ##### `supplement?` > [`Supplement`](modules.md#supplement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7938](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7938) +Defined in: [libs/jast/jast/src/lib/jats.ts:7938](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7938) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7940) +Defined in: [libs/jast/jast/src/lib/jats.ts:7940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7940) ##### `transSource?` > [`TransSource`](modules.md#transsource)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7942) +Defined in: [libs/jast/jast/src/lib/jats.ts:7942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7942) ##### `transTitle?` > [`TransTitle`](modules.md#transtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7944) +Defined in: [libs/jast/jast/src/lib/jats.ts:7944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7944) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7946) +Defined in: [libs/jast/jast/src/lib/jats.ts:7946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7946) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7948](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7948) +Defined in: [libs/jast/jast/src/lib/jats.ts:7948](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7948) ##### `version?` > [`Version`](modules.md#version)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7950) +Defined in: [libs/jast/jast/src/lib/jats.ts:7950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7950) ##### `volume?` > [`Volume`](modules.md#volume)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7952](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7952) +Defined in: [libs/jast/jast/src/lib/jats.ts:7952](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7952) ##### `volumeId?` > [`VolumeId`](modules.md#volumeid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7954](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7954) +Defined in: [libs/jast/jast/src/lib/jats.ts:7954](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7954) ##### `volumeSeries?` > [`VolumeSeries`](modules.md#volumeseries)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7956](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7956) +Defined in: [libs/jast/jast/src/lib/jats.ts:7956](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7956) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7958](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7958) +Defined in: [libs/jast/jast/src/lib/jats.ts:7958](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7958) ##### `year?` > [`Year`](modules.md#year)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:7960](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7960) +Defined in: [libs/jast/jast/src/lib/jats.ts:7960](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L7960) -*** +--- ### `PubDate` @@ -32496,7 +32496,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PubDate** +- [`Node`](modules.md#node).**PubDate** #### Properties @@ -32518,23 +32518,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `calendar`? | `string` | -| `dateType`? | `string` | -| `id`? | `string` | -| `iso8601Date`? | `string` | -| `pubType`? | `string` | -| `publicationFormat`? | `string` | +| `calendar`? | `string` | +| `dateType`? | `string` | +| `id`? | `string` | +| `iso8601Date`? | `string` | +| `pubType`? | `string` | +| `publicationFormat`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8133) +Defined in: [libs/jast/jast/src/lib/jats.ts:8133](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8133) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PubDateChildrenMap`](modules.md#pubdatechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8143) +Defined in: [libs/jast/jast/src/lib/jats.ts:8143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8143) ##### `data?` @@ -32544,13 +32544,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"pubDate"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8132) +Defined in: [libs/jast/jast/src/lib/jats.ts:8132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8132) ##### `position?` @@ -32561,7 +32561,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -32571,9 +32571,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8131) +Defined in: [libs/jast/jast/src/lib/jats.ts:8131](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8131) -*** +--- ### `PubDateChildrenMap` @@ -32583,33 +32583,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8131](https://github.com/TrialAndEr > [`Day`](modules.md#day) -Defined in: [libs/jast/jast/src/lib/jats.ts:8147](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8147) +Defined in: [libs/jast/jast/src/lib/jats.ts:8147](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8147) ##### `era?` > [`Era`](modules.md#era) -Defined in: [libs/jast/jast/src/lib/jats.ts:8149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8149) +Defined in: [libs/jast/jast/src/lib/jats.ts:8149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8149) ##### `month?` > [`Month`](modules.md#month) -Defined in: [libs/jast/jast/src/lib/jats.ts:8151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8151) +Defined in: [libs/jast/jast/src/lib/jats.ts:8151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8151) ##### `season?` > [`Season`](modules.md#season) -Defined in: [libs/jast/jast/src/lib/jats.ts:8153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8153) +Defined in: [libs/jast/jast/src/lib/jats.ts:8153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8153) ##### `year` > [`Year`](modules.md#year) -Defined in: [libs/jast/jast/src/lib/jats.ts:8155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8155) +Defined in: [libs/jast/jast/src/lib/jats.ts:8155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8155) -*** +--- ### `PubDatenotavailable` @@ -32617,7 +32617,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PubDatenotavailable** +- [`Node`](modules.md#node).**PubDatenotavailable** #### Properties @@ -32634,18 +32634,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8123](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8123) +Defined in: [libs/jast/jast/src/lib/jats.ts:8123](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8123) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:8127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8127) +Defined in: [libs/jast/jast/src/lib/jats.ts:8127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8127) ##### `data?` @@ -32655,13 +32655,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"pubDatenotavailable"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8122) +Defined in: [libs/jast/jast/src/lib/jats.ts:8122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8122) ##### `position?` @@ -32672,7 +32672,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -32682,9 +32682,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8121) +Defined in: [libs/jast/jast/src/lib/jats.ts:8121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8121) -*** +--- ### `PubHistory` @@ -32692,7 +32692,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PubHistory** +- [`Node`](modules.md#node).**PubHistory** #### Properties @@ -32708,17 +32708,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8161) +Defined in: [libs/jast/jast/src/lib/jats.ts:8161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8161) ##### `children` > [`Event`](modules.md#event)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8165](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8165) +Defined in: [libs/jast/jast/src/lib/jats.ts:8165](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8165) ##### `data?` @@ -32728,13 +32728,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"pubHistory"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8160) +Defined in: [libs/jast/jast/src/lib/jats.ts:8160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8160) ##### `position?` @@ -32745,7 +32745,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -32755,9 +32755,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8159](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8159) +Defined in: [libs/jast/jast/src/lib/jats.ts:8159](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8159) -*** +--- ### `PubHistoryChildrenMap` @@ -32767,9 +32767,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8159](https://github.com/TrialAndEr > [`Event`](modules.md#event)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8169](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8169) +Defined in: [libs/jast/jast/src/lib/jats.ts:8169](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8169) -*** +--- ### `PubId` @@ -32777,7 +32777,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PubId** +- [`Node`](modules.md#node).**PubId** #### Properties @@ -32797,21 +32797,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `pubIdType`? | `PubIdTypePubIdtype` | -| `specificUse`? | `string` | +| Member | Type | +| :-------------------- | :------------------- | +| `assigningAuthority`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `pubIdType`? | `PubIdTypePubIdtype` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8175](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8175) +Defined in: [libs/jast/jast/src/lib/jats.ts:8175](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8175) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8183) +Defined in: [libs/jast/jast/src/lib/jats.ts:8183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8183) ##### `data?` @@ -32821,13 +32821,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"pubId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8174) +Defined in: [libs/jast/jast/src/lib/jats.ts:8174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8174) ##### `position?` @@ -32838,7 +32838,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -32848,9 +32848,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8173](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8173) +Defined in: [libs/jast/jast/src/lib/jats.ts:8173](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8173) -*** +--- ### `PubIdChildrenMap` @@ -32860,9 +32860,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8173](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:8187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8187) +Defined in: [libs/jast/jast/src/lib/jats.ts:8187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8187) -*** +--- ### `Publisher` @@ -32870,7 +32870,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Publisher** +- [`Node`](modules.md#node).**Publisher** #### Properties @@ -32886,17 +32886,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8272) +Defined in: [libs/jast/jast/src/lib/jats.ts:8272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8272) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PublisherChildrenMap`](modules.md#publisherchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8276) +Defined in: [libs/jast/jast/src/lib/jats.ts:8276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8276) ##### `data?` @@ -32906,13 +32906,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"publisher"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8271) +Defined in: [libs/jast/jast/src/lib/jats.ts:8271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8271) ##### `position?` @@ -32923,7 +32923,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -32933,9 +32933,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8270](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8270) +Defined in: [libs/jast/jast/src/lib/jats.ts:8270](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8270) -*** +--- ### `PublisherChildrenMap` @@ -32945,21 +32945,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8270](https://github.com/TrialAndEr > [`PublisherLoc`](modules.md#publisherloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8282) +Defined in: [libs/jast/jast/src/lib/jats.ts:8282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8282) ##### `publisherName` > [`PublisherName`](modules.md#publishername)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8284](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8284) +Defined in: [libs/jast/jast/src/lib/jats.ts:8284](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8284) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:8280](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8280) +Defined in: [libs/jast/jast/src/lib/jats.ts:8280](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8280) -*** +--- ### `PublisherLoc` @@ -32967,7 +32967,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PublisherLoc** +- [`Node`](modules.md#node).**PublisherLoc** #### Properties @@ -32984,18 +32984,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8218) +Defined in: [libs/jast/jast/src/lib/jats.ts:8218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8218) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PublisherLocChildrenMap`](modules.md#publisherlocchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8223](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8223) +Defined in: [libs/jast/jast/src/lib/jats.ts:8223](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8223) ##### `data?` @@ -33005,13 +33005,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"publisherLoc"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8217](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8217) +Defined in: [libs/jast/jast/src/lib/jats.ts:8217](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8217) ##### `position?` @@ -33022,7 +33022,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -33032,9 +33032,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8216) +Defined in: [libs/jast/jast/src/lib/jats.ts:8216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8216) -*** +--- ### `PublisherLocChildrenMap` @@ -33044,75 +33044,75 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8216](https://github.com/TrialAndEr > [`AddrLine`](modules.md#addrline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8227) +Defined in: [libs/jast/jast/src/lib/jats.ts:8227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8227) ##### `city?` > [`City`](modules.md#city)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8229) +Defined in: [libs/jast/jast/src/lib/jats.ts:8229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8229) ##### `country?` > [`Country`](modules.md#country)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8231) +Defined in: [libs/jast/jast/src/lib/jats.ts:8231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8231) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8233) +Defined in: [libs/jast/jast/src/lib/jats.ts:8233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8233) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8235) +Defined in: [libs/jast/jast/src/lib/jats.ts:8235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8235) ##### `fax?` > [`Fax`](modules.md#fax)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8237) +Defined in: [libs/jast/jast/src/lib/jats.ts:8237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8237) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8239) +Defined in: [libs/jast/jast/src/lib/jats.ts:8239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8239) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8241) +Defined in: [libs/jast/jast/src/lib/jats.ts:8241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8241) ##### `phone?` > [`Phone`](modules.md#phone)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8243) +Defined in: [libs/jast/jast/src/lib/jats.ts:8243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8243) ##### `postalCode?` > [`PostalCode`](modules.md#postalcode)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8245) +Defined in: [libs/jast/jast/src/lib/jats.ts:8245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8245) ##### `state?` > [`State`](modules.md#state)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8247) +Defined in: [libs/jast/jast/src/lib/jats.ts:8247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8247) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8249) +Defined in: [libs/jast/jast/src/lib/jats.ts:8249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8249) -*** +--- ### `PublisherName` @@ -33120,7 +33120,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**PublisherName** +- [`Node`](modules.md#node).**PublisherName** #### Properties @@ -33137,18 +33137,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8255) +Defined in: [libs/jast/jast/src/lib/jats.ts:8255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8255) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`PublisherNameChildrenMap`](modules.md#publishernamechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8260) +Defined in: [libs/jast/jast/src/lib/jats.ts:8260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8260) ##### `data?` @@ -33158,13 +33158,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"publisherName"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8254) +Defined in: [libs/jast/jast/src/lib/jats.ts:8254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8254) ##### `position?` @@ -33175,7 +33175,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -33185,9 +33185,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8253) +Defined in: [libs/jast/jast/src/lib/jats.ts:8253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8253) -*** +--- ### `PublisherNameChildrenMap` @@ -33197,15 +33197,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8253](https://github.com/TrialAndEr > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8264](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8264) +Defined in: [libs/jast/jast/src/lib/jats.ts:8264](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8264) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8266) +Defined in: [libs/jast/jast/src/lib/jats.ts:8266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8266) -*** +--- ### `Question` @@ -33213,7 +33213,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Question** +- [`Node`](modules.md#node).**Question** #### Properties @@ -33231,19 +33231,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :---------------------- | :--------------------------------- | +| `id`? | `string` | | `questionResponsetype`? | `QuestionTypeQuestionResponsetype` | -| `specificUse`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8383) +Defined in: [libs/jast/jast/src/lib/jats.ts:8383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8383) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`QuestionChildrenMap`](modules.md#questionchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8389) +Defined in: [libs/jast/jast/src/lib/jats.ts:8389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8389) ##### `data?` @@ -33253,13 +33253,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"question"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8382](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8382) +Defined in: [libs/jast/jast/src/lib/jats.ts:8382](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8382) ##### `position?` @@ -33270,7 +33270,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -33280,9 +33280,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8381](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8381) +Defined in: [libs/jast/jast/src/lib/jats.ts:8381](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8381) -*** +--- ### `QuestionChildrenMap` @@ -33292,273 +33292,273 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8381](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8394) +Defined in: [libs/jast/jast/src/lib/jats.ts:8394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8394) ##### `altTitle?` > [`AltTitle`](modules.md#alttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8396) +Defined in: [libs/jast/jast/src/lib/jats.ts:8396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8396) ##### `alternatives` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8398) +Defined in: [libs/jast/jast/src/lib/jats.ts:8398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8398) ##### `answer` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8400) +Defined in: [libs/jast/jast/src/lib/jats.ts:8400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8400) ##### `answerSet` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8402) +Defined in: [libs/jast/jast/src/lib/jats.ts:8402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8402) ##### `array` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8404) +Defined in: [libs/jast/jast/src/lib/jats.ts:8404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8404) ##### `blockAlternatives` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8406) +Defined in: [libs/jast/jast/src/lib/jats.ts:8406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8406) ##### `boxedText` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8408) +Defined in: [libs/jast/jast/src/lib/jats.ts:8408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8408) ##### `chemStructwrap` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8410) +Defined in: [libs/jast/jast/src/lib/jats.ts:8410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8410) ##### `code` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8412) +Defined in: [libs/jast/jast/src/lib/jats.ts:8412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8412) ##### `defList` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8414](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8414) +Defined in: [libs/jast/jast/src/lib/jats.ts:8414](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8414) ##### `dispFormula` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8416) +Defined in: [libs/jast/jast/src/lib/jats.ts:8416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8416) ##### `dispFormulagroup` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8418](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8418) +Defined in: [libs/jast/jast/src/lib/jats.ts:8418](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8418) ##### `dispQuote` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8420) +Defined in: [libs/jast/jast/src/lib/jats.ts:8420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8420) ##### `explanation` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8422](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8422) +Defined in: [libs/jast/jast/src/lib/jats.ts:8422](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8422) ##### `fig` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8424](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8424) +Defined in: [libs/jast/jast/src/lib/jats.ts:8424](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8424) ##### `figGroup` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8426) +Defined in: [libs/jast/jast/src/lib/jats.ts:8426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8426) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8428) +Defined in: [libs/jast/jast/src/lib/jats.ts:8428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8428) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8430) +Defined in: [libs/jast/jast/src/lib/jats.ts:8430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8430) ##### `graphic` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8432) +Defined in: [libs/jast/jast/src/lib/jats.ts:8432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8432) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:8434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8434) +Defined in: [libs/jast/jast/src/lib/jats.ts:8434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8434) ##### `list` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8436) +Defined in: [libs/jast/jast/src/lib/jats.ts:8436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8436) ##### `media` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8438](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8438) +Defined in: [libs/jast/jast/src/lib/jats.ts:8438](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8438) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8440) +Defined in: [libs/jast/jast/src/lib/jats.ts:8440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8440) ##### `option?` > [`Option`](modules.md#option)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8442) +Defined in: [libs/jast/jast/src/lib/jats.ts:8442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8442) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8444) +Defined in: [libs/jast/jast/src/lib/jats.ts:8444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8444) ##### `preformat` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8446) +Defined in: [libs/jast/jast/src/lib/jats.ts:8446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8446) ##### `question` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8448) +Defined in: [libs/jast/jast/src/lib/jats.ts:8448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8448) ##### `questionWrap` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8450) +Defined in: [libs/jast/jast/src/lib/jats.ts:8450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8450) ##### `questionWrapgroup` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8452) +Defined in: [libs/jast/jast/src/lib/jats.ts:8452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8452) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8454) +Defined in: [libs/jast/jast/src/lib/jats.ts:8454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8454) ##### `relatedArticle` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8456) +Defined in: [libs/jast/jast/src/lib/jats.ts:8456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8456) ##### `relatedObject` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8458) +Defined in: [libs/jast/jast/src/lib/jats.ts:8458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8458) ##### `sec` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8460) +Defined in: [libs/jast/jast/src/lib/jats.ts:8460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8460) ##### `secMeta?` > [`SecMeta`](modules.md#secmeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:8462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8462) +Defined in: [libs/jast/jast/src/lib/jats.ts:8462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8462) ##### `speech` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8464) +Defined in: [libs/jast/jast/src/lib/jats.ts:8464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8464) ##### `statement` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8466) +Defined in: [libs/jast/jast/src/lib/jats.ts:8466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8466) ##### `subtitle?` > [`Subtitle`](modules.md#subtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8468) +Defined in: [libs/jast/jast/src/lib/jats.ts:8468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8468) ##### `supplementaryMaterial` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8470) +Defined in: [libs/jast/jast/src/lib/jats.ts:8470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8470) ##### `tableWrap` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8472) +Defined in: [libs/jast/jast/src/lib/jats.ts:8472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8472) ##### `tableWrapgroup` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8474) +Defined in: [libs/jast/jast/src/lib/jats.ts:8474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8474) ##### `texMath` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8476) +Defined in: [libs/jast/jast/src/lib/jats.ts:8476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8476) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:8393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8393) +Defined in: [libs/jast/jast/src/lib/jats.ts:8393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8393) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:8478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8478) +Defined in: [libs/jast/jast/src/lib/jats.ts:8478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8478) ##### `verseGroup` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8480) +Defined in: [libs/jast/jast/src/lib/jats.ts:8480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8480) -*** +--- ### `QuestionPreamble` @@ -33566,7 +33566,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**QuestionPreamble** +- [`Node`](modules.md#node).**QuestionPreamble** #### Properties @@ -33583,18 +33583,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8290](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8290) +Defined in: [libs/jast/jast/src/lib/jats.ts:8290](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8290) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`QuestionPreambleChildrenMap`](modules.md#questionpreamblechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8295) +Defined in: [libs/jast/jast/src/lib/jats.ts:8295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8295) ##### `data?` @@ -33604,13 +33604,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"questionPreamble"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8289](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8289) +Defined in: [libs/jast/jast/src/lib/jats.ts:8289](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8289) ##### `position?` @@ -33621,7 +33621,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -33631,9 +33631,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8288) +Defined in: [libs/jast/jast/src/lib/jats.ts:8288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8288) -*** +--- ### `QuestionPreambleChildrenMap` @@ -33643,243 +33643,243 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8288](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8301) +Defined in: [libs/jast/jast/src/lib/jats.ts:8301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8301) ##### `altTitle?` > [`AltTitle`](modules.md#alttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8303) +Defined in: [libs/jast/jast/src/lib/jats.ts:8303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8303) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8305) +Defined in: [libs/jast/jast/src/lib/jats.ts:8305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8305) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8307) +Defined in: [libs/jast/jast/src/lib/jats.ts:8307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8307) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8309](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8309) +Defined in: [libs/jast/jast/src/lib/jats.ts:8309](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8309) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8311) +Defined in: [libs/jast/jast/src/lib/jats.ts:8311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8311) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8313) +Defined in: [libs/jast/jast/src/lib/jats.ts:8313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8313) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8315) +Defined in: [libs/jast/jast/src/lib/jats.ts:8315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8315) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8317) +Defined in: [libs/jast/jast/src/lib/jats.ts:8317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8317) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8319](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8319) +Defined in: [libs/jast/jast/src/lib/jats.ts:8319](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8319) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8321) +Defined in: [libs/jast/jast/src/lib/jats.ts:8321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8321) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8323](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8323) +Defined in: [libs/jast/jast/src/lib/jats.ts:8323](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8323) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8325) +Defined in: [libs/jast/jast/src/lib/jats.ts:8325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8325) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8327](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8327) +Defined in: [libs/jast/jast/src/lib/jats.ts:8327](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8327) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8329) +Defined in: [libs/jast/jast/src/lib/jats.ts:8329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8329) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8331) +Defined in: [libs/jast/jast/src/lib/jats.ts:8331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8331) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8333](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8333) +Defined in: [libs/jast/jast/src/lib/jats.ts:8333](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8333) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8335) +Defined in: [libs/jast/jast/src/lib/jats.ts:8335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8335) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:8337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8337) +Defined in: [libs/jast/jast/src/lib/jats.ts:8337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8337) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8339) +Defined in: [libs/jast/jast/src/lib/jats.ts:8339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8339) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8341](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8341) +Defined in: [libs/jast/jast/src/lib/jats.ts:8341](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8341) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8343](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8343) +Defined in: [libs/jast/jast/src/lib/jats.ts:8343](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8343) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8345](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8345) +Defined in: [libs/jast/jast/src/lib/jats.ts:8345](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8345) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8347](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8347) +Defined in: [libs/jast/jast/src/lib/jats.ts:8347](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8347) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8349) +Defined in: [libs/jast/jast/src/lib/jats.ts:8349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8349) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8351](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8351) +Defined in: [libs/jast/jast/src/lib/jats.ts:8351](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8351) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8353](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8353) +Defined in: [libs/jast/jast/src/lib/jats.ts:8353](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8353) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8355) +Defined in: [libs/jast/jast/src/lib/jats.ts:8355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8355) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8357](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8357) +Defined in: [libs/jast/jast/src/lib/jats.ts:8357](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8357) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8359) +Defined in: [libs/jast/jast/src/lib/jats.ts:8359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8359) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8361](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8361) +Defined in: [libs/jast/jast/src/lib/jats.ts:8361](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8361) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8363) +Defined in: [libs/jast/jast/src/lib/jats.ts:8363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8363) ##### `subtitle?` > [`Subtitle`](modules.md#subtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8365](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8365) +Defined in: [libs/jast/jast/src/lib/jats.ts:8365](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8365) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8367) +Defined in: [libs/jast/jast/src/lib/jats.ts:8367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8367) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8369) +Defined in: [libs/jast/jast/src/lib/jats.ts:8369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8369) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8371) +Defined in: [libs/jast/jast/src/lib/jats.ts:8371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8371) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8373) +Defined in: [libs/jast/jast/src/lib/jats.ts:8373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8373) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:8299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8299) +Defined in: [libs/jast/jast/src/lib/jats.ts:8299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8299) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:8375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8375) +Defined in: [libs/jast/jast/src/lib/jats.ts:8375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8375) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8377](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8377) +Defined in: [libs/jast/jast/src/lib/jats.ts:8377](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8377) -*** +--- ### `QuestionWrap` @@ -33887,7 +33887,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**QuestionWrap** +- [`Node`](modules.md#node).**QuestionWrap** #### Properties @@ -33905,19 +33905,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `audience`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `audience`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8524) +Defined in: [libs/jast/jast/src/lib/jats.ts:8524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8524) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`QuestionWrapChildrenMap`](modules.md#questionwrapchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8530) +Defined in: [libs/jast/jast/src/lib/jats.ts:8530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8530) ##### `data?` @@ -33927,13 +33927,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"questionWrap"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8523](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8523) +Defined in: [libs/jast/jast/src/lib/jats.ts:8523](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8523) ##### `position?` @@ -33944,7 +33944,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -33954,9 +33954,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8522) +Defined in: [libs/jast/jast/src/lib/jats.ts:8522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8522) -*** +--- ### `QuestionWrapChildrenMap` @@ -33966,39 +33966,39 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8522](https://github.com/TrialAndEr > [`Answer`](modules.md#answer) -Defined in: [libs/jast/jast/src/lib/jats.ts:8536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8536) +Defined in: [libs/jast/jast/src/lib/jats.ts:8536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8536) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset) -Defined in: [libs/jast/jast/src/lib/jats.ts:8538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8538) +Defined in: [libs/jast/jast/src/lib/jats.ts:8538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8538) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8540) +Defined in: [libs/jast/jast/src/lib/jats.ts:8540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8540) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8542](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8542) +Defined in: [libs/jast/jast/src/lib/jats.ts:8542](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8542) ##### `question` > [`Question`](modules.md#question) -Defined in: [libs/jast/jast/src/lib/jats.ts:8544](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8544) +Defined in: [libs/jast/jast/src/lib/jats.ts:8544](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8544) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:8534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8534) +Defined in: [libs/jast/jast/src/lib/jats.ts:8534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8534) -*** +--- ### `QuestionWrapgroup` @@ -34006,7 +34006,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**QuestionWrapgroup** +- [`Node`](modules.md#node).**QuestionWrapgroup** #### Properties @@ -34024,19 +34024,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `audience`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `audience`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8494) +Defined in: [libs/jast/jast/src/lib/jats.ts:8494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8494) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`QuestionWrapgroupChildrenMap`](modules.md#questionwrapgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8500) +Defined in: [libs/jast/jast/src/lib/jats.ts:8500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8500) ##### `data?` @@ -34046,13 +34046,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"questionWrapgroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8493) +Defined in: [libs/jast/jast/src/lib/jats.ts:8493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8493) ##### `position?` @@ -34063,7 +34063,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -34073,9 +34073,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8492) +Defined in: [libs/jast/jast/src/lib/jats.ts:8492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8492) -*** +--- ### `QuestionWrapgroupChildrenMap` @@ -34085,51 +34085,51 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8492](https://github.com/TrialAndEr > [`AltTitle`](modules.md#alttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8506) +Defined in: [libs/jast/jast/src/lib/jats.ts:8506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8506) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:8508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8508) +Defined in: [libs/jast/jast/src/lib/jats.ts:8508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8508) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8510](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8510) +Defined in: [libs/jast/jast/src/lib/jats.ts:8510](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8510) ##### `questionPreamble?` > [`QuestionPreamble`](modules.md#questionpreamble) -Defined in: [libs/jast/jast/src/lib/jats.ts:8512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8512) +Defined in: [libs/jast/jast/src/lib/jats.ts:8512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8512) ##### `questionWrap` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8514) +Defined in: [libs/jast/jast/src/lib/jats.ts:8514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8514) ##### `subtitle?` > [`Subtitle`](modules.md#subtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8516) +Defined in: [libs/jast/jast/src/lib/jats.ts:8516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8516) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:8504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8504) +Defined in: [libs/jast/jast/src/lib/jats.ts:8504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8504) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:8518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8518) +Defined in: [libs/jast/jast/src/lib/jats.ts:8518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8518) -*** +--- ### `Rb` @@ -34137,7 +34137,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Rb** +- [`Node`](modules.md#node).**Rb** #### Properties @@ -34154,18 +34154,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8550](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8550) +Defined in: [libs/jast/jast/src/lib/jats.ts:8550](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8550) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`RbChildrenMap`](modules.md#rbchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8555) +Defined in: [libs/jast/jast/src/lib/jats.ts:8555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8555) ##### `data?` @@ -34175,13 +34175,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"rb"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8549) +Defined in: [libs/jast/jast/src/lib/jats.ts:8549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8549) ##### `position?` @@ -34192,7 +34192,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -34202,9 +34202,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8548](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8548) +Defined in: [libs/jast/jast/src/lib/jats.ts:8548](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8548) -*** +--- ### `RbChildrenMap` @@ -34214,69 +34214,69 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8548](https://github.com/TrialAndEr > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8561) +Defined in: [libs/jast/jast/src/lib/jats.ts:8561](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8561) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8563) +Defined in: [libs/jast/jast/src/lib/jats.ts:8563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8563) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8565) +Defined in: [libs/jast/jast/src/lib/jats.ts:8565](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8565) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8567) +Defined in: [libs/jast/jast/src/lib/jats.ts:8567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8567) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8569) +Defined in: [libs/jast/jast/src/lib/jats.ts:8569](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8569) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8571) +Defined in: [libs/jast/jast/src/lib/jats.ts:8571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8571) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8573) +Defined in: [libs/jast/jast/src/lib/jats.ts:8573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8573) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8575) +Defined in: [libs/jast/jast/src/lib/jats.ts:8575](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8575) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8577) +Defined in: [libs/jast/jast/src/lib/jats.ts:8577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8577) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:8559](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8559) +Defined in: [libs/jast/jast/src/lib/jats.ts:8559](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8559) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8579) +Defined in: [libs/jast/jast/src/lib/jats.ts:8579](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8579) -*** +--- ### `Ref` @@ -34284,7 +34284,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Ref** +- [`Node`](modules.md#node).**Ref** #### Properties @@ -34302,19 +34302,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------------- | :------- | | `contentType`? | `string` | -| `id`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8686) +Defined in: [libs/jast/jast/src/lib/jats.ts:8686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8686) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`RefChildrenMap`](modules.md#refchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8692) +Defined in: [libs/jast/jast/src/lib/jats.ts:8692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8692) ##### `data?` @@ -34324,13 +34324,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"ref"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8685](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8685) +Defined in: [libs/jast/jast/src/lib/jats.ts:8685](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8685) ##### `position?` @@ -34341,7 +34341,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -34351,9 +34351,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8684) +Defined in: [libs/jast/jast/src/lib/jats.ts:8684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8684) -*** +--- ### `RefChildrenMap` @@ -34363,45 +34363,45 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8684](https://github.com/TrialAndEr > [`CitationAlternatives`](modules.md#citationalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8698) +Defined in: [libs/jast/jast/src/lib/jats.ts:8698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8698) ##### `elementCitation` > [`ElementCitation`](modules.md#elementcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8700) +Defined in: [libs/jast/jast/src/lib/jats.ts:8700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8700) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:8702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8702) +Defined in: [libs/jast/jast/src/lib/jats.ts:8702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8702) ##### `mixedCitation` > [`MixedCitation`](modules.md#mixedcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8704) +Defined in: [libs/jast/jast/src/lib/jats.ts:8704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8704) ##### `nlmCitation` > [`NlmCitation`](modules.md#nlmcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8706) +Defined in: [libs/jast/jast/src/lib/jats.ts:8706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8706) ##### `note` > [`Note`](modules.md#note)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8708) +Defined in: [libs/jast/jast/src/lib/jats.ts:8708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8708) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:8696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8696) +Defined in: [libs/jast/jast/src/lib/jats.ts:8696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8696) -*** +--- ### `RefCount` @@ -34409,7 +34409,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**RefCount** +- [`Node`](modules.md#node).**RefCount** #### Properties @@ -34426,18 +34426,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------ | :------- | | `count` | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8585) +Defined in: [libs/jast/jast/src/lib/jats.ts:8585](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8585) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:8589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8589) +Defined in: [libs/jast/jast/src/lib/jats.ts:8589](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8589) ##### `data?` @@ -34447,13 +34447,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"refCount"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8584) +Defined in: [libs/jast/jast/src/lib/jats.ts:8584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8584) ##### `position?` @@ -34464,7 +34464,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -34474,9 +34474,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8583) +Defined in: [libs/jast/jast/src/lib/jats.ts:8583](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8583) -*** +--- ### `RefList` @@ -34484,7 +34484,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**RefList** +- [`Node`](modules.md#node).**RefList** #### Properties @@ -34501,18 +34501,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8595) +Defined in: [libs/jast/jast/src/lib/jats.ts:8595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8595) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`RefListChildrenMap`](modules.md#reflistchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8600) +Defined in: [libs/jast/jast/src/lib/jats.ts:8600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8600) ##### `data?` @@ -34522,13 +34522,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"refList"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8594) +Defined in: [libs/jast/jast/src/lib/jats.ts:8594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8594) ##### `position?` @@ -34539,7 +34539,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -34549,9 +34549,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8593) +Defined in: [libs/jast/jast/src/lib/jats.ts:8593](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8593) -*** +--- ### `RefListChildrenMap` @@ -34561,237 +34561,237 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8593](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8606) +Defined in: [libs/jast/jast/src/lib/jats.ts:8606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8606) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8608) +Defined in: [libs/jast/jast/src/lib/jats.ts:8608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8608) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8610) +Defined in: [libs/jast/jast/src/lib/jats.ts:8610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8610) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8612) +Defined in: [libs/jast/jast/src/lib/jats.ts:8612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8612) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8614](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8614) +Defined in: [libs/jast/jast/src/lib/jats.ts:8614](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8614) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8616) +Defined in: [libs/jast/jast/src/lib/jats.ts:8616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8616) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8618) +Defined in: [libs/jast/jast/src/lib/jats.ts:8618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8618) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8620) +Defined in: [libs/jast/jast/src/lib/jats.ts:8620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8620) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8622) +Defined in: [libs/jast/jast/src/lib/jats.ts:8622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8622) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8624) +Defined in: [libs/jast/jast/src/lib/jats.ts:8624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8624) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8626) +Defined in: [libs/jast/jast/src/lib/jats.ts:8626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8626) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8628) +Defined in: [libs/jast/jast/src/lib/jats.ts:8628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8628) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8630) +Defined in: [libs/jast/jast/src/lib/jats.ts:8630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8630) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8632) +Defined in: [libs/jast/jast/src/lib/jats.ts:8632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8632) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8634) +Defined in: [libs/jast/jast/src/lib/jats.ts:8634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8634) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8636) +Defined in: [libs/jast/jast/src/lib/jats.ts:8636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8636) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8638) +Defined in: [libs/jast/jast/src/lib/jats.ts:8638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8638) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:8640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8640) +Defined in: [libs/jast/jast/src/lib/jats.ts:8640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8640) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8642) +Defined in: [libs/jast/jast/src/lib/jats.ts:8642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8642) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8644) +Defined in: [libs/jast/jast/src/lib/jats.ts:8644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8644) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8646) +Defined in: [libs/jast/jast/src/lib/jats.ts:8646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8646) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8648) +Defined in: [libs/jast/jast/src/lib/jats.ts:8648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8648) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8650) +Defined in: [libs/jast/jast/src/lib/jats.ts:8650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8650) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8652) +Defined in: [libs/jast/jast/src/lib/jats.ts:8652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8652) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8654) +Defined in: [libs/jast/jast/src/lib/jats.ts:8654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8654) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8656) +Defined in: [libs/jast/jast/src/lib/jats.ts:8656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8656) ##### `ref?` > [`Ref`](modules.md#ref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8658) +Defined in: [libs/jast/jast/src/lib/jats.ts:8658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8658) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8660) +Defined in: [libs/jast/jast/src/lib/jats.ts:8660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8660) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8662) +Defined in: [libs/jast/jast/src/lib/jats.ts:8662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8662) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8664) +Defined in: [libs/jast/jast/src/lib/jats.ts:8664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8664) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8666) +Defined in: [libs/jast/jast/src/lib/jats.ts:8666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8666) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8668) +Defined in: [libs/jast/jast/src/lib/jats.ts:8668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8668) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8670) +Defined in: [libs/jast/jast/src/lib/jats.ts:8670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8670) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8672) +Defined in: [libs/jast/jast/src/lib/jats.ts:8672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8672) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8674) +Defined in: [libs/jast/jast/src/lib/jats.ts:8674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8674) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8676) +Defined in: [libs/jast/jast/src/lib/jats.ts:8676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8676) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:8604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8604) +Defined in: [libs/jast/jast/src/lib/jats.ts:8604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8604) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:8678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8678) +Defined in: [libs/jast/jast/src/lib/jats.ts:8678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8678) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8680) +Defined in: [libs/jast/jast/src/lib/jats.ts:8680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8680) -*** +--- ### `RelatedArticle` @@ -34799,7 +34799,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**RelatedArticle** +- [`Node`](modules.md#node).**RelatedArticle** #### Properties @@ -34825,27 +34825,27 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `$elocationId`? | `string` | -| `$issue`? | `string` | -| `$journalId`? | `string` | -| `extLinktype`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `journalIdtype`? | `string` | -| `page`? | `string` | +| Member | Type | +| :------------------- | :------- | +| `$elocationId`? | `string` | +| `$issue`? | `string` | +| `$journalId`? | `string` | +| `extLinktype`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `journalIdtype`? | `string` | +| `page`? | `string` | | `relatedArticletype` | `string` | -| `specificUse`? | `string` | -| `vol`? | `string` | +| `specificUse`? | `string` | +| `vol`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8714) +Defined in: [libs/jast/jast/src/lib/jats.ts:8714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8714) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`RelatedArticleChildrenMap`](modules.md#relatedarticlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8728) +Defined in: [libs/jast/jast/src/lib/jats.ts:8728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8728) ##### `data?` @@ -34855,13 +34855,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"relatedArticle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8713](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8713) +Defined in: [libs/jast/jast/src/lib/jats.ts:8713](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8713) ##### `position?` @@ -34872,7 +34872,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -34882,9 +34882,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8712) +Defined in: [libs/jast/jast/src/lib/jats.ts:8712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8712) -*** +--- ### `RelatedArticleChildrenMap` @@ -34894,459 +34894,459 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8712](https://github.com/TrialAndEr > [`Annotation`](modules.md#annotation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8732) +Defined in: [libs/jast/jast/src/lib/jats.ts:8732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8732) ##### `articleTitle?` > [`ArticleTitle`](modules.md#articletitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8734) +Defined in: [libs/jast/jast/src/lib/jats.ts:8734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8734) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8736) +Defined in: [libs/jast/jast/src/lib/jats.ts:8736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8736) ##### `chapterTitle?` > [`ChapterTitle`](modules.md#chaptertitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8738) +Defined in: [libs/jast/jast/src/lib/jats.ts:8738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8738) ##### `collab?` > [`Collab`](modules.md#collab)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8740) +Defined in: [libs/jast/jast/src/lib/jats.ts:8740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8740) ##### `collabAlternatives?` > [`CollabAlternatives`](modules.md#collabalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8742) +Defined in: [libs/jast/jast/src/lib/jats.ts:8742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8742) ##### `comment?` > [`Comment`](modules.md#comment)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8744) +Defined in: [libs/jast/jast/src/lib/jats.ts:8744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8744) ##### `confAcronym?` > [`ConfAcronym`](modules.md#confacronym)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8746) +Defined in: [libs/jast/jast/src/lib/jats.ts:8746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8746) ##### `confDate?` > [`ConfDate`](modules.md#confdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8748) +Defined in: [libs/jast/jast/src/lib/jats.ts:8748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8748) ##### `confLoc?` > [`ConfLoc`](modules.md#confloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8750) +Defined in: [libs/jast/jast/src/lib/jats.ts:8750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8750) ##### `confName?` > [`ConfName`](modules.md#confname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8752) +Defined in: [libs/jast/jast/src/lib/jats.ts:8752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8752) ##### `confSponsor?` > [`ConfSponsor`](modules.md#confsponsor)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8754) +Defined in: [libs/jast/jast/src/lib/jats.ts:8754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8754) ##### `dataTitle?` > [`DataTitle`](modules.md#datatitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8756) +Defined in: [libs/jast/jast/src/lib/jats.ts:8756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8756) ##### `date?` > [`Date`](modules.md#date)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8758) +Defined in: [libs/jast/jast/src/lib/jats.ts:8758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8758) ##### `dateIncitation?` > [`DateIncitation`](modules.md#dateincitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8760) +Defined in: [libs/jast/jast/src/lib/jats.ts:8760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8760) ##### `day?` > [`Day`](modules.md#day)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8762) +Defined in: [libs/jast/jast/src/lib/jats.ts:8762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8762) ##### `edition?` > [`Edition`](modules.md#edition)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8764) +Defined in: [libs/jast/jast/src/lib/jats.ts:8764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8764) ##### `elocationId?` > [`ElocationId`](modules.md#elocationid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8766) +Defined in: [libs/jast/jast/src/lib/jats.ts:8766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8766) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8768) +Defined in: [libs/jast/jast/src/lib/jats.ts:8768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8768) ##### `etal?` > [`Etal`](modules.md#etal)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8770) +Defined in: [libs/jast/jast/src/lib/jats.ts:8770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8770) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8772) +Defined in: [libs/jast/jast/src/lib/jats.ts:8772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8772) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8774) +Defined in: [libs/jast/jast/src/lib/jats.ts:8774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8774) ##### `fpage?` > [`Fpage`](modules.md#fpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8776) +Defined in: [libs/jast/jast/src/lib/jats.ts:8776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8776) ##### `gov?` > [`Gov`](modules.md#gov)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8778) +Defined in: [libs/jast/jast/src/lib/jats.ts:8778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8778) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8780) +Defined in: [libs/jast/jast/src/lib/jats.ts:8780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8780) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8782) +Defined in: [libs/jast/jast/src/lib/jats.ts:8782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8782) ##### `isbn?` > [`Isbn`](modules.md#isbn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8784) +Defined in: [libs/jast/jast/src/lib/jats.ts:8784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8784) ##### `issn?` > [`Issn`](modules.md#issn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8786) +Defined in: [libs/jast/jast/src/lib/jats.ts:8786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8786) ##### `issnL?` > [`IssnL`](modules.md#issnl)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8788) +Defined in: [libs/jast/jast/src/lib/jats.ts:8788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8788) ##### `issue?` > [`Issue`](modules.md#issue)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8790) +Defined in: [libs/jast/jast/src/lib/jats.ts:8790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8790) ##### `issueId?` > [`IssueId`](modules.md#issueid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8792) +Defined in: [libs/jast/jast/src/lib/jats.ts:8792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8792) ##### `issuePart?` > [`IssuePart`](modules.md#issuepart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8794) +Defined in: [libs/jast/jast/src/lib/jats.ts:8794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8794) ##### `issueTitle?` > [`IssueTitle`](modules.md#issuetitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8796) +Defined in: [libs/jast/jast/src/lib/jats.ts:8796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8796) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8798) +Defined in: [libs/jast/jast/src/lib/jats.ts:8798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8798) ##### `journalId?` > [`JournalId`](modules.md#journalid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8800) +Defined in: [libs/jast/jast/src/lib/jats.ts:8800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8800) ##### `lpage?` > [`Lpage`](modules.md#lpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8802) +Defined in: [libs/jast/jast/src/lib/jats.ts:8802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8802) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8804) +Defined in: [libs/jast/jast/src/lib/jats.ts:8804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8804) ##### `month?` > [`Month`](modules.md#month)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8806) +Defined in: [libs/jast/jast/src/lib/jats.ts:8806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8806) ##### `name?` > [`Name`](modules.md#name)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8808) +Defined in: [libs/jast/jast/src/lib/jats.ts:8808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8808) ##### `nameAlternatives?` > [`NameAlternatives`](modules.md#namealternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8810) +Defined in: [libs/jast/jast/src/lib/jats.ts:8810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8810) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8812) +Defined in: [libs/jast/jast/src/lib/jats.ts:8812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8812) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8814) +Defined in: [libs/jast/jast/src/lib/jats.ts:8814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8814) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8816) +Defined in: [libs/jast/jast/src/lib/jats.ts:8816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8816) ##### `pageRange?` > [`PageRange`](modules.md#pagerange)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8818) +Defined in: [libs/jast/jast/src/lib/jats.ts:8818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8818) ##### `partTitle?` > [`PartTitle`](modules.md#parttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8820) +Defined in: [libs/jast/jast/src/lib/jats.ts:8820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8820) ##### `patent?` > [`Patent`](modules.md#patent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8822) +Defined in: [libs/jast/jast/src/lib/jats.ts:8822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8822) ##### `personGroup?` > [`PersonGroup`](modules.md#persongroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8824) +Defined in: [libs/jast/jast/src/lib/jats.ts:8824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8824) ##### `pubId?` > [`PubId`](modules.md#pubid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8826) +Defined in: [libs/jast/jast/src/lib/jats.ts:8826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8826) ##### `publisherLoc?` > [`PublisherLoc`](modules.md#publisherloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8828) +Defined in: [libs/jast/jast/src/lib/jats.ts:8828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8828) ##### `publisherName?` > [`PublisherName`](modules.md#publishername)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8830) +Defined in: [libs/jast/jast/src/lib/jats.ts:8830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8830) ##### `role?` > [`Role`](modules.md#role)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8832) +Defined in: [libs/jast/jast/src/lib/jats.ts:8832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8832) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8834) +Defined in: [libs/jast/jast/src/lib/jats.ts:8834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8834) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8836) +Defined in: [libs/jast/jast/src/lib/jats.ts:8836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8836) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8838) +Defined in: [libs/jast/jast/src/lib/jats.ts:8838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8838) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8840) +Defined in: [libs/jast/jast/src/lib/jats.ts:8840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8840) ##### `season?` > [`Season`](modules.md#season)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8842) +Defined in: [libs/jast/jast/src/lib/jats.ts:8842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8842) ##### `series?` > [`Series`](modules.md#series)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8844) +Defined in: [libs/jast/jast/src/lib/jats.ts:8844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8844) ##### `size?` > [`Size`](modules.md#size)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8846) +Defined in: [libs/jast/jast/src/lib/jats.ts:8846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8846) ##### `source?` > [`Source`](modules.md#source)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8848) +Defined in: [libs/jast/jast/src/lib/jats.ts:8848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8848) ##### `std?` > [`Std`](modules.md#std)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8850) +Defined in: [libs/jast/jast/src/lib/jats.ts:8850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8850) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8852) +Defined in: [libs/jast/jast/src/lib/jats.ts:8852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8852) ##### `stringDate?` > [`StringDate`](modules.md#stringdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8854) +Defined in: [libs/jast/jast/src/lib/jats.ts:8854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8854) ##### `stringName?` > [`StringName`](modules.md#stringname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8856) +Defined in: [libs/jast/jast/src/lib/jats.ts:8856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8856) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8858) +Defined in: [libs/jast/jast/src/lib/jats.ts:8858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8858) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8860) +Defined in: [libs/jast/jast/src/lib/jats.ts:8860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8860) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8862) +Defined in: [libs/jast/jast/src/lib/jats.ts:8862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8862) ##### `supplement?` > [`Supplement`](modules.md#supplement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8864) +Defined in: [libs/jast/jast/src/lib/jats.ts:8864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8864) ##### `transSource?` > [`TransSource`](modules.md#transsource)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8866) +Defined in: [libs/jast/jast/src/lib/jats.ts:8866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8866) ##### `transTitle?` > [`TransTitle`](modules.md#transtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8868) +Defined in: [libs/jast/jast/src/lib/jats.ts:8868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8868) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8870) +Defined in: [libs/jast/jast/src/lib/jats.ts:8870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8870) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8872) +Defined in: [libs/jast/jast/src/lib/jats.ts:8872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8872) ##### `version?` > [`Version`](modules.md#version)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8874) +Defined in: [libs/jast/jast/src/lib/jats.ts:8874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8874) ##### `volume?` > [`Volume`](modules.md#volume)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8876) +Defined in: [libs/jast/jast/src/lib/jats.ts:8876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8876) ##### `volumeId?` > [`VolumeId`](modules.md#volumeid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8878) +Defined in: [libs/jast/jast/src/lib/jats.ts:8878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8878) ##### `volumeSeries?` > [`VolumeSeries`](modules.md#volumeseries)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8880) +Defined in: [libs/jast/jast/src/lib/jats.ts:8880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8880) ##### `year?` > [`Year`](modules.md#year)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8882) +Defined in: [libs/jast/jast/src/lib/jats.ts:8882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8882) -*** +--- ### `RelatedObject` @@ -35354,7 +35354,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**RelatedObject** +- [`Node`](modules.md#node).**RelatedObject** #### Properties @@ -35383,30 +35383,30 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `$objectId`? | `string` | -| `documentId`? | `string` | +| Member | Type | +| :---------------- | :------- | +| `$objectId`? | `string` | +| `documentId`? | `string` | | `documentIdtype`? | `string` | -| `documentType`? | `string` | -| `extLinktype`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `linkType`? | `string` | -| `objectIdtype`? | `string` | -| `objectType`? | `string` | -| `sourceId`? | `string` | -| `sourceIdtype`? | `string` | -| `sourceType`? | `string` | -| `specificUse`? | `string` | +| `documentType`? | `string` | +| `extLinktype`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `linkType`? | `string` | +| `objectIdtype`? | `string` | +| `objectType`? | `string` | +| `sourceId`? | `string` | +| `sourceIdtype`? | `string` | +| `sourceType`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:8888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8888) +Defined in: [libs/jast/jast/src/lib/jats.ts:8888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8888) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`RelatedObjectChildrenMap`](modules.md#relatedobjectchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8904) +Defined in: [libs/jast/jast/src/lib/jats.ts:8904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8904) ##### `data?` @@ -35416,13 +35416,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"relatedObject"` -Defined in: [libs/jast/jast/src/lib/jats.ts:8887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8887) +Defined in: [libs/jast/jast/src/lib/jats.ts:8887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8887) ##### `position?` @@ -35433,7 +35433,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -35443,9 +35443,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:8886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8886) +Defined in: [libs/jast/jast/src/lib/jats.ts:8886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8886) -*** +--- ### `RelatedObjectChildrenMap` @@ -35455,459 +35455,459 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8886](https://github.com/TrialAndEr > [`Annotation`](modules.md#annotation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8908) +Defined in: [libs/jast/jast/src/lib/jats.ts:8908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8908) ##### `articleTitle?` > [`ArticleTitle`](modules.md#articletitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8910) +Defined in: [libs/jast/jast/src/lib/jats.ts:8910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8910) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8912) +Defined in: [libs/jast/jast/src/lib/jats.ts:8912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8912) ##### `chapterTitle?` > [`ChapterTitle`](modules.md#chaptertitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8914) +Defined in: [libs/jast/jast/src/lib/jats.ts:8914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8914) ##### `collab?` > [`Collab`](modules.md#collab)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8916) +Defined in: [libs/jast/jast/src/lib/jats.ts:8916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8916) ##### `collabAlternatives?` > [`CollabAlternatives`](modules.md#collabalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8918) +Defined in: [libs/jast/jast/src/lib/jats.ts:8918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8918) ##### `comment?` > [`Comment`](modules.md#comment)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8920) +Defined in: [libs/jast/jast/src/lib/jats.ts:8920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8920) ##### `confAcronym?` > [`ConfAcronym`](modules.md#confacronym)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8922) +Defined in: [libs/jast/jast/src/lib/jats.ts:8922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8922) ##### `confDate?` > [`ConfDate`](modules.md#confdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8924) +Defined in: [libs/jast/jast/src/lib/jats.ts:8924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8924) ##### `confLoc?` > [`ConfLoc`](modules.md#confloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8926) +Defined in: [libs/jast/jast/src/lib/jats.ts:8926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8926) ##### `confName?` > [`ConfName`](modules.md#confname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8928) +Defined in: [libs/jast/jast/src/lib/jats.ts:8928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8928) ##### `confSponsor?` > [`ConfSponsor`](modules.md#confsponsor)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8930) +Defined in: [libs/jast/jast/src/lib/jats.ts:8930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8930) ##### `dataTitle?` > [`DataTitle`](modules.md#datatitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8932) +Defined in: [libs/jast/jast/src/lib/jats.ts:8932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8932) ##### `date?` > [`Date`](modules.md#date)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8934) +Defined in: [libs/jast/jast/src/lib/jats.ts:8934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8934) ##### `dateIncitation?` > [`DateIncitation`](modules.md#dateincitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8936) +Defined in: [libs/jast/jast/src/lib/jats.ts:8936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8936) ##### `day?` > [`Day`](modules.md#day)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8938](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8938) +Defined in: [libs/jast/jast/src/lib/jats.ts:8938](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8938) ##### `edition?` > [`Edition`](modules.md#edition)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8940) +Defined in: [libs/jast/jast/src/lib/jats.ts:8940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8940) ##### `elocationId?` > [`ElocationId`](modules.md#elocationid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8942) +Defined in: [libs/jast/jast/src/lib/jats.ts:8942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8942) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8944) +Defined in: [libs/jast/jast/src/lib/jats.ts:8944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8944) ##### `etal?` > [`Etal`](modules.md#etal)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8946) +Defined in: [libs/jast/jast/src/lib/jats.ts:8946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8946) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8948](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8948) +Defined in: [libs/jast/jast/src/lib/jats.ts:8948](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8948) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8950) +Defined in: [libs/jast/jast/src/lib/jats.ts:8950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8950) ##### `fpage?` > [`Fpage`](modules.md#fpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8952](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8952) +Defined in: [libs/jast/jast/src/lib/jats.ts:8952](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8952) ##### `gov?` > [`Gov`](modules.md#gov)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8954](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8954) +Defined in: [libs/jast/jast/src/lib/jats.ts:8954](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8954) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8956](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8956) +Defined in: [libs/jast/jast/src/lib/jats.ts:8956](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8956) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8958](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8958) +Defined in: [libs/jast/jast/src/lib/jats.ts:8958](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8958) ##### `isbn?` > [`Isbn`](modules.md#isbn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8960](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8960) +Defined in: [libs/jast/jast/src/lib/jats.ts:8960](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8960) ##### `issn?` > [`Issn`](modules.md#issn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8962](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8962) +Defined in: [libs/jast/jast/src/lib/jats.ts:8962](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8962) ##### `issnL?` > [`IssnL`](modules.md#issnl)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8964](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8964) +Defined in: [libs/jast/jast/src/lib/jats.ts:8964](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8964) ##### `issue?` > [`Issue`](modules.md#issue)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8966) +Defined in: [libs/jast/jast/src/lib/jats.ts:8966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8966) ##### `issueId?` > [`IssueId`](modules.md#issueid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8968](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8968) +Defined in: [libs/jast/jast/src/lib/jats.ts:8968](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8968) ##### `issuePart?` > [`IssuePart`](modules.md#issuepart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8970](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8970) +Defined in: [libs/jast/jast/src/lib/jats.ts:8970](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8970) ##### `issueTitle?` > [`IssueTitle`](modules.md#issuetitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8972](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8972) +Defined in: [libs/jast/jast/src/lib/jats.ts:8972](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8972) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8974](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8974) +Defined in: [libs/jast/jast/src/lib/jats.ts:8974](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8974) ##### `lpage?` > [`Lpage`](modules.md#lpage)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8976](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8976) +Defined in: [libs/jast/jast/src/lib/jats.ts:8976](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8976) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8978](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8978) +Defined in: [libs/jast/jast/src/lib/jats.ts:8978](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8978) ##### `month?` > [`Month`](modules.md#month)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8980](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8980) +Defined in: [libs/jast/jast/src/lib/jats.ts:8980](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8980) ##### `name?` > [`Name`](modules.md#name)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8982](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8982) +Defined in: [libs/jast/jast/src/lib/jats.ts:8982](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8982) ##### `nameAlternatives?` > [`NameAlternatives`](modules.md#namealternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8984](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8984) +Defined in: [libs/jast/jast/src/lib/jats.ts:8984](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8984) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8986) +Defined in: [libs/jast/jast/src/lib/jats.ts:8986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8986) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8988) +Defined in: [libs/jast/jast/src/lib/jats.ts:8988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8988) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8990](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8990) +Defined in: [libs/jast/jast/src/lib/jats.ts:8990](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8990) ##### `pageRange?` > [`PageRange`](modules.md#pagerange)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8992](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8992) +Defined in: [libs/jast/jast/src/lib/jats.ts:8992](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8992) ##### `partTitle?` > [`PartTitle`](modules.md#parttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8994) +Defined in: [libs/jast/jast/src/lib/jats.ts:8994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8994) ##### `patent?` > [`Patent`](modules.md#patent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8996) +Defined in: [libs/jast/jast/src/lib/jats.ts:8996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8996) ##### `personGroup?` > [`PersonGroup`](modules.md#persongroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:8998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8998) +Defined in: [libs/jast/jast/src/lib/jats.ts:8998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8998) ##### `pubId?` > [`PubId`](modules.md#pubid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9000) +Defined in: [libs/jast/jast/src/lib/jats.ts:9000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9000) ##### `publisherLoc?` > [`PublisherLoc`](modules.md#publisherloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9002) +Defined in: [libs/jast/jast/src/lib/jats.ts:9002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9002) ##### `publisherName?` > [`PublisherName`](modules.md#publishername)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9004) +Defined in: [libs/jast/jast/src/lib/jats.ts:9004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9004) ##### `role?` > [`Role`](modules.md#role)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9006) +Defined in: [libs/jast/jast/src/lib/jats.ts:9006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9006) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9008) +Defined in: [libs/jast/jast/src/lib/jats.ts:9008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9008) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9010) +Defined in: [libs/jast/jast/src/lib/jats.ts:9010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9010) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9012) +Defined in: [libs/jast/jast/src/lib/jats.ts:9012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9012) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9014) +Defined in: [libs/jast/jast/src/lib/jats.ts:9014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9014) ##### `season?` > [`Season`](modules.md#season)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9016) +Defined in: [libs/jast/jast/src/lib/jats.ts:9016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9016) ##### `series?` > [`Series`](modules.md#series)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9018) +Defined in: [libs/jast/jast/src/lib/jats.ts:9018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9018) ##### `size?` > [`Size`](modules.md#size)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9020) +Defined in: [libs/jast/jast/src/lib/jats.ts:9020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9020) ##### `source?` > [`Source`](modules.md#source)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9022) +Defined in: [libs/jast/jast/src/lib/jats.ts:9022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9022) ##### `std?` > [`Std`](modules.md#std)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9024](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9024) +Defined in: [libs/jast/jast/src/lib/jats.ts:9024](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9024) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9026](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9026) +Defined in: [libs/jast/jast/src/lib/jats.ts:9026](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9026) ##### `stringDate?` > [`StringDate`](modules.md#stringdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9028](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9028) +Defined in: [libs/jast/jast/src/lib/jats.ts:9028](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9028) ##### `stringName?` > [`StringName`](modules.md#stringname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9030](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9030) +Defined in: [libs/jast/jast/src/lib/jats.ts:9030](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9030) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9032](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9032) +Defined in: [libs/jast/jast/src/lib/jats.ts:9032](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9032) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9034) +Defined in: [libs/jast/jast/src/lib/jats.ts:9034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9034) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9036](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9036) +Defined in: [libs/jast/jast/src/lib/jats.ts:9036](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9036) ##### `supplement?` > [`Supplement`](modules.md#supplement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9038](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9038) +Defined in: [libs/jast/jast/src/lib/jats.ts:9038](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9038) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:8907](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8907) +Defined in: [libs/jast/jast/src/lib/jats.ts:8907](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8907) ##### `transSource?` > [`TransSource`](modules.md#transsource)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9040](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9040) +Defined in: [libs/jast/jast/src/lib/jats.ts:9040](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9040) ##### `transTitle?` > [`TransTitle`](modules.md#transtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9042](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9042) +Defined in: [libs/jast/jast/src/lib/jats.ts:9042](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9042) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9044) +Defined in: [libs/jast/jast/src/lib/jats.ts:9044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9044) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9046) +Defined in: [libs/jast/jast/src/lib/jats.ts:9046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9046) ##### `version?` > [`Version`](modules.md#version)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9048) +Defined in: [libs/jast/jast/src/lib/jats.ts:9048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9048) ##### `volume?` > [`Volume`](modules.md#volume)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9050](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9050) +Defined in: [libs/jast/jast/src/lib/jats.ts:9050](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9050) ##### `volumeId?` > [`VolumeId`](modules.md#volumeid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9052](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9052) +Defined in: [libs/jast/jast/src/lib/jats.ts:9052](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9052) ##### `volumeSeries?` > [`VolumeSeries`](modules.md#volumeseries)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9054) +Defined in: [libs/jast/jast/src/lib/jats.ts:9054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9054) ##### `year?` > [`Year`](modules.md#year)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9056](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9056) +Defined in: [libs/jast/jast/src/lib/jats.ts:9056](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9056) -*** +--- ### `ResourceGroup` @@ -35915,7 +35915,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ResourceGroup** +- [`Node`](modules.md#node).**ResourceGroup** #### Properties @@ -35932,18 +35932,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9062](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9062) +Defined in: [libs/jast/jast/src/lib/jats.ts:9062](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9062) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ResourceGroupChildrenMap`](modules.md#resourcegroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9067) +Defined in: [libs/jast/jast/src/lib/jats.ts:9067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9067) ##### `data?` @@ -35953,13 +35953,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"resourceGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9061) +Defined in: [libs/jast/jast/src/lib/jats.ts:9061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9061) ##### `position?` @@ -35970,7 +35970,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -35980,9 +35980,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9060](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9060) +Defined in: [libs/jast/jast/src/lib/jats.ts:9060](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9060) -*** +--- ### `ResourceGroupChildrenMap` @@ -35992,15 +35992,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9060](https://github.com/TrialAndEr > [`ResourceName`](modules.md#resourcename)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9071) +Defined in: [libs/jast/jast/src/lib/jats.ts:9071](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9071) ##### `resourceWrap` > [`ResourceWrap`](modules.md#resourcewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9073](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9073) +Defined in: [libs/jast/jast/src/lib/jats.ts:9073](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9073) -*** +--- ### `ResourceId` @@ -36008,7 +36008,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ResourceId** +- [`Node`](modules.md#node).**ResourceId** #### Properties @@ -36029,22 +36029,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `id`? | `string` | -| `resourceIdtype`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | +| `id`? | `string` | +| `resourceIdtype`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9079](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9079) +Defined in: [libs/jast/jast/src/lib/jats.ts:9079](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9079) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9088) +Defined in: [libs/jast/jast/src/lib/jats.ts:9088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9088) ##### `data?` @@ -36054,13 +36054,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"resourceId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9078) +Defined in: [libs/jast/jast/src/lib/jats.ts:9078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9078) ##### `position?` @@ -36071,7 +36071,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -36081,9 +36081,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9077) +Defined in: [libs/jast/jast/src/lib/jats.ts:9077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9077) -*** +--- ### `ResourceIdChildrenMap` @@ -36093,9 +36093,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9077](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9092) +Defined in: [libs/jast/jast/src/lib/jats.ts:9092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9092) -*** +--- ### `ResourceName` @@ -36103,7 +36103,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ResourceName** +- [`Node`](modules.md#node).**ResourceName** #### Properties @@ -36121,19 +36121,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `hreflang`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9098) +Defined in: [libs/jast/jast/src/lib/jats.ts:9098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9098) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ResourceNameChildrenMap`](modules.md#resourcenamechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9104) +Defined in: [libs/jast/jast/src/lib/jats.ts:9104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9104) ##### `data?` @@ -36143,13 +36143,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"resourceName"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9097](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9097) +Defined in: [libs/jast/jast/src/lib/jats.ts:9097](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9097) ##### `position?` @@ -36160,7 +36160,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -36170,9 +36170,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9096) +Defined in: [libs/jast/jast/src/lib/jats.ts:9096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9096) -*** +--- ### `ResourceNameChildrenMap` @@ -36182,81 +36182,81 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9096](https://github.com/TrialAndEr > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9110) +Defined in: [libs/jast/jast/src/lib/jats.ts:9110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9110) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9112](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9112) +Defined in: [libs/jast/jast/src/lib/jats.ts:9112](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9112) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9114) +Defined in: [libs/jast/jast/src/lib/jats.ts:9114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9114) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9116) +Defined in: [libs/jast/jast/src/lib/jats.ts:9116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9116) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9118) +Defined in: [libs/jast/jast/src/lib/jats.ts:9118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9118) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9120) +Defined in: [libs/jast/jast/src/lib/jats.ts:9120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9120) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9122) +Defined in: [libs/jast/jast/src/lib/jats.ts:9122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9122) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9124](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9124) +Defined in: [libs/jast/jast/src/lib/jats.ts:9124](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9124) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9126) +Defined in: [libs/jast/jast/src/lib/jats.ts:9126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9126) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9128) +Defined in: [libs/jast/jast/src/lib/jats.ts:9128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9128) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9130) +Defined in: [libs/jast/jast/src/lib/jats.ts:9130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9130) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9108) +Defined in: [libs/jast/jast/src/lib/jats.ts:9108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9108) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9132) +Defined in: [libs/jast/jast/src/lib/jats.ts:9132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9132) -*** +--- ### `ResourceWrap` @@ -36264,7 +36264,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**ResourceWrap** +- [`Node`](modules.md#node).**ResourceWrap** #### Properties @@ -36280,17 +36280,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9138) +Defined in: [libs/jast/jast/src/lib/jats.ts:9138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9138) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ResourceWrapChildrenMap`](modules.md#resourcewrapchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9142) +Defined in: [libs/jast/jast/src/lib/jats.ts:9142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9142) ##### `data?` @@ -36300,13 +36300,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"resourceWrap"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9137) +Defined in: [libs/jast/jast/src/lib/jats.ts:9137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9137) ##### `position?` @@ -36317,7 +36317,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -36327,9 +36327,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9136) +Defined in: [libs/jast/jast/src/lib/jats.ts:9136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9136) -*** +--- ### `ResourceWrapChildrenMap` @@ -36339,15 +36339,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9136](https://github.com/TrialAndEr > [`ResourceId`](modules.md#resourceid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9146) +Defined in: [libs/jast/jast/src/lib/jats.ts:9146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9146) ##### `resourceName` > [`ResourceName`](modules.md#resourcename) -Defined in: [libs/jast/jast/src/lib/jats.ts:9148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9148) +Defined in: [libs/jast/jast/src/lib/jats.ts:9148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9148) -*** +--- ### `Response` @@ -36355,7 +36355,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Response** +- [`Node`](modules.md#node).**Response** #### Properties @@ -36373,19 +36373,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :-------------- | :------- | +| `id`? | `string` | | `responseType`? | `string` | -| `specificUse`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9154) +Defined in: [libs/jast/jast/src/lib/jats.ts:9154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9154) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ResponseChildrenMap`](modules.md#responsechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9160) +Defined in: [libs/jast/jast/src/lib/jats.ts:9160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9160) ##### `data?` @@ -36395,13 +36395,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"response"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9153) +Defined in: [libs/jast/jast/src/lib/jats.ts:9153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9153) ##### `position?` @@ -36412,7 +36412,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -36422,9 +36422,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9152) +Defined in: [libs/jast/jast/src/lib/jats.ts:9152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9152) -*** +--- ### `ResponseChildrenMap` @@ -36434,39 +36434,39 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9152](https://github.com/TrialAndEr > [`Back`](modules.md#back) -Defined in: [libs/jast/jast/src/lib/jats.ts:9164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9164) +Defined in: [libs/jast/jast/src/lib/jats.ts:9164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9164) ##### `body?` > [`Body`](modules.md#body) -Defined in: [libs/jast/jast/src/lib/jats.ts:9166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9166) +Defined in: [libs/jast/jast/src/lib/jats.ts:9166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9166) ##### `floatsGroup?` > [`FloatsGroup`](modules.md#floatsgroup) -Defined in: [libs/jast/jast/src/lib/jats.ts:9168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9168) +Defined in: [libs/jast/jast/src/lib/jats.ts:9168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9168) ##### `front` > [`Front`](modules.md#front) -Defined in: [libs/jast/jast/src/lib/jats.ts:9170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9170) +Defined in: [libs/jast/jast/src/lib/jats.ts:9170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9170) ##### `frontStub` > [`FrontStub`](modules.md#frontstub) -Defined in: [libs/jast/jast/src/lib/jats.ts:9172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9172) +Defined in: [libs/jast/jast/src/lib/jats.ts:9172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9172) ##### `processingMeta?` > [`ProcessingMeta`](modules.md#processingmeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:9174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9174) +Defined in: [libs/jast/jast/src/lib/jats.ts:9174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9174) -*** +--- ### `RestrictedBy` @@ -36474,7 +36474,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**RestrictedBy** +- [`Node`](modules.md#node).**RestrictedBy** #### Properties @@ -36497,24 +36497,24 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `designator`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `assigningAuthority`? | `string` | +| `designator`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9180) +Defined in: [libs/jast/jast/src/lib/jats.ts:9180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9180) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:9190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9190) +Defined in: [libs/jast/jast/src/lib/jats.ts:9190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9190) ##### `data?` @@ -36524,13 +36524,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"restrictedBy"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9179](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9179) +Defined in: [libs/jast/jast/src/lib/jats.ts:9179](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9179) ##### `position?` @@ -36541,7 +36541,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -36551,9 +36551,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9178) +Defined in: [libs/jast/jast/src/lib/jats.ts:9178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9178) -*** +--- ### `Role` @@ -36561,7 +36561,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Role** +- [`Node`](modules.md#node).**Role** #### Properties @@ -36584,24 +36584,24 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `degreeContribution`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `assigningAuthority`? | `string` | +| `degreeContribution`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9196) +Defined in: [libs/jast/jast/src/lib/jats.ts:9196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9196) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`RoleChildrenMap`](modules.md#rolechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9207](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9207) +Defined in: [libs/jast/jast/src/lib/jats.ts:9207](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9207) ##### `data?` @@ -36611,13 +36611,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"role"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9195) +Defined in: [libs/jast/jast/src/lib/jats.ts:9195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9195) ##### `position?` @@ -36628,7 +36628,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -36638,9 +36638,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9194) +Defined in: [libs/jast/jast/src/lib/jats.ts:9194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9194) -*** +--- ### `RoleChildrenMap` @@ -36650,15 +36650,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9194](https://github.com/TrialAndEr > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9213) +Defined in: [libs/jast/jast/src/lib/jats.ts:9213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9213) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9211) +Defined in: [libs/jast/jast/src/lib/jats.ts:9211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9211) -*** +--- ### `Roman` @@ -36666,7 +36666,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Roman** +- [`Node`](modules.md#node).**Roman** #### Properties @@ -36684,19 +36684,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `specificUse`? | `string` | -| `toggle`? | `RomanTypeToggle` | +| Member | Type | +| :------------- | :---------------- | +| `id`? | `string` | +| `specificUse`? | `string` | +| `toggle`? | `RomanTypeToggle` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9219](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9219) +Defined in: [libs/jast/jast/src/lib/jats.ts:9219](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9219) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`RomanChildrenMap`](modules.md#romanchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9225) +Defined in: [libs/jast/jast/src/lib/jats.ts:9225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9225) ##### `data?` @@ -36706,13 +36706,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"roman"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9218) +Defined in: [libs/jast/jast/src/lib/jats.ts:9218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9218) ##### `position?` @@ -36723,7 +36723,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -36733,9 +36733,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9217](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9217) +Defined in: [libs/jast/jast/src/lib/jats.ts:9217](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9217) -*** +--- ### `RomanChildrenMap` @@ -36745,225 +36745,225 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9217](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9229) +Defined in: [libs/jast/jast/src/lib/jats.ts:9229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9229) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9231) +Defined in: [libs/jast/jast/src/lib/jats.ts:9231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9231) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9233) +Defined in: [libs/jast/jast/src/lib/jats.ts:9233](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9233) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9235) +Defined in: [libs/jast/jast/src/lib/jats.ts:9235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9235) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9237) +Defined in: [libs/jast/jast/src/lib/jats.ts:9237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9237) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9239) +Defined in: [libs/jast/jast/src/lib/jats.ts:9239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9239) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9241) +Defined in: [libs/jast/jast/src/lib/jats.ts:9241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9241) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9243) +Defined in: [libs/jast/jast/src/lib/jats.ts:9243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9243) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9245) +Defined in: [libs/jast/jast/src/lib/jats.ts:9245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9245) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9247) +Defined in: [libs/jast/jast/src/lib/jats.ts:9247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9247) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9249) +Defined in: [libs/jast/jast/src/lib/jats.ts:9249](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9249) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9251) +Defined in: [libs/jast/jast/src/lib/jats.ts:9251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9251) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9253) +Defined in: [libs/jast/jast/src/lib/jats.ts:9253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9253) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9255) +Defined in: [libs/jast/jast/src/lib/jats.ts:9255](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9255) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9257) +Defined in: [libs/jast/jast/src/lib/jats.ts:9257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9257) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9259) +Defined in: [libs/jast/jast/src/lib/jats.ts:9259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9259) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9261) +Defined in: [libs/jast/jast/src/lib/jats.ts:9261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9261) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9263) +Defined in: [libs/jast/jast/src/lib/jats.ts:9263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9263) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9265) +Defined in: [libs/jast/jast/src/lib/jats.ts:9265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9265) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9267](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9267) +Defined in: [libs/jast/jast/src/lib/jats.ts:9267](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9267) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9269) +Defined in: [libs/jast/jast/src/lib/jats.ts:9269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9269) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9271) +Defined in: [libs/jast/jast/src/lib/jats.ts:9271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9271) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9273](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9273) +Defined in: [libs/jast/jast/src/lib/jats.ts:9273](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9273) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9275) +Defined in: [libs/jast/jast/src/lib/jats.ts:9275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9275) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9277) +Defined in: [libs/jast/jast/src/lib/jats.ts:9277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9277) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9279](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9279) +Defined in: [libs/jast/jast/src/lib/jats.ts:9279](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9279) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9281](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9281) +Defined in: [libs/jast/jast/src/lib/jats.ts:9281](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9281) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9283) +Defined in: [libs/jast/jast/src/lib/jats.ts:9283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9283) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9285](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9285) +Defined in: [libs/jast/jast/src/lib/jats.ts:9285](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9285) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9287) +Defined in: [libs/jast/jast/src/lib/jats.ts:9287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9287) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9289](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9289) +Defined in: [libs/jast/jast/src/lib/jats.ts:9289](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9289) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9291](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9291) +Defined in: [libs/jast/jast/src/lib/jats.ts:9291](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9291) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9293](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9293) +Defined in: [libs/jast/jast/src/lib/jats.ts:9293](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9293) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9295) +Defined in: [libs/jast/jast/src/lib/jats.ts:9295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9295) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9297](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9297) +Defined in: [libs/jast/jast/src/lib/jats.ts:9297](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9297) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9299) +Defined in: [libs/jast/jast/src/lib/jats.ts:9299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9299) -*** +--- ### `Root` #### Hierarchy -* `Parent`.**Root** +- `Parent`.**Root** #### Properties @@ -36973,7 +36973,7 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9299](https://github.com/TrialAndEr Overrides: UnistParent.children -Defined in: [libs/jast/jast/src/lib/rejour.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L20) +Defined in: [libs/jast/jast/src/lib/rejour.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L20) ##### `data?` @@ -36983,7 +36983,7 @@ Information from the ecosystem. Inherited from: UnistParent.data -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `position?` @@ -36994,7 +36994,7 @@ Must not be present if a node is generated. Inherited from: UnistParent.position -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -37002,9 +37002,9 @@ Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/ Overrides: UnistParent.type -Defined in: [libs/jast/jast/src/lib/rejour.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L19) +Defined in: [libs/jast/jast/src/lib/rejour.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L19) -*** +--- ### `Rp` @@ -37012,7 +37012,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Rp** +- [`Node`](modules.md#node).**Rp** #### Properties @@ -37028,17 +37028,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9307) +Defined in: [libs/jast/jast/src/lib/jats.ts:9307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9307) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:9310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9310) +Defined in: [libs/jast/jast/src/lib/jats.ts:9310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9310) ##### `data?` @@ -37048,13 +37048,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"rp"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9306) +Defined in: [libs/jast/jast/src/lib/jats.ts:9306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9306) ##### `position?` @@ -37065,7 +37065,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -37075,9 +37075,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9305) +Defined in: [libs/jast/jast/src/lib/jats.ts:9305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9305) -*** +--- ### `Rt` @@ -37085,7 +37085,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Rt** +- [`Node`](modules.md#node).**Rt** #### Properties @@ -37102,18 +37102,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9316) +Defined in: [libs/jast/jast/src/lib/jats.ts:9316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9316) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9321) +Defined in: [libs/jast/jast/src/lib/jats.ts:9321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9321) ##### `data?` @@ -37123,13 +37123,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"rt"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9315) +Defined in: [libs/jast/jast/src/lib/jats.ts:9315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9315) ##### `position?` @@ -37140,7 +37140,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -37150,9 +37150,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9314) +Defined in: [libs/jast/jast/src/lib/jats.ts:9314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9314) -*** +--- ### `RtChildrenMap` @@ -37162,9 +37162,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9314](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9325) +Defined in: [libs/jast/jast/src/lib/jats.ts:9325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9325) -*** +--- ### `Ruby` @@ -37172,7 +37172,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Ruby** +- [`Node`](modules.md#node).**Ruby** #### Properties @@ -37189,18 +37189,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9331) +Defined in: [libs/jast/jast/src/lib/jats.ts:9331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9331) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`RubyChildrenMap`](modules.md#rubychildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9336) +Defined in: [libs/jast/jast/src/lib/jats.ts:9336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9336) ##### `data?` @@ -37210,13 +37210,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"ruby"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9330) +Defined in: [libs/jast/jast/src/lib/jats.ts:9330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9330) ##### `position?` @@ -37227,7 +37227,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -37237,9 +37237,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9329) +Defined in: [libs/jast/jast/src/lib/jats.ts:9329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9329) -*** +--- ### `RubyChildrenMap` @@ -37249,21 +37249,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9329](https://github.com/TrialAndEr > [`Rb`](modules.md#rb) -Defined in: [libs/jast/jast/src/lib/jats.ts:9342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9342) +Defined in: [libs/jast/jast/src/lib/jats.ts:9342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9342) ##### `rt` > [`Rt`](modules.md#rt) -Defined in: [libs/jast/jast/src/lib/jats.ts:9344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9344) +Defined in: [libs/jast/jast/src/lib/jats.ts:9344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9344) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9340) +Defined in: [libs/jast/jast/src/lib/jats.ts:9340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9340) -*** +--- ### `SansSerif` @@ -37271,7 +37271,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SansSerif** +- [`Node`](modules.md#node).**SansSerif** #### Properties @@ -37289,19 +37289,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `specificUse`? | `string` | -| `toggle`? | `SansSerifTypeToggle` | +| Member | Type | +| :------------- | :-------------------- | +| `id`? | `string` | +| `specificUse`? | `string` | +| `toggle`? | `SansSerifTypeToggle` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9350) +Defined in: [libs/jast/jast/src/lib/jats.ts:9350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9350) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SansSerifChildrenMap`](modules.md#sansserifchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9356) +Defined in: [libs/jast/jast/src/lib/jats.ts:9356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9356) ##### `data?` @@ -37311,13 +37311,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"sansSerif"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9349) +Defined in: [libs/jast/jast/src/lib/jats.ts:9349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9349) ##### `position?` @@ -37328,7 +37328,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -37338,9 +37338,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9348) +Defined in: [libs/jast/jast/src/lib/jats.ts:9348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9348) -*** +--- ### `SansSerifChildrenMap` @@ -37350,219 +37350,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9348](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9360) +Defined in: [libs/jast/jast/src/lib/jats.ts:9360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9360) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9362) +Defined in: [libs/jast/jast/src/lib/jats.ts:9362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9362) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9364) +Defined in: [libs/jast/jast/src/lib/jats.ts:9364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9364) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9366) +Defined in: [libs/jast/jast/src/lib/jats.ts:9366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9366) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9368) +Defined in: [libs/jast/jast/src/lib/jats.ts:9368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9368) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9370) +Defined in: [libs/jast/jast/src/lib/jats.ts:9370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9370) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9372) +Defined in: [libs/jast/jast/src/lib/jats.ts:9372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9372) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9374) +Defined in: [libs/jast/jast/src/lib/jats.ts:9374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9374) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9376](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9376) +Defined in: [libs/jast/jast/src/lib/jats.ts:9376](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9376) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9378](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9378) +Defined in: [libs/jast/jast/src/lib/jats.ts:9378](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9378) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9380) +Defined in: [libs/jast/jast/src/lib/jats.ts:9380](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9380) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9382](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9382) +Defined in: [libs/jast/jast/src/lib/jats.ts:9382](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9382) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9384) +Defined in: [libs/jast/jast/src/lib/jats.ts:9384](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9384) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9386) +Defined in: [libs/jast/jast/src/lib/jats.ts:9386](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9386) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9388) +Defined in: [libs/jast/jast/src/lib/jats.ts:9388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9388) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9390) +Defined in: [libs/jast/jast/src/lib/jats.ts:9390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9390) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9392) +Defined in: [libs/jast/jast/src/lib/jats.ts:9392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9392) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9394) +Defined in: [libs/jast/jast/src/lib/jats.ts:9394](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9394) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9396) +Defined in: [libs/jast/jast/src/lib/jats.ts:9396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9396) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9398) +Defined in: [libs/jast/jast/src/lib/jats.ts:9398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9398) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9400) +Defined in: [libs/jast/jast/src/lib/jats.ts:9400](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9400) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9402) +Defined in: [libs/jast/jast/src/lib/jats.ts:9402](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9402) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9404) +Defined in: [libs/jast/jast/src/lib/jats.ts:9404](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9404) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9406) +Defined in: [libs/jast/jast/src/lib/jats.ts:9406](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9406) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9408) +Defined in: [libs/jast/jast/src/lib/jats.ts:9408](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9408) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9410) +Defined in: [libs/jast/jast/src/lib/jats.ts:9410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9410) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9412) +Defined in: [libs/jast/jast/src/lib/jats.ts:9412](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9412) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9414](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9414) +Defined in: [libs/jast/jast/src/lib/jats.ts:9414](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9414) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9416) +Defined in: [libs/jast/jast/src/lib/jats.ts:9416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9416) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9418](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9418) +Defined in: [libs/jast/jast/src/lib/jats.ts:9418](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9418) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9420) +Defined in: [libs/jast/jast/src/lib/jats.ts:9420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9420) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9422](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9422) +Defined in: [libs/jast/jast/src/lib/jats.ts:9422](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9422) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9424](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9424) +Defined in: [libs/jast/jast/src/lib/jats.ts:9424](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9424) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9426) +Defined in: [libs/jast/jast/src/lib/jats.ts:9426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9426) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9428) +Defined in: [libs/jast/jast/src/lib/jats.ts:9428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9428) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9430) +Defined in: [libs/jast/jast/src/lib/jats.ts:9430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9430) -*** +--- ### `Sc` @@ -37570,7 +37570,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Sc** +- [`Node`](modules.md#node).**Sc** #### Properties @@ -37588,19 +37588,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `specificUse`? | `string` | -| `toggle`? | `ScTypeToggle` | +| Member | Type | +| :------------- | :------------- | +| `id`? | `string` | +| `specificUse`? | `string` | +| `toggle`? | `ScTypeToggle` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9438](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9438) +Defined in: [libs/jast/jast/src/lib/jats.ts:9438](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9438) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ScChildrenMap`](modules.md#scchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9444) +Defined in: [libs/jast/jast/src/lib/jats.ts:9444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9444) ##### `data?` @@ -37610,13 +37610,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"sc"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9437) +Defined in: [libs/jast/jast/src/lib/jats.ts:9437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9437) ##### `position?` @@ -37627,7 +37627,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -37637,9 +37637,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9436) +Defined in: [libs/jast/jast/src/lib/jats.ts:9436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9436) -*** +--- ### `ScChildrenMap` @@ -37649,219 +37649,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9436](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9448) +Defined in: [libs/jast/jast/src/lib/jats.ts:9448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9448) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9450) +Defined in: [libs/jast/jast/src/lib/jats.ts:9450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9450) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9452) +Defined in: [libs/jast/jast/src/lib/jats.ts:9452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9452) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9454) +Defined in: [libs/jast/jast/src/lib/jats.ts:9454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9454) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9456) +Defined in: [libs/jast/jast/src/lib/jats.ts:9456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9456) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9458) +Defined in: [libs/jast/jast/src/lib/jats.ts:9458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9458) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9460) +Defined in: [libs/jast/jast/src/lib/jats.ts:9460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9460) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9462) +Defined in: [libs/jast/jast/src/lib/jats.ts:9462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9462) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9464) +Defined in: [libs/jast/jast/src/lib/jats.ts:9464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9464) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9466) +Defined in: [libs/jast/jast/src/lib/jats.ts:9466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9466) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9468) +Defined in: [libs/jast/jast/src/lib/jats.ts:9468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9468) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9470) +Defined in: [libs/jast/jast/src/lib/jats.ts:9470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9470) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9472) +Defined in: [libs/jast/jast/src/lib/jats.ts:9472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9472) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9474) +Defined in: [libs/jast/jast/src/lib/jats.ts:9474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9474) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9476) +Defined in: [libs/jast/jast/src/lib/jats.ts:9476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9476) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9478) +Defined in: [libs/jast/jast/src/lib/jats.ts:9478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9478) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9480) +Defined in: [libs/jast/jast/src/lib/jats.ts:9480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9480) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9482) +Defined in: [libs/jast/jast/src/lib/jats.ts:9482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9482) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9484) +Defined in: [libs/jast/jast/src/lib/jats.ts:9484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9484) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9486) +Defined in: [libs/jast/jast/src/lib/jats.ts:9486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9486) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9488) +Defined in: [libs/jast/jast/src/lib/jats.ts:9488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9488) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9490](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9490) +Defined in: [libs/jast/jast/src/lib/jats.ts:9490](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9490) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9492) +Defined in: [libs/jast/jast/src/lib/jats.ts:9492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9492) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9494) +Defined in: [libs/jast/jast/src/lib/jats.ts:9494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9494) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9496) +Defined in: [libs/jast/jast/src/lib/jats.ts:9496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9496) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9498) +Defined in: [libs/jast/jast/src/lib/jats.ts:9498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9498) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9500) +Defined in: [libs/jast/jast/src/lib/jats.ts:9500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9500) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9502](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9502) +Defined in: [libs/jast/jast/src/lib/jats.ts:9502](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9502) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9504) +Defined in: [libs/jast/jast/src/lib/jats.ts:9504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9504) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9506) +Defined in: [libs/jast/jast/src/lib/jats.ts:9506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9506) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9508) +Defined in: [libs/jast/jast/src/lib/jats.ts:9508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9508) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9510](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9510) +Defined in: [libs/jast/jast/src/lib/jats.ts:9510](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9510) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9512) +Defined in: [libs/jast/jast/src/lib/jats.ts:9512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9512) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9514) +Defined in: [libs/jast/jast/src/lib/jats.ts:9514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9514) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9516) +Defined in: [libs/jast/jast/src/lib/jats.ts:9516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9516) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9518) +Defined in: [libs/jast/jast/src/lib/jats.ts:9518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9518) -*** +--- ### `Season` @@ -37869,7 +37869,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Season** +- [`Node`](modules.md#node).**Season** #### Properties @@ -37886,18 +37886,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9526) +Defined in: [libs/jast/jast/src/lib/jats.ts:9526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9526) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9531) +Defined in: [libs/jast/jast/src/lib/jats.ts:9531](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9531) ##### `data?` @@ -37907,13 +37907,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"season"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9525](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9525) +Defined in: [libs/jast/jast/src/lib/jats.ts:9525](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9525) ##### `position?` @@ -37924,7 +37924,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -37934,9 +37934,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9524) +Defined in: [libs/jast/jast/src/lib/jats.ts:9524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9524) -*** +--- ### `SeasonChildrenMap` @@ -37946,9 +37946,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9524](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9535) +Defined in: [libs/jast/jast/src/lib/jats.ts:9535](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9535) -*** +--- ### `Sec` @@ -37956,7 +37956,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Sec** +- [`Node`](modules.md#node).**Sec** #### Properties @@ -37974,19 +37974,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `secType`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `secType`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9564](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9564) +Defined in: [libs/jast/jast/src/lib/jats.ts:9564](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9564) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SecChildrenMap`](modules.md#secchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9570](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9570) +Defined in: [libs/jast/jast/src/lib/jats.ts:9570](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9570) ##### `data?` @@ -37996,13 +37996,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"sec"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9563) +Defined in: [libs/jast/jast/src/lib/jats.ts:9563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9563) ##### `position?` @@ -38013,7 +38013,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -38023,9 +38023,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9562) +Defined in: [libs/jast/jast/src/lib/jats.ts:9562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9562) -*** +--- ### `SecChildrenMap` @@ -38035,243 +38035,243 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9562](https://github.com/TrialAndEr > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9574](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9574) +Defined in: [libs/jast/jast/src/lib/jats.ts:9574](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9574) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9576) +Defined in: [libs/jast/jast/src/lib/jats.ts:9576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9576) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9578](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9578) +Defined in: [libs/jast/jast/src/lib/jats.ts:9578](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9578) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9580](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9580) +Defined in: [libs/jast/jast/src/lib/jats.ts:9580](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9580) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9582) +Defined in: [libs/jast/jast/src/lib/jats.ts:9582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9582) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9584) +Defined in: [libs/jast/jast/src/lib/jats.ts:9584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9584) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9586) +Defined in: [libs/jast/jast/src/lib/jats.ts:9586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9586) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9588) +Defined in: [libs/jast/jast/src/lib/jats.ts:9588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9588) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9590) +Defined in: [libs/jast/jast/src/lib/jats.ts:9590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9590) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9592) +Defined in: [libs/jast/jast/src/lib/jats.ts:9592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9592) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9594) +Defined in: [libs/jast/jast/src/lib/jats.ts:9594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9594) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9596) +Defined in: [libs/jast/jast/src/lib/jats.ts:9596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9596) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9598) +Defined in: [libs/jast/jast/src/lib/jats.ts:9598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9598) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9600) +Defined in: [libs/jast/jast/src/lib/jats.ts:9600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9600) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9602) +Defined in: [libs/jast/jast/src/lib/jats.ts:9602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9602) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9604) +Defined in: [libs/jast/jast/src/lib/jats.ts:9604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9604) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9606) +Defined in: [libs/jast/jast/src/lib/jats.ts:9606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9606) ##### `glossary?` > [`Glossary`](modules.md#glossary)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9608) +Defined in: [libs/jast/jast/src/lib/jats.ts:9608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9608) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9610) +Defined in: [libs/jast/jast/src/lib/jats.ts:9610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9610) ##### `label` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:9612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9612) +Defined in: [libs/jast/jast/src/lib/jats.ts:9612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9612) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9614](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9614) +Defined in: [libs/jast/jast/src/lib/jats.ts:9614](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9614) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9616) +Defined in: [libs/jast/jast/src/lib/jats.ts:9616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9616) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9618) +Defined in: [libs/jast/jast/src/lib/jats.ts:9618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9618) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9620) +Defined in: [libs/jast/jast/src/lib/jats.ts:9620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9620) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9622) +Defined in: [libs/jast/jast/src/lib/jats.ts:9622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9622) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9624) +Defined in: [libs/jast/jast/src/lib/jats.ts:9624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9624) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9626) +Defined in: [libs/jast/jast/src/lib/jats.ts:9626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9626) ##### `refList?` > [`RefList`](modules.md#reflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9628) +Defined in: [libs/jast/jast/src/lib/jats.ts:9628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9628) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9630) +Defined in: [libs/jast/jast/src/lib/jats.ts:9630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9630) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9632) +Defined in: [libs/jast/jast/src/lib/jats.ts:9632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9632) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9634) +Defined in: [libs/jast/jast/src/lib/jats.ts:9634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9634) ##### `secMeta?` > [`SecMeta`](modules.md#secmeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:9636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9636) +Defined in: [libs/jast/jast/src/lib/jats.ts:9636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9636) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9638) +Defined in: [libs/jast/jast/src/lib/jats.ts:9638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9638) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9640) +Defined in: [libs/jast/jast/src/lib/jats.ts:9640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9640) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9642) +Defined in: [libs/jast/jast/src/lib/jats.ts:9642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9642) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9644) +Defined in: [libs/jast/jast/src/lib/jats.ts:9644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9644) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9646) +Defined in: [libs/jast/jast/src/lib/jats.ts:9646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9646) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9648) +Defined in: [libs/jast/jast/src/lib/jats.ts:9648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9648) ##### `title` > [`Title`](modules.md#title)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9650) +Defined in: [libs/jast/jast/src/lib/jats.ts:9650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9650) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9652) +Defined in: [libs/jast/jast/src/lib/jats.ts:9652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9652) -*** +--- ### `SecMeta` @@ -38279,7 +38279,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SecMeta** +- [`Node`](modules.md#node).**SecMeta** #### Properties @@ -38295,17 +38295,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9541) +Defined in: [libs/jast/jast/src/lib/jats.ts:9541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9541) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SecMetaChildrenMap`](modules.md#secmetachildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9545) +Defined in: [libs/jast/jast/src/lib/jats.ts:9545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9545) ##### `data?` @@ -38315,13 +38315,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"secMeta"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9540) +Defined in: [libs/jast/jast/src/lib/jats.ts:9540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9540) ##### `position?` @@ -38332,7 +38332,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -38342,9 +38342,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9539) +Defined in: [libs/jast/jast/src/lib/jats.ts:9539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9539) -*** +--- ### `SecMetaChildrenMap` @@ -38354,39 +38354,39 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9539](https://github.com/TrialAndEr > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9549) +Defined in: [libs/jast/jast/src/lib/jats.ts:9549](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9549) ##### `contribGroup?` > [`ContribGroup`](modules.md#contribgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9551) +Defined in: [libs/jast/jast/src/lib/jats.ts:9551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9551) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9553) +Defined in: [libs/jast/jast/src/lib/jats.ts:9553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9553) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9555) +Defined in: [libs/jast/jast/src/lib/jats.ts:9555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9555) ##### `permissions?` > [`Permissions`](modules.md#permissions) -Defined in: [libs/jast/jast/src/lib/jats.ts:9557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9557) +Defined in: [libs/jast/jast/src/lib/jats.ts:9557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9557) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9558) +Defined in: [libs/jast/jast/src/lib/jats.ts:9558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9558) -*** +--- ### `See` @@ -38394,7 +38394,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**See** +- [`Node`](modules.md#node).**See** #### Properties @@ -38412,19 +38412,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9764) +Defined in: [libs/jast/jast/src/lib/jats.ts:9764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9764) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SeeChildrenMap`](modules.md#seechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9770) +Defined in: [libs/jast/jast/src/lib/jats.ts:9770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9770) ##### `data?` @@ -38434,13 +38434,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"see"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9763) +Defined in: [libs/jast/jast/src/lib/jats.ts:9763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9763) ##### `position?` @@ -38451,7 +38451,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -38461,9 +38461,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9762) +Defined in: [libs/jast/jast/src/lib/jats.ts:9762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9762) -*** +--- ### `SeeAlso` @@ -38471,7 +38471,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SeeAlso** +- [`Node`](modules.md#node).**SeeAlso** #### Properties @@ -38493,23 +38493,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `id`? | `string` | +| `rid`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9658) +Defined in: [libs/jast/jast/src/lib/jats.ts:9658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9658) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SeeAlsoChildrenMap`](modules.md#seealsochildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9668) +Defined in: [libs/jast/jast/src/lib/jats.ts:9668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9668) ##### `data?` @@ -38519,13 +38519,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"seeAlso"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9657) +Defined in: [libs/jast/jast/src/lib/jats.ts:9657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9657) ##### `position?` @@ -38536,7 +38536,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -38546,9 +38546,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9656) +Defined in: [libs/jast/jast/src/lib/jats.ts:9656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9656) -*** +--- ### `SeeAlsoChildrenMap` @@ -38558,267 +38558,267 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9656](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9674) +Defined in: [libs/jast/jast/src/lib/jats.ts:9674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9674) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9676) +Defined in: [libs/jast/jast/src/lib/jats.ts:9676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9676) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9678) +Defined in: [libs/jast/jast/src/lib/jats.ts:9678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9678) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9680) +Defined in: [libs/jast/jast/src/lib/jats.ts:9680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9680) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9682) +Defined in: [libs/jast/jast/src/lib/jats.ts:9682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9682) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9684) +Defined in: [libs/jast/jast/src/lib/jats.ts:9684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9684) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9686) +Defined in: [libs/jast/jast/src/lib/jats.ts:9686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9686) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9688) +Defined in: [libs/jast/jast/src/lib/jats.ts:9688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9688) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9690) +Defined in: [libs/jast/jast/src/lib/jats.ts:9690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9690) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9692) +Defined in: [libs/jast/jast/src/lib/jats.ts:9692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9692) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9694) +Defined in: [libs/jast/jast/src/lib/jats.ts:9694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9694) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9696) +Defined in: [libs/jast/jast/src/lib/jats.ts:9696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9696) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9698) +Defined in: [libs/jast/jast/src/lib/jats.ts:9698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9698) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9700) +Defined in: [libs/jast/jast/src/lib/jats.ts:9700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9700) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9702) +Defined in: [libs/jast/jast/src/lib/jats.ts:9702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9702) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9704) +Defined in: [libs/jast/jast/src/lib/jats.ts:9704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9704) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9706) +Defined in: [libs/jast/jast/src/lib/jats.ts:9706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9706) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9708) +Defined in: [libs/jast/jast/src/lib/jats.ts:9708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9708) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9710) +Defined in: [libs/jast/jast/src/lib/jats.ts:9710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9710) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9712) +Defined in: [libs/jast/jast/src/lib/jats.ts:9712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9712) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9714) +Defined in: [libs/jast/jast/src/lib/jats.ts:9714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9714) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9716) +Defined in: [libs/jast/jast/src/lib/jats.ts:9716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9716) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9718) +Defined in: [libs/jast/jast/src/lib/jats.ts:9718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9718) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9720) +Defined in: [libs/jast/jast/src/lib/jats.ts:9720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9720) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9722) +Defined in: [libs/jast/jast/src/lib/jats.ts:9722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9722) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9724) +Defined in: [libs/jast/jast/src/lib/jats.ts:9724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9724) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9726) +Defined in: [libs/jast/jast/src/lib/jats.ts:9726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9726) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9728) +Defined in: [libs/jast/jast/src/lib/jats.ts:9728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9728) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9730) +Defined in: [libs/jast/jast/src/lib/jats.ts:9730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9730) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9732) +Defined in: [libs/jast/jast/src/lib/jats.ts:9732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9732) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9734) +Defined in: [libs/jast/jast/src/lib/jats.ts:9734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9734) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9736) +Defined in: [libs/jast/jast/src/lib/jats.ts:9736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9736) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9738) +Defined in: [libs/jast/jast/src/lib/jats.ts:9738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9738) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9740) +Defined in: [libs/jast/jast/src/lib/jats.ts:9740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9740) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9742) +Defined in: [libs/jast/jast/src/lib/jats.ts:9742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9742) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9744) +Defined in: [libs/jast/jast/src/lib/jats.ts:9744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9744) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9746) +Defined in: [libs/jast/jast/src/lib/jats.ts:9746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9746) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9748) +Defined in: [libs/jast/jast/src/lib/jats.ts:9748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9748) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9750) +Defined in: [libs/jast/jast/src/lib/jats.ts:9750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9750) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9752) +Defined in: [libs/jast/jast/src/lib/jats.ts:9752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9752) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9672) +Defined in: [libs/jast/jast/src/lib/jats.ts:9672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9672) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9754) +Defined in: [libs/jast/jast/src/lib/jats.ts:9754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9754) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9756) +Defined in: [libs/jast/jast/src/lib/jats.ts:9756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9756) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9758) +Defined in: [libs/jast/jast/src/lib/jats.ts:9758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9758) -*** +--- ### `SeeChildrenMap` @@ -38828,267 +38828,267 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9758](https://github.com/TrialAndEr > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9776) +Defined in: [libs/jast/jast/src/lib/jats.ts:9776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9776) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9778) +Defined in: [libs/jast/jast/src/lib/jats.ts:9778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9778) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9780) +Defined in: [libs/jast/jast/src/lib/jats.ts:9780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9780) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9782) +Defined in: [libs/jast/jast/src/lib/jats.ts:9782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9782) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9784) +Defined in: [libs/jast/jast/src/lib/jats.ts:9784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9784) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9786) +Defined in: [libs/jast/jast/src/lib/jats.ts:9786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9786) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9788) +Defined in: [libs/jast/jast/src/lib/jats.ts:9788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9788) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9790) +Defined in: [libs/jast/jast/src/lib/jats.ts:9790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9790) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9792) +Defined in: [libs/jast/jast/src/lib/jats.ts:9792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9792) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9794) +Defined in: [libs/jast/jast/src/lib/jats.ts:9794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9794) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9796) +Defined in: [libs/jast/jast/src/lib/jats.ts:9796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9796) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9798) +Defined in: [libs/jast/jast/src/lib/jats.ts:9798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9798) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9800) +Defined in: [libs/jast/jast/src/lib/jats.ts:9800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9800) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9802) +Defined in: [libs/jast/jast/src/lib/jats.ts:9802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9802) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9804) +Defined in: [libs/jast/jast/src/lib/jats.ts:9804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9804) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9806) +Defined in: [libs/jast/jast/src/lib/jats.ts:9806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9806) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9808) +Defined in: [libs/jast/jast/src/lib/jats.ts:9808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9808) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9810) +Defined in: [libs/jast/jast/src/lib/jats.ts:9810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9810) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9812) +Defined in: [libs/jast/jast/src/lib/jats.ts:9812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9812) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9814) +Defined in: [libs/jast/jast/src/lib/jats.ts:9814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9814) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9816) +Defined in: [libs/jast/jast/src/lib/jats.ts:9816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9816) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9818) +Defined in: [libs/jast/jast/src/lib/jats.ts:9818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9818) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9820) +Defined in: [libs/jast/jast/src/lib/jats.ts:9820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9820) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9822) +Defined in: [libs/jast/jast/src/lib/jats.ts:9822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9822) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9824) +Defined in: [libs/jast/jast/src/lib/jats.ts:9824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9824) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9826) +Defined in: [libs/jast/jast/src/lib/jats.ts:9826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9826) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9828) +Defined in: [libs/jast/jast/src/lib/jats.ts:9828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9828) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9830) +Defined in: [libs/jast/jast/src/lib/jats.ts:9830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9830) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9832) +Defined in: [libs/jast/jast/src/lib/jats.ts:9832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9832) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9834) +Defined in: [libs/jast/jast/src/lib/jats.ts:9834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9834) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9836) +Defined in: [libs/jast/jast/src/lib/jats.ts:9836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9836) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9838) +Defined in: [libs/jast/jast/src/lib/jats.ts:9838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9838) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9840) +Defined in: [libs/jast/jast/src/lib/jats.ts:9840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9840) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9842) +Defined in: [libs/jast/jast/src/lib/jats.ts:9842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9842) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9844) +Defined in: [libs/jast/jast/src/lib/jats.ts:9844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9844) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9846) +Defined in: [libs/jast/jast/src/lib/jats.ts:9846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9846) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9848) +Defined in: [libs/jast/jast/src/lib/jats.ts:9848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9848) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9850) +Defined in: [libs/jast/jast/src/lib/jats.ts:9850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9850) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9852) +Defined in: [libs/jast/jast/src/lib/jats.ts:9852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9852) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9854) +Defined in: [libs/jast/jast/src/lib/jats.ts:9854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9854) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9774) +Defined in: [libs/jast/jast/src/lib/jats.ts:9774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9774) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9856) +Defined in: [libs/jast/jast/src/lib/jats.ts:9856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9856) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9858) +Defined in: [libs/jast/jast/src/lib/jats.ts:9858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9858) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9860) +Defined in: [libs/jast/jast/src/lib/jats.ts:9860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9860) -*** +--- ### `SelfUri` @@ -39096,7 +39096,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SelfUri** +- [`Node`](modules.md#node).**SelfUri** #### Properties @@ -39115,20 +39115,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9866) +Defined in: [libs/jast/jast/src/lib/jats.ts:9866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9866) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9873) +Defined in: [libs/jast/jast/src/lib/jats.ts:9873](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9873) ##### `data?` @@ -39138,13 +39138,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"selfUri"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9865) +Defined in: [libs/jast/jast/src/lib/jats.ts:9865](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9865) ##### `position?` @@ -39155,7 +39155,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -39165,9 +39165,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9864) +Defined in: [libs/jast/jast/src/lib/jats.ts:9864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9864) -*** +--- ### `SelfUriChildrenMap` @@ -39177,9 +39177,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9864](https://github.com/TrialAndEr > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9877) +Defined in: [libs/jast/jast/src/lib/jats.ts:9877](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9877) -*** +--- ### `Series` @@ -39187,7 +39187,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Series** +- [`Node`](modules.md#node).**Series** #### Properties @@ -39204,18 +39204,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9917](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9917) +Defined in: [libs/jast/jast/src/lib/jats.ts:9917](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9917) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SeriesChildrenMap`](modules.md#serieschildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9922) +Defined in: [libs/jast/jast/src/lib/jats.ts:9922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9922) ##### `data?` @@ -39225,13 +39225,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"series"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9916) +Defined in: [libs/jast/jast/src/lib/jats.ts:9916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9916) ##### `position?` @@ -39242,7 +39242,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -39252,9 +39252,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9915) +Defined in: [libs/jast/jast/src/lib/jats.ts:9915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9915) -*** +--- ### `SeriesChildrenMap` @@ -39264,15 +39264,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9915](https://github.com/TrialAndEr > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9928) +Defined in: [libs/jast/jast/src/lib/jats.ts:9928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9928) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9926) +Defined in: [libs/jast/jast/src/lib/jats.ts:9926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9926) -*** +--- ### `SeriesText` @@ -39280,7 +39280,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SeriesText** +- [`Node`](modules.md#node).**SeriesText** #### Properties @@ -39297,18 +39297,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9883) +Defined in: [libs/jast/jast/src/lib/jats.ts:9883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9883) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SeriesTextChildrenMap`](modules.md#seriestextchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9888) +Defined in: [libs/jast/jast/src/lib/jats.ts:9888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9888) ##### `data?` @@ -39318,13 +39318,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"seriesText"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9882) +Defined in: [libs/jast/jast/src/lib/jats.ts:9882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9882) ##### `position?` @@ -39335,7 +39335,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -39345,9 +39345,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9881) +Defined in: [libs/jast/jast/src/lib/jats.ts:9881](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9881) -*** +--- ### `SeriesTextChildrenMap` @@ -39357,15 +39357,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9881](https://github.com/TrialAndEr > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9894) +Defined in: [libs/jast/jast/src/lib/jats.ts:9894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9894) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9892) +Defined in: [libs/jast/jast/src/lib/jats.ts:9892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9892) -*** +--- ### `SeriesTitle` @@ -39373,7 +39373,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SeriesTitle** +- [`Node`](modules.md#node).**SeriesTitle** #### Properties @@ -39390,18 +39390,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9900) +Defined in: [libs/jast/jast/src/lib/jats.ts:9900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9900) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SeriesTitleChildrenMap`](modules.md#seriestitlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9905](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9905) +Defined in: [libs/jast/jast/src/lib/jats.ts:9905](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9905) ##### `data?` @@ -39411,13 +39411,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"seriesTitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9899](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9899) +Defined in: [libs/jast/jast/src/lib/jats.ts:9899](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9899) ##### `position?` @@ -39428,7 +39428,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -39438,9 +39438,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9898) +Defined in: [libs/jast/jast/src/lib/jats.ts:9898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9898) -*** +--- ### `SeriesTitleChildrenMap` @@ -39450,15 +39450,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9898](https://github.com/TrialAndEr > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9911](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9911) +Defined in: [libs/jast/jast/src/lib/jats.ts:9911](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9911) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9909](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9909) +Defined in: [libs/jast/jast/src/lib/jats.ts:9909](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9909) -*** +--- ### `Sig` @@ -39466,7 +39466,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Sig** +- [`Node`](modules.md#node).**Sig** #### Properties @@ -39484,19 +39484,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9996) +Defined in: [libs/jast/jast/src/lib/jats.ts:9996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9996) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SigChildrenMap`](modules.md#sigchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10002) +Defined in: [libs/jast/jast/src/lib/jats.ts:10002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10002) ##### `data?` @@ -39506,13 +39506,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"sig"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9995) +Defined in: [libs/jast/jast/src/lib/jats.ts:9995](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9995) ##### `position?` @@ -39523,7 +39523,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -39533,9 +39533,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9994) +Defined in: [libs/jast/jast/src/lib/jats.ts:9994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9994) -*** +--- ### `SigBlock` @@ -39543,7 +39543,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SigBlock** +- [`Node`](modules.md#node).**SigBlock** #### Properties @@ -39561,19 +39561,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:9934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9934) +Defined in: [libs/jast/jast/src/lib/jats.ts:9934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9934) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SigBlockChildrenMap`](modules.md#sigblockchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9940) +Defined in: [libs/jast/jast/src/lib/jats.ts:9940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9940) ##### `data?` @@ -39583,13 +39583,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"sigBlock"` -Defined in: [libs/jast/jast/src/lib/jats.ts:9933](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9933) +Defined in: [libs/jast/jast/src/lib/jats.ts:9933](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9933) ##### `position?` @@ -39600,7 +39600,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -39610,9 +39610,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:9932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9932) +Defined in: [libs/jast/jast/src/lib/jats.ts:9932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9932) -*** +--- ### `SigBlockChildrenMap` @@ -39622,147 +39622,147 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9932](https://github.com/TrialAndEr > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9946) +Defined in: [libs/jast/jast/src/lib/jats.ts:9946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9946) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9948](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9948) +Defined in: [libs/jast/jast/src/lib/jats.ts:9948](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9948) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9950) +Defined in: [libs/jast/jast/src/lib/jats.ts:9950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9950) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9952](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9952) +Defined in: [libs/jast/jast/src/lib/jats.ts:9952](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9952) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9954](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9954) +Defined in: [libs/jast/jast/src/lib/jats.ts:9954](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9954) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9956](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9956) +Defined in: [libs/jast/jast/src/lib/jats.ts:9956](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9956) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9958](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9958) +Defined in: [libs/jast/jast/src/lib/jats.ts:9958](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9958) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9960](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9960) +Defined in: [libs/jast/jast/src/lib/jats.ts:9960](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9960) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9962](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9962) +Defined in: [libs/jast/jast/src/lib/jats.ts:9962](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9962) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9964](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9964) +Defined in: [libs/jast/jast/src/lib/jats.ts:9964](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9964) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9966) +Defined in: [libs/jast/jast/src/lib/jats.ts:9966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9966) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9968](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9968) +Defined in: [libs/jast/jast/src/lib/jats.ts:9968](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9968) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9970](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9970) +Defined in: [libs/jast/jast/src/lib/jats.ts:9970](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9970) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9972](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9972) +Defined in: [libs/jast/jast/src/lib/jats.ts:9972](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9972) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9974](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9974) +Defined in: [libs/jast/jast/src/lib/jats.ts:9974](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9974) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9976](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9976) +Defined in: [libs/jast/jast/src/lib/jats.ts:9976](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9976) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9978](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9978) +Defined in: [libs/jast/jast/src/lib/jats.ts:9978](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9978) ##### `sig?` > [`Sig`](modules.md#sig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9980](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9980) +Defined in: [libs/jast/jast/src/lib/jats.ts:9980](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9980) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9982](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9982) +Defined in: [libs/jast/jast/src/lib/jats.ts:9982](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9982) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9984](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9984) +Defined in: [libs/jast/jast/src/lib/jats.ts:9984](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9984) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9986) +Defined in: [libs/jast/jast/src/lib/jats.ts:9986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9986) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9988) +Defined in: [libs/jast/jast/src/lib/jats.ts:9988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9988) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:9944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9944) +Defined in: [libs/jast/jast/src/lib/jats.ts:9944](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9944) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:9990](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9990) +Defined in: [libs/jast/jast/src/lib/jats.ts:9990](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L9990) -*** +--- ### `SigChildrenMap` @@ -39772,135 +39772,135 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:9990](https://github.com/TrialAndEr > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10008) +Defined in: [libs/jast/jast/src/lib/jats.ts:10008](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10008) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10010) +Defined in: [libs/jast/jast/src/lib/jats.ts:10010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10010) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10012) +Defined in: [libs/jast/jast/src/lib/jats.ts:10012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10012) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10014) +Defined in: [libs/jast/jast/src/lib/jats.ts:10014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10014) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10016) +Defined in: [libs/jast/jast/src/lib/jats.ts:10016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10016) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10018) +Defined in: [libs/jast/jast/src/lib/jats.ts:10018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10018) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10020) +Defined in: [libs/jast/jast/src/lib/jats.ts:10020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10020) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10022) +Defined in: [libs/jast/jast/src/lib/jats.ts:10022](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10022) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10024](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10024) +Defined in: [libs/jast/jast/src/lib/jats.ts:10024](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10024) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10026](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10026) +Defined in: [libs/jast/jast/src/lib/jats.ts:10026](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10026) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10028](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10028) +Defined in: [libs/jast/jast/src/lib/jats.ts:10028](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10028) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10030](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10030) +Defined in: [libs/jast/jast/src/lib/jats.ts:10030](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10030) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10032](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10032) +Defined in: [libs/jast/jast/src/lib/jats.ts:10032](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10032) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10034) +Defined in: [libs/jast/jast/src/lib/jats.ts:10034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10034) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10036](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10036) +Defined in: [libs/jast/jast/src/lib/jats.ts:10036](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10036) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10038](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10038) +Defined in: [libs/jast/jast/src/lib/jats.ts:10038](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10038) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10040](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10040) +Defined in: [libs/jast/jast/src/lib/jats.ts:10040](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10040) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10042](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10042) +Defined in: [libs/jast/jast/src/lib/jats.ts:10042](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10042) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10044) +Defined in: [libs/jast/jast/src/lib/jats.ts:10044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10044) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10046) +Defined in: [libs/jast/jast/src/lib/jats.ts:10046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10046) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10006) +Defined in: [libs/jast/jast/src/lib/jats.ts:10006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10006) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10048) +Defined in: [libs/jast/jast/src/lib/jats.ts:10048](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10048) -*** +--- ### `Size` @@ -39908,7 +39908,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Size** +- [`Node`](modules.md#node).**Size** #### Properties @@ -39926,19 +39926,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -| `units` | `string` | +| `units` | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10054) +Defined in: [libs/jast/jast/src/lib/jats.ts:10054](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10054) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:10059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10059) +Defined in: [libs/jast/jast/src/lib/jats.ts:10059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10059) ##### `data?` @@ -39948,13 +39948,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"size"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10053) +Defined in: [libs/jast/jast/src/lib/jats.ts:10053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10053) ##### `position?` @@ -39965,7 +39965,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -39975,9 +39975,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10052](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10052) +Defined in: [libs/jast/jast/src/lib/jats.ts:10052](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10052) -*** +--- ### `Source` @@ -39985,7 +39985,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Source** +- [`Node`](modules.md#node).**Source** #### Properties @@ -40002,18 +40002,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10065) +Defined in: [libs/jast/jast/src/lib/jats.ts:10065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10065) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SourceChildrenMap`](modules.md#sourcechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10070](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10070) +Defined in: [libs/jast/jast/src/lib/jats.ts:10070](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10070) ##### `data?` @@ -40023,13 +40023,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"source"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10064](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10064) +Defined in: [libs/jast/jast/src/lib/jats.ts:10064](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10064) ##### `position?` @@ -40040,7 +40040,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -40050,9 +40050,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10063) +Defined in: [libs/jast/jast/src/lib/jats.ts:10063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10063) -*** +--- ### `SourceChildrenMap` @@ -40062,183 +40062,183 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10063](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10076) +Defined in: [libs/jast/jast/src/lib/jats.ts:10076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10076) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10078) +Defined in: [libs/jast/jast/src/lib/jats.ts:10078](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10078) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10080](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10080) +Defined in: [libs/jast/jast/src/lib/jats.ts:10080](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10080) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10082) +Defined in: [libs/jast/jast/src/lib/jats.ts:10082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10082) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10084) +Defined in: [libs/jast/jast/src/lib/jats.ts:10084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10084) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10086) +Defined in: [libs/jast/jast/src/lib/jats.ts:10086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10086) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10088) +Defined in: [libs/jast/jast/src/lib/jats.ts:10088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10088) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10090) +Defined in: [libs/jast/jast/src/lib/jats.ts:10090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10090) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10092) +Defined in: [libs/jast/jast/src/lib/jats.ts:10092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10092) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10094) +Defined in: [libs/jast/jast/src/lib/jats.ts:10094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10094) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10096) +Defined in: [libs/jast/jast/src/lib/jats.ts:10096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10096) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10098) +Defined in: [libs/jast/jast/src/lib/jats.ts:10098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10098) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10100) +Defined in: [libs/jast/jast/src/lib/jats.ts:10100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10100) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10102) +Defined in: [libs/jast/jast/src/lib/jats.ts:10102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10102) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10104) +Defined in: [libs/jast/jast/src/lib/jats.ts:10104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10104) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10106) +Defined in: [libs/jast/jast/src/lib/jats.ts:10106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10106) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10108) +Defined in: [libs/jast/jast/src/lib/jats.ts:10108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10108) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10110) +Defined in: [libs/jast/jast/src/lib/jats.ts:10110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10110) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10112](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10112) +Defined in: [libs/jast/jast/src/lib/jats.ts:10112](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10112) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10114) +Defined in: [libs/jast/jast/src/lib/jats.ts:10114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10114) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10116) +Defined in: [libs/jast/jast/src/lib/jats.ts:10116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10116) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10118) +Defined in: [libs/jast/jast/src/lib/jats.ts:10118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10118) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10120) +Defined in: [libs/jast/jast/src/lib/jats.ts:10120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10120) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10122) +Defined in: [libs/jast/jast/src/lib/jats.ts:10122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10122) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10124](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10124) +Defined in: [libs/jast/jast/src/lib/jats.ts:10124](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10124) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10126) +Defined in: [libs/jast/jast/src/lib/jats.ts:10126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10126) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10074](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10074) +Defined in: [libs/jast/jast/src/lib/jats.ts:10074](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10074) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10128) +Defined in: [libs/jast/jast/src/lib/jats.ts:10128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10128) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10130) +Defined in: [libs/jast/jast/src/lib/jats.ts:10130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10130) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10132) +Defined in: [libs/jast/jast/src/lib/jats.ts:10132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10132) -*** +--- ### `Speaker` @@ -40246,7 +40246,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Speaker** +- [`Node`](modules.md#node).**Speaker** #### Properties @@ -40263,18 +40263,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10138) +Defined in: [libs/jast/jast/src/lib/jats.ts:10138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10138) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SpeakerChildrenMap`](modules.md#speakerchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10143) +Defined in: [libs/jast/jast/src/lib/jats.ts:10143](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10143) ##### `data?` @@ -40284,13 +40284,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"speaker"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10137) +Defined in: [libs/jast/jast/src/lib/jats.ts:10137](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10137) ##### `position?` @@ -40301,7 +40301,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -40311,9 +40311,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10136) +Defined in: [libs/jast/jast/src/lib/jats.ts:10136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10136) -*** +--- ### `SpeakerChildrenMap` @@ -40323,57 +40323,57 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10136](https://github.com/TrialAndE > [`Degrees`](modules.md#degrees)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10149) +Defined in: [libs/jast/jast/src/lib/jats.ts:10149](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10149) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10151) +Defined in: [libs/jast/jast/src/lib/jats.ts:10151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10151) ##### `givenNames?` > [`GivenNames`](modules.md#givennames)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10153) +Defined in: [libs/jast/jast/src/lib/jats.ts:10153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10153) ##### `prefix?` > [`Prefix`](modules.md#prefix)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10155) +Defined in: [libs/jast/jast/src/lib/jats.ts:10155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10155) ##### `suffix?` > [`Suffix`](modules.md#suffix)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10157](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10157) +Defined in: [libs/jast/jast/src/lib/jats.ts:10157](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10157) ##### `surname?` > [`Surname`](modules.md#surname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10159](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10159) +Defined in: [libs/jast/jast/src/lib/jats.ts:10159](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10159) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10161) +Defined in: [libs/jast/jast/src/lib/jats.ts:10161](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10161) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10147](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10147) +Defined in: [libs/jast/jast/src/lib/jats.ts:10147](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10147) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10163) +Defined in: [libs/jast/jast/src/lib/jats.ts:10163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10163) -*** +--- ### `Speech` @@ -40381,7 +40381,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Speech** +- [`Node`](modules.md#node).**Speech** #### Properties @@ -40398,18 +40398,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10169](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10169) +Defined in: [libs/jast/jast/src/lib/jats.ts:10169](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10169) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SpeechChildrenMap`](modules.md#speechchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10174) +Defined in: [libs/jast/jast/src/lib/jats.ts:10174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10174) ##### `data?` @@ -40419,13 +40419,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"speech"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10168) +Defined in: [libs/jast/jast/src/lib/jats.ts:10168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10168) ##### `position?` @@ -40436,7 +40436,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -40446,9 +40446,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10167](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10167) +Defined in: [libs/jast/jast/src/lib/jats.ts:10167](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10167) -*** +--- ### `SpeechChildrenMap` @@ -40458,27 +40458,27 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10167](https://github.com/TrialAndE > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10180) +Defined in: [libs/jast/jast/src/lib/jats.ts:10180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10180) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10182) +Defined in: [libs/jast/jast/src/lib/jats.ts:10182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10182) ##### `speaker` > [`Speaker`](modules.md#speaker) -Defined in: [libs/jast/jast/src/lib/jats.ts:10184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10184) +Defined in: [libs/jast/jast/src/lib/jats.ts:10184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10184) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10178) +Defined in: [libs/jast/jast/src/lib/jats.ts:10178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10178) -*** +--- ### `State` @@ -40486,7 +40486,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**State** +- [`Node`](modules.md#node).**State** #### Properties @@ -40503,18 +40503,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10222) +Defined in: [libs/jast/jast/src/lib/jats.ts:10222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10222) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10227) +Defined in: [libs/jast/jast/src/lib/jats.ts:10227](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10227) ##### `data?` @@ -40524,13 +40524,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"state"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10221](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10221) +Defined in: [libs/jast/jast/src/lib/jats.ts:10221](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10221) ##### `position?` @@ -40541,7 +40541,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -40551,9 +40551,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10220) +Defined in: [libs/jast/jast/src/lib/jats.ts:10220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10220) -*** +--- ### `StateChildrenMap` @@ -40563,9 +40563,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10220](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10231) +Defined in: [libs/jast/jast/src/lib/jats.ts:10231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10231) -*** +--- ### `Statement` @@ -40573,7 +40573,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Statement** +- [`Node`](modules.md#node).**Statement** #### Properties @@ -40590,18 +40590,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10190) +Defined in: [libs/jast/jast/src/lib/jats.ts:10190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10190) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`StatementChildrenMap`](modules.md#statementchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10195) +Defined in: [libs/jast/jast/src/lib/jats.ts:10195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10195) ##### `data?` @@ -40611,13 +40611,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"statement"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10189) +Defined in: [libs/jast/jast/src/lib/jats.ts:10189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10189) ##### `position?` @@ -40628,7 +40628,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -40638,9 +40638,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10188) +Defined in: [libs/jast/jast/src/lib/jats.ts:10188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10188) -*** +--- ### `StatementChildrenMap` @@ -40650,63 +40650,63 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10188](https://github.com/TrialAndE > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10201](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10201) +Defined in: [libs/jast/jast/src/lib/jats.ts:10201](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10201) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10203](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10203) +Defined in: [libs/jast/jast/src/lib/jats.ts:10203](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10203) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10205](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10205) +Defined in: [libs/jast/jast/src/lib/jats.ts:10205](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10205) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:10207](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10207) +Defined in: [libs/jast/jast/src/lib/jats.ts:10207](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10207) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10209](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10209) +Defined in: [libs/jast/jast/src/lib/jats.ts:10209](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10209) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10211) +Defined in: [libs/jast/jast/src/lib/jats.ts:10211](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10211) ##### `statement` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10213) +Defined in: [libs/jast/jast/src/lib/jats.ts:10213](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10213) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10214) +Defined in: [libs/jast/jast/src/lib/jats.ts:10214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10214) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10199](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10199) +Defined in: [libs/jast/jast/src/lib/jats.ts:10199](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10199) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:10216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10216) +Defined in: [libs/jast/jast/src/lib/jats.ts:10216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10216) -*** +--- ### `Std` @@ -40714,7 +40714,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Std** +- [`Node`](modules.md#node).**Std** #### Properties @@ -40731,18 +40731,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10260) +Defined in: [libs/jast/jast/src/lib/jats.ts:10260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10260) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`StdChildrenMap`](modules.md#stdchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10265) +Defined in: [libs/jast/jast/src/lib/jats.ts:10265](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10265) ##### `data?` @@ -40752,13 +40752,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"std"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10259) +Defined in: [libs/jast/jast/src/lib/jats.ts:10259](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10259) ##### `position?` @@ -40769,7 +40769,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -40779,9 +40779,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10258) +Defined in: [libs/jast/jast/src/lib/jats.ts:10258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10258) -*** +--- ### `StdChildrenMap` @@ -40791,153 +40791,153 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10258](https://github.com/TrialAndE > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10271) +Defined in: [libs/jast/jast/src/lib/jats.ts:10271](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10271) ##### `day?` > [`Day`](modules.md#day)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10273](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10273) +Defined in: [libs/jast/jast/src/lib/jats.ts:10273](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10273) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10275) +Defined in: [libs/jast/jast/src/lib/jats.ts:10275](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10275) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10277) +Defined in: [libs/jast/jast/src/lib/jats.ts:10277](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10277) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10279](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10279) +Defined in: [libs/jast/jast/src/lib/jats.ts:10279](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10279) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10281](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10281) +Defined in: [libs/jast/jast/src/lib/jats.ts:10281](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10281) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10283) +Defined in: [libs/jast/jast/src/lib/jats.ts:10283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10283) ##### `month?` > [`Month`](modules.md#month)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10285](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10285) +Defined in: [libs/jast/jast/src/lib/jats.ts:10285](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10285) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10287) +Defined in: [libs/jast/jast/src/lib/jats.ts:10287](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10287) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10289](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10289) +Defined in: [libs/jast/jast/src/lib/jats.ts:10289](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10289) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10291](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10291) +Defined in: [libs/jast/jast/src/lib/jats.ts:10291](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10291) ##### `pubId?` > [`PubId`](modules.md#pubid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10293](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10293) +Defined in: [libs/jast/jast/src/lib/jats.ts:10293](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10293) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10295) +Defined in: [libs/jast/jast/src/lib/jats.ts:10295](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10295) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10297](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10297) +Defined in: [libs/jast/jast/src/lib/jats.ts:10297](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10297) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10299) +Defined in: [libs/jast/jast/src/lib/jats.ts:10299](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10299) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10301) +Defined in: [libs/jast/jast/src/lib/jats.ts:10301](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10301) ##### `source?` > [`Source`](modules.md#source)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10303) +Defined in: [libs/jast/jast/src/lib/jats.ts:10303](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10303) ##### `stdOrganization?` > [`StdOrganization`](modules.md#stdorganization)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10305) +Defined in: [libs/jast/jast/src/lib/jats.ts:10305](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10305) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10307) +Defined in: [libs/jast/jast/src/lib/jats.ts:10307](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10307) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10309](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10309) +Defined in: [libs/jast/jast/src/lib/jats.ts:10309](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10309) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10311) +Defined in: [libs/jast/jast/src/lib/jats.ts:10311](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10311) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10313) +Defined in: [libs/jast/jast/src/lib/jats.ts:10313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10313) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10269) +Defined in: [libs/jast/jast/src/lib/jats.ts:10269](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10269) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10315) +Defined in: [libs/jast/jast/src/lib/jats.ts:10315](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10315) ##### `year?` > [`Year`](modules.md#year)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10317) +Defined in: [libs/jast/jast/src/lib/jats.ts:10317](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10317) -*** +--- ### `StdOrganization` @@ -40945,7 +40945,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**StdOrganization** +- [`Node`](modules.md#node).**StdOrganization** #### Properties @@ -40962,18 +40962,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10237) +Defined in: [libs/jast/jast/src/lib/jats.ts:10237](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10237) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`StdOrganizationChildrenMap`](modules.md#stdorganizationchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10242) +Defined in: [libs/jast/jast/src/lib/jats.ts:10242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10242) ##### `data?` @@ -40983,13 +40983,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"stdOrganization"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10236) +Defined in: [libs/jast/jast/src/lib/jats.ts:10236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10236) ##### `position?` @@ -41000,7 +41000,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -41010,9 +41010,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10235) +Defined in: [libs/jast/jast/src/lib/jats.ts:10235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10235) -*** +--- ### `StdOrganizationChildrenMap` @@ -41022,33 +41022,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10235](https://github.com/TrialAndE > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10248) +Defined in: [libs/jast/jast/src/lib/jats.ts:10248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10248) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10250) +Defined in: [libs/jast/jast/src/lib/jats.ts:10250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10250) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10252) +Defined in: [libs/jast/jast/src/lib/jats.ts:10252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10252) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10254) +Defined in: [libs/jast/jast/src/lib/jats.ts:10254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10254) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10246) +Defined in: [libs/jast/jast/src/lib/jats.ts:10246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10246) -*** +--- ### `Strike` @@ -41056,7 +41056,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Strike** +- [`Node`](modules.md#node).**Strike** #### Properties @@ -41074,19 +41074,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `specificUse`? | `string` | -| `toggle`? | `StrikeTypeToggle` | +| Member | Type | +| :------------- | :----------------- | +| `id`? | `string` | +| `specificUse`? | `string` | +| `toggle`? | `StrikeTypeToggle` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10323](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10323) +Defined in: [libs/jast/jast/src/lib/jats.ts:10323](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10323) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`StrikeChildrenMap`](modules.md#strikechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10329) +Defined in: [libs/jast/jast/src/lib/jats.ts:10329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10329) ##### `data?` @@ -41096,13 +41096,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"strike"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10322) +Defined in: [libs/jast/jast/src/lib/jats.ts:10322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10322) ##### `position?` @@ -41113,7 +41113,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -41123,9 +41123,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10321) +Defined in: [libs/jast/jast/src/lib/jats.ts:10321](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10321) -*** +--- ### `StrikeChildrenMap` @@ -41135,219 +41135,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10321](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10333](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10333) +Defined in: [libs/jast/jast/src/lib/jats.ts:10333](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10333) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10335) +Defined in: [libs/jast/jast/src/lib/jats.ts:10335](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10335) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10337) +Defined in: [libs/jast/jast/src/lib/jats.ts:10337](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10337) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10339) +Defined in: [libs/jast/jast/src/lib/jats.ts:10339](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10339) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10341](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10341) +Defined in: [libs/jast/jast/src/lib/jats.ts:10341](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10341) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10343](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10343) +Defined in: [libs/jast/jast/src/lib/jats.ts:10343](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10343) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10345](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10345) +Defined in: [libs/jast/jast/src/lib/jats.ts:10345](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10345) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10347](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10347) +Defined in: [libs/jast/jast/src/lib/jats.ts:10347](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10347) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10349) +Defined in: [libs/jast/jast/src/lib/jats.ts:10349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10349) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10351](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10351) +Defined in: [libs/jast/jast/src/lib/jats.ts:10351](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10351) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10353](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10353) +Defined in: [libs/jast/jast/src/lib/jats.ts:10353](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10353) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10355) +Defined in: [libs/jast/jast/src/lib/jats.ts:10355](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10355) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10357](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10357) +Defined in: [libs/jast/jast/src/lib/jats.ts:10357](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10357) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10359) +Defined in: [libs/jast/jast/src/lib/jats.ts:10359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10359) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10361](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10361) +Defined in: [libs/jast/jast/src/lib/jats.ts:10361](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10361) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10363) +Defined in: [libs/jast/jast/src/lib/jats.ts:10363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10363) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10365](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10365) +Defined in: [libs/jast/jast/src/lib/jats.ts:10365](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10365) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10367) +Defined in: [libs/jast/jast/src/lib/jats.ts:10367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10367) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10369) +Defined in: [libs/jast/jast/src/lib/jats.ts:10369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10369) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10371) +Defined in: [libs/jast/jast/src/lib/jats.ts:10371](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10371) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10373) +Defined in: [libs/jast/jast/src/lib/jats.ts:10373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10373) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10375) +Defined in: [libs/jast/jast/src/lib/jats.ts:10375](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10375) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10377](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10377) +Defined in: [libs/jast/jast/src/lib/jats.ts:10377](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10377) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10379](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10379) +Defined in: [libs/jast/jast/src/lib/jats.ts:10379](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10379) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10381](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10381) +Defined in: [libs/jast/jast/src/lib/jats.ts:10381](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10381) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10383) +Defined in: [libs/jast/jast/src/lib/jats.ts:10383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10383) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10385) +Defined in: [libs/jast/jast/src/lib/jats.ts:10385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10385) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10387) +Defined in: [libs/jast/jast/src/lib/jats.ts:10387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10387) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10389) +Defined in: [libs/jast/jast/src/lib/jats.ts:10389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10389) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10391) +Defined in: [libs/jast/jast/src/lib/jats.ts:10391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10391) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10393) +Defined in: [libs/jast/jast/src/lib/jats.ts:10393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10393) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10395) +Defined in: [libs/jast/jast/src/lib/jats.ts:10395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10395) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10397) +Defined in: [libs/jast/jast/src/lib/jats.ts:10397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10397) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10399) +Defined in: [libs/jast/jast/src/lib/jats.ts:10399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10399) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10401) +Defined in: [libs/jast/jast/src/lib/jats.ts:10401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10401) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10403) +Defined in: [libs/jast/jast/src/lib/jats.ts:10403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10403) -*** +--- ### `StringConf` @@ -41355,7 +41355,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**StringConf** +- [`Node`](modules.md#node).**StringConf** #### Properties @@ -41372,18 +41372,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10411) +Defined in: [libs/jast/jast/src/lib/jats.ts:10411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10411) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`StringConfChildrenMap`](modules.md#stringconfchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10416) +Defined in: [libs/jast/jast/src/lib/jats.ts:10416](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10416) ##### `data?` @@ -41393,13 +41393,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"stringConf"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10410) +Defined in: [libs/jast/jast/src/lib/jats.ts:10410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10410) ##### `position?` @@ -41410,7 +41410,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -41420,9 +41420,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10409) +Defined in: [libs/jast/jast/src/lib/jats.ts:10409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10409) -*** +--- ### `StringConfChildrenMap` @@ -41432,213 +41432,213 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10409](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10422](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10422) +Defined in: [libs/jast/jast/src/lib/jats.ts:10422](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10422) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10424](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10424) +Defined in: [libs/jast/jast/src/lib/jats.ts:10424](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10424) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10426) +Defined in: [libs/jast/jast/src/lib/jats.ts:10426](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10426) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10428) +Defined in: [libs/jast/jast/src/lib/jats.ts:10428](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10428) ##### `confAcronym?` > [`ConfAcronym`](modules.md#confacronym)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10430) +Defined in: [libs/jast/jast/src/lib/jats.ts:10430](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10430) ##### `confDate?` > [`ConfDate`](modules.md#confdate)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10432) +Defined in: [libs/jast/jast/src/lib/jats.ts:10432](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10432) ##### `confLoc?` > [`ConfLoc`](modules.md#confloc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10434) +Defined in: [libs/jast/jast/src/lib/jats.ts:10434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10434) ##### `confName?` > [`ConfName`](modules.md#confname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10436) +Defined in: [libs/jast/jast/src/lib/jats.ts:10436](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10436) ##### `confNum?` > [`ConfNum`](modules.md#confnum)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10438](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10438) +Defined in: [libs/jast/jast/src/lib/jats.ts:10438](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10438) ##### `confSponsor?` > [`ConfSponsor`](modules.md#confsponsor)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10440) +Defined in: [libs/jast/jast/src/lib/jats.ts:10440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10440) ##### `confTheme?` > [`ConfTheme`](modules.md#conftheme)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10442) +Defined in: [libs/jast/jast/src/lib/jats.ts:10442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10442) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10444) +Defined in: [libs/jast/jast/src/lib/jats.ts:10444](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10444) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10446) +Defined in: [libs/jast/jast/src/lib/jats.ts:10446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10446) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10448) +Defined in: [libs/jast/jast/src/lib/jats.ts:10448](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10448) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10450) +Defined in: [libs/jast/jast/src/lib/jats.ts:10450](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10450) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10452) +Defined in: [libs/jast/jast/src/lib/jats.ts:10452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10452) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10454) +Defined in: [libs/jast/jast/src/lib/jats.ts:10454](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10454) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10456) +Defined in: [libs/jast/jast/src/lib/jats.ts:10456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10456) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10458) +Defined in: [libs/jast/jast/src/lib/jats.ts:10458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10458) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10460) +Defined in: [libs/jast/jast/src/lib/jats.ts:10460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10460) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10462) +Defined in: [libs/jast/jast/src/lib/jats.ts:10462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10462) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10464) +Defined in: [libs/jast/jast/src/lib/jats.ts:10464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10464) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10466) +Defined in: [libs/jast/jast/src/lib/jats.ts:10466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10466) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10468) +Defined in: [libs/jast/jast/src/lib/jats.ts:10468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10468) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10470) +Defined in: [libs/jast/jast/src/lib/jats.ts:10470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10470) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10472) +Defined in: [libs/jast/jast/src/lib/jats.ts:10472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10472) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10474) +Defined in: [libs/jast/jast/src/lib/jats.ts:10474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10474) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10476) +Defined in: [libs/jast/jast/src/lib/jats.ts:10476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10476) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10478) +Defined in: [libs/jast/jast/src/lib/jats.ts:10478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10478) ##### `stringConf?` > [`StringConf`](modules.md#stringconf)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10480) +Defined in: [libs/jast/jast/src/lib/jats.ts:10480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10480) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10482) +Defined in: [libs/jast/jast/src/lib/jats.ts:10482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10482) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10484) +Defined in: [libs/jast/jast/src/lib/jats.ts:10484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10484) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10486) +Defined in: [libs/jast/jast/src/lib/jats.ts:10486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10486) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10420) +Defined in: [libs/jast/jast/src/lib/jats.ts:10420](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10420) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10488) +Defined in: [libs/jast/jast/src/lib/jats.ts:10488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10488) -*** +--- ### `StringDate` @@ -41646,7 +41646,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**StringDate** +- [`Node`](modules.md#node).**StringDate** #### Properties @@ -41665,20 +41665,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `calendar`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `calendar`? | `string` | +| `id`? | `string` | | `iso8601Date`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10494) +Defined in: [libs/jast/jast/src/lib/jats.ts:10494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10494) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`StringDateChildrenMap`](modules.md#stringdatechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10501) +Defined in: [libs/jast/jast/src/lib/jats.ts:10501](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10501) ##### `data?` @@ -41688,13 +41688,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"stringDate"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10493) +Defined in: [libs/jast/jast/src/lib/jats.ts:10493](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10493) ##### `position?` @@ -41705,7 +41705,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -41715,9 +41715,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10492) +Defined in: [libs/jast/jast/src/lib/jats.ts:10492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10492) -*** +--- ### `StringDateChildrenMap` @@ -41727,39 +41727,39 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10492](https://github.com/TrialAndE > [`Day`](modules.md#day)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10507) +Defined in: [libs/jast/jast/src/lib/jats.ts:10507](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10507) ##### `era?` > [`Era`](modules.md#era)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10509) +Defined in: [libs/jast/jast/src/lib/jats.ts:10509](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10509) ##### `month?` > [`Month`](modules.md#month)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10511) +Defined in: [libs/jast/jast/src/lib/jats.ts:10511](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10511) ##### `season?` > [`Season`](modules.md#season)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10513) +Defined in: [libs/jast/jast/src/lib/jats.ts:10513](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10513) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10505) +Defined in: [libs/jast/jast/src/lib/jats.ts:10505](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10505) ##### `year?` > [`Year`](modules.md#year)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10515) +Defined in: [libs/jast/jast/src/lib/jats.ts:10515](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10515) -*** +--- ### `StringName` @@ -41767,7 +41767,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**StringName** +- [`Node`](modules.md#node).**StringName** #### Properties @@ -41785,19 +41785,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `nameStyle`? | `StringNameTypeNameStyle` | -| `specificUse`? | `string` | +| Member | Type | +| :------------- | :------------------------ | +| `id`? | `string` | +| `nameStyle`? | `StringNameTypeNameStyle` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10522) +Defined in: [libs/jast/jast/src/lib/jats.ts:10522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10522) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`StringNameChildrenMap`](modules.md#stringnamechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10528) +Defined in: [libs/jast/jast/src/lib/jats.ts:10528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10528) ##### `data?` @@ -41807,13 +41807,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"stringName"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10520) +Defined in: [libs/jast/jast/src/lib/jats.ts:10520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10520) ##### `position?` @@ -41824,13 +41824,13 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10521) +Defined in: [libs/jast/jast/src/lib/jats.ts:10521](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10521) ##### `type` @@ -41840,9 +41840,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10519](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10519) +Defined in: [libs/jast/jast/src/lib/jats.ts:10519](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10519) -*** +--- ### `StringNameChildrenMap` @@ -41852,33 +41852,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10519](https://github.com/TrialAndE > [`Degrees`](modules.md#degrees)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10532) +Defined in: [libs/jast/jast/src/lib/jats.ts:10532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10532) ##### `givenNames?` > [`GivenNames`](modules.md#givennames)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10534) +Defined in: [libs/jast/jast/src/lib/jats.ts:10534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10534) ##### `prefix?` > [`Prefix`](modules.md#prefix)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10536) +Defined in: [libs/jast/jast/src/lib/jats.ts:10536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10536) ##### `suffix?` > [`Suffix`](modules.md#suffix)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10538) +Defined in: [libs/jast/jast/src/lib/jats.ts:10538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10538) ##### `surname?` > [`Surname`](modules.md#surname)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10540) +Defined in: [libs/jast/jast/src/lib/jats.ts:10540](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10540) -*** +--- ### `StyledContent` @@ -41886,7 +41886,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**StyledContent** +- [`Node`](modules.md#node).**StyledContent** #### Properties @@ -41908,23 +41908,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `alt`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | -| `style`? | `string` | -| `styleDetail`? | `string` | -| `styleType`? | `string` | -| `toggle`? | `StyledtextToggle` | +| Member | Type | +| :------------- | :----------------- | +| `alt`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | +| `style`? | `string` | +| `styleDetail`? | `string` | +| `styleType`? | `string` | +| `toggle`? | `StyledtextToggle` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10548](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10548) +Defined in: [libs/jast/jast/src/lib/jats.ts:10548](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10548) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`StyledContentChildrenMap`](modules.md#styledcontentchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10558) +Defined in: [libs/jast/jast/src/lib/jats.ts:10558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10558) ##### `data?` @@ -41934,13 +41934,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"styledContent"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10547) +Defined in: [libs/jast/jast/src/lib/jats.ts:10547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10547) ##### `position?` @@ -41951,7 +41951,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -41961,9 +41961,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10546](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10546) +Defined in: [libs/jast/jast/src/lib/jats.ts:10546](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10546) -*** +--- ### `StyledContentChildrenMap` @@ -41973,387 +41973,387 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10546](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10562) +Defined in: [libs/jast/jast/src/lib/jats.ts:10562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10562) ##### `address?` > [`Address`](modules.md#address)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10564](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10564) +Defined in: [libs/jast/jast/src/lib/jats.ts:10564](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10564) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10566](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10566) +Defined in: [libs/jast/jast/src/lib/jats.ts:10566](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10566) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10568](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10568) +Defined in: [libs/jast/jast/src/lib/jats.ts:10568](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10568) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10570](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10570) +Defined in: [libs/jast/jast/src/lib/jats.ts:10570](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10570) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10572) +Defined in: [libs/jast/jast/src/lib/jats.ts:10572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10572) ##### `blockAlternatives?` > [`BlockAlternatives`](modules.md#blockalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10574](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10574) +Defined in: [libs/jast/jast/src/lib/jats.ts:10574](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10574) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10576) +Defined in: [libs/jast/jast/src/lib/jats.ts:10576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10576) ##### `boxedText?` > [`BoxedText`](modules.md#boxedtext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10578](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10578) +Defined in: [libs/jast/jast/src/lib/jats.ts:10578](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10578) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10580](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10580) +Defined in: [libs/jast/jast/src/lib/jats.ts:10580](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10580) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10582) +Defined in: [libs/jast/jast/src/lib/jats.ts:10582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10582) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10584) +Defined in: [libs/jast/jast/src/lib/jats.ts:10584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10584) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10586) +Defined in: [libs/jast/jast/src/lib/jats.ts:10586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10586) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10588) +Defined in: [libs/jast/jast/src/lib/jats.ts:10588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10588) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10590) +Defined in: [libs/jast/jast/src/lib/jats.ts:10590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10590) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10592) +Defined in: [libs/jast/jast/src/lib/jats.ts:10592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10592) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10594) +Defined in: [libs/jast/jast/src/lib/jats.ts:10594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10594) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10596) +Defined in: [libs/jast/jast/src/lib/jats.ts:10596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10596) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10598) +Defined in: [libs/jast/jast/src/lib/jats.ts:10598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10598) ##### `fig?` > [`Fig`](modules.md#fig)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10600) +Defined in: [libs/jast/jast/src/lib/jats.ts:10600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10600) ##### `figGroup?` > [`FigGroup`](modules.md#figgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10602) +Defined in: [libs/jast/jast/src/lib/jats.ts:10602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10602) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10604) +Defined in: [libs/jast/jast/src/lib/jats.ts:10604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10604) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10606) +Defined in: [libs/jast/jast/src/lib/jats.ts:10606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10606) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10608) +Defined in: [libs/jast/jast/src/lib/jats.ts:10608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10608) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10610) +Defined in: [libs/jast/jast/src/lib/jats.ts:10610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10610) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10612) +Defined in: [libs/jast/jast/src/lib/jats.ts:10612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10612) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10614](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10614) +Defined in: [libs/jast/jast/src/lib/jats.ts:10614](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10614) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10616) +Defined in: [libs/jast/jast/src/lib/jats.ts:10616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10616) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10618) +Defined in: [libs/jast/jast/src/lib/jats.ts:10618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10618) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10620) +Defined in: [libs/jast/jast/src/lib/jats.ts:10620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10620) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10622) +Defined in: [libs/jast/jast/src/lib/jats.ts:10622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10622) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10624) +Defined in: [libs/jast/jast/src/lib/jats.ts:10624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10624) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10626) +Defined in: [libs/jast/jast/src/lib/jats.ts:10626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10626) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10628) +Defined in: [libs/jast/jast/src/lib/jats.ts:10628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10628) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10630) +Defined in: [libs/jast/jast/src/lib/jats.ts:10630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10630) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10632) +Defined in: [libs/jast/jast/src/lib/jats.ts:10632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10632) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10634) +Defined in: [libs/jast/jast/src/lib/jats.ts:10634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10634) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10636) +Defined in: [libs/jast/jast/src/lib/jats.ts:10636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10636) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10638) +Defined in: [libs/jast/jast/src/lib/jats.ts:10638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10638) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10640) +Defined in: [libs/jast/jast/src/lib/jats.ts:10640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10640) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10642) +Defined in: [libs/jast/jast/src/lib/jats.ts:10642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10642) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10644) +Defined in: [libs/jast/jast/src/lib/jats.ts:10644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10644) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10646) +Defined in: [libs/jast/jast/src/lib/jats.ts:10646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10646) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10648) +Defined in: [libs/jast/jast/src/lib/jats.ts:10648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10648) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10650) +Defined in: [libs/jast/jast/src/lib/jats.ts:10650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10650) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10652) +Defined in: [libs/jast/jast/src/lib/jats.ts:10652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10652) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10654) +Defined in: [libs/jast/jast/src/lib/jats.ts:10654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10654) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10656) +Defined in: [libs/jast/jast/src/lib/jats.ts:10656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10656) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10658) +Defined in: [libs/jast/jast/src/lib/jats.ts:10658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10658) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10660) +Defined in: [libs/jast/jast/src/lib/jats.ts:10660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10660) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10662) +Defined in: [libs/jast/jast/src/lib/jats.ts:10662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10662) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10664) +Defined in: [libs/jast/jast/src/lib/jats.ts:10664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10664) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10666) +Defined in: [libs/jast/jast/src/lib/jats.ts:10666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10666) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10668) +Defined in: [libs/jast/jast/src/lib/jats.ts:10668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10668) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10670) +Defined in: [libs/jast/jast/src/lib/jats.ts:10670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10670) ##### `supplementaryMaterial?` > [`SupplementaryMaterial`](modules.md#supplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10672) +Defined in: [libs/jast/jast/src/lib/jats.ts:10672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10672) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10674) +Defined in: [libs/jast/jast/src/lib/jats.ts:10674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10674) ##### `tableWrapgroup?` > [`TableWrapgroup`](modules.md#tablewrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10676) +Defined in: [libs/jast/jast/src/lib/jats.ts:10676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10676) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10678) +Defined in: [libs/jast/jast/src/lib/jats.ts:10678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10678) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10680) +Defined in: [libs/jast/jast/src/lib/jats.ts:10680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10680) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10682) +Defined in: [libs/jast/jast/src/lib/jats.ts:10682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10682) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10684) +Defined in: [libs/jast/jast/src/lib/jats.ts:10684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10684) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10686) +Defined in: [libs/jast/jast/src/lib/jats.ts:10686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10686) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10688) +Defined in: [libs/jast/jast/src/lib/jats.ts:10688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10688) -*** +--- ### `Sub` @@ -42361,7 +42361,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Sub** +- [`Node`](modules.md#node).**Sub** #### Properties @@ -42379,19 +42379,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `arrange`? | `SubTypeArrange` | -| `id`? | `string` | -| `specificUse`? | `string` | +| Member | Type | +| :------------- | :--------------- | +| `arrange`? | `SubTypeArrange` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10898) +Defined in: [libs/jast/jast/src/lib/jats.ts:10898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10898) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SubChildrenMap`](modules.md#subchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10904) +Defined in: [libs/jast/jast/src/lib/jats.ts:10904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10904) ##### `data?` @@ -42401,13 +42401,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"sub"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10897) +Defined in: [libs/jast/jast/src/lib/jats.ts:10897](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10897) ##### `position?` @@ -42418,7 +42418,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -42428,9 +42428,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10896) +Defined in: [libs/jast/jast/src/lib/jats.ts:10896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10896) -*** +--- ### `SubArticle` @@ -42438,7 +42438,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SubArticle** +- [`Node`](modules.md#node).**SubArticle** #### Properties @@ -42456,19 +42456,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------------- | :------- | | `articleType`? | `string` | -| `id`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10696) +Defined in: [libs/jast/jast/src/lib/jats.ts:10696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10696) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SubArticleChildrenMap`](modules.md#subarticlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10702) +Defined in: [libs/jast/jast/src/lib/jats.ts:10702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10702) ##### `data?` @@ -42478,13 +42478,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"subArticle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10695](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10695) +Defined in: [libs/jast/jast/src/lib/jats.ts:10695](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10695) ##### `position?` @@ -42495,7 +42495,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -42505,9 +42505,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10694) +Defined in: [libs/jast/jast/src/lib/jats.ts:10694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10694) -*** +--- ### `SubArticleChildrenMap` @@ -42517,51 +42517,51 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10694](https://github.com/TrialAndE > [`Back`](modules.md#back) -Defined in: [libs/jast/jast/src/lib/jats.ts:10706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10706) +Defined in: [libs/jast/jast/src/lib/jats.ts:10706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10706) ##### `body?` > [`Body`](modules.md#body) -Defined in: [libs/jast/jast/src/lib/jats.ts:10708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10708) +Defined in: [libs/jast/jast/src/lib/jats.ts:10708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10708) ##### `floatsGroup?` > [`FloatsGroup`](modules.md#floatsgroup) -Defined in: [libs/jast/jast/src/lib/jats.ts:10710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10710) +Defined in: [libs/jast/jast/src/lib/jats.ts:10710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10710) ##### `front` > [`Front`](modules.md#front) -Defined in: [libs/jast/jast/src/lib/jats.ts:10712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10712) +Defined in: [libs/jast/jast/src/lib/jats.ts:10712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10712) ##### `frontStub` > [`FrontStub`](modules.md#frontstub) -Defined in: [libs/jast/jast/src/lib/jats.ts:10714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10714) +Defined in: [libs/jast/jast/src/lib/jats.ts:10714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10714) ##### `processingMeta?` > [`ProcessingMeta`](modules.md#processingmeta) -Defined in: [libs/jast/jast/src/lib/jats.ts:10716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10716) +Defined in: [libs/jast/jast/src/lib/jats.ts:10716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10716) ##### `response?` > [`Response`](modules.md#response)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10718) +Defined in: [libs/jast/jast/src/lib/jats.ts:10718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10718) ##### `subArticle?` > [`SubArticle`](modules.md#subarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10720) +Defined in: [libs/jast/jast/src/lib/jats.ts:10720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10720) -*** +--- ### `SubChildrenMap` @@ -42571,225 +42571,225 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10720](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10909](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10909) +Defined in: [libs/jast/jast/src/lib/jats.ts:10909](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10909) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10911](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10911) +Defined in: [libs/jast/jast/src/lib/jats.ts:10911](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10911) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10913](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10913) +Defined in: [libs/jast/jast/src/lib/jats.ts:10913](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10913) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10915) +Defined in: [libs/jast/jast/src/lib/jats.ts:10915](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10915) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10917](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10917) +Defined in: [libs/jast/jast/src/lib/jats.ts:10917](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10917) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10919](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10919) +Defined in: [libs/jast/jast/src/lib/jats.ts:10919](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10919) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10921) +Defined in: [libs/jast/jast/src/lib/jats.ts:10921](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10921) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10923](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10923) +Defined in: [libs/jast/jast/src/lib/jats.ts:10923](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10923) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10925](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10925) +Defined in: [libs/jast/jast/src/lib/jats.ts:10925](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10925) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10927](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10927) +Defined in: [libs/jast/jast/src/lib/jats.ts:10927](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10927) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10929](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10929) +Defined in: [libs/jast/jast/src/lib/jats.ts:10929](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10929) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10931](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10931) +Defined in: [libs/jast/jast/src/lib/jats.ts:10931](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10931) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10933](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10933) +Defined in: [libs/jast/jast/src/lib/jats.ts:10933](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10933) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10935](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10935) +Defined in: [libs/jast/jast/src/lib/jats.ts:10935](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10935) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10937](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10937) +Defined in: [libs/jast/jast/src/lib/jats.ts:10937](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10937) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10939](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10939) +Defined in: [libs/jast/jast/src/lib/jats.ts:10939](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10939) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10941](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10941) +Defined in: [libs/jast/jast/src/lib/jats.ts:10941](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10941) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10943](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10943) +Defined in: [libs/jast/jast/src/lib/jats.ts:10943](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10943) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10945](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10945) +Defined in: [libs/jast/jast/src/lib/jats.ts:10945](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10945) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10947](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10947) +Defined in: [libs/jast/jast/src/lib/jats.ts:10947](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10947) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10949](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10949) +Defined in: [libs/jast/jast/src/lib/jats.ts:10949](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10949) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10951](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10951) +Defined in: [libs/jast/jast/src/lib/jats.ts:10951](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10951) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10953](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10953) +Defined in: [libs/jast/jast/src/lib/jats.ts:10953](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10953) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10955) +Defined in: [libs/jast/jast/src/lib/jats.ts:10955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10955) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10957](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10957) +Defined in: [libs/jast/jast/src/lib/jats.ts:10957](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10957) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10959) +Defined in: [libs/jast/jast/src/lib/jats.ts:10959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10959) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10961) +Defined in: [libs/jast/jast/src/lib/jats.ts:10961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10961) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10963) +Defined in: [libs/jast/jast/src/lib/jats.ts:10963](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10963) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10965) +Defined in: [libs/jast/jast/src/lib/jats.ts:10965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10965) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10967) +Defined in: [libs/jast/jast/src/lib/jats.ts:10967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10967) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10969) +Defined in: [libs/jast/jast/src/lib/jats.ts:10969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10969) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10971) +Defined in: [libs/jast/jast/src/lib/jats.ts:10971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10971) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10973) +Defined in: [libs/jast/jast/src/lib/jats.ts:10973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10973) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10908) +Defined in: [libs/jast/jast/src/lib/jats.ts:10908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10908) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10975) +Defined in: [libs/jast/jast/src/lib/jats.ts:10975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10975) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10977) +Defined in: [libs/jast/jast/src/lib/jats.ts:10977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10977) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10979) +Defined in: [libs/jast/jast/src/lib/jats.ts:10979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10979) -*** +--- ### `SubjGroup` @@ -42797,7 +42797,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SubjGroup** +- [`Node`](modules.md#node).**SubjGroup** #### Properties @@ -42818,22 +42818,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | -| `subjGrouptype`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | +| `subjGrouptype`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10787](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10787) +Defined in: [libs/jast/jast/src/lib/jats.ts:10787](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10787) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SubjGroupChildrenMap`](modules.md#subjgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10796) +Defined in: [libs/jast/jast/src/lib/jats.ts:10796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10796) ##### `data?` @@ -42843,13 +42843,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"subjGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10786) +Defined in: [libs/jast/jast/src/lib/jats.ts:10786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10786) ##### `position?` @@ -42860,7 +42860,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -42870,9 +42870,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10785](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10785) +Defined in: [libs/jast/jast/src/lib/jats.ts:10785](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10785) -*** +--- ### `SubjGroupChildrenMap` @@ -42882,21 +42882,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10785](https://github.com/TrialAndE > [`CompoundSubject`](modules.md#compoundsubject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10800) +Defined in: [libs/jast/jast/src/lib/jats.ts:10800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10800) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10801](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10801) +Defined in: [libs/jast/jast/src/lib/jats.ts:10801](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10801) ##### `subject` > [`Subject`](modules.md#subject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10803](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10803) +Defined in: [libs/jast/jast/src/lib/jats.ts:10803](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10803) -*** +--- ### `Subject` @@ -42904,7 +42904,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Subject** +- [`Node`](modules.md#node).**Subject** #### Properties @@ -42925,22 +42925,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `assigningAuthority`? | `string` | -| `id`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `assigningAuthority`? | `string` | +| `id`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10726) +Defined in: [libs/jast/jast/src/lib/jats.ts:10726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10726) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SubjectChildrenMap`](modules.md#subjectchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10735](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10735) +Defined in: [libs/jast/jast/src/lib/jats.ts:10735](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10735) ##### `data?` @@ -42950,13 +42950,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"subject"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10725](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10725) +Defined in: [libs/jast/jast/src/lib/jats.ts:10725](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10725) ##### `position?` @@ -42967,7 +42967,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -42977,9 +42977,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10724) +Defined in: [libs/jast/jast/src/lib/jats.ts:10724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10724) -*** +--- ### `SubjectChildrenMap` @@ -42989,135 +42989,135 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10724](https://github.com/TrialAndE > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10741](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10741) +Defined in: [libs/jast/jast/src/lib/jats.ts:10741](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10741) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10743](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10743) +Defined in: [libs/jast/jast/src/lib/jats.ts:10743](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10743) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10745) +Defined in: [libs/jast/jast/src/lib/jats.ts:10745](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10745) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10747) +Defined in: [libs/jast/jast/src/lib/jats.ts:10747](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10747) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10749) +Defined in: [libs/jast/jast/src/lib/jats.ts:10749](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10749) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10751) +Defined in: [libs/jast/jast/src/lib/jats.ts:10751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10751) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10753) +Defined in: [libs/jast/jast/src/lib/jats.ts:10753](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10753) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10755) +Defined in: [libs/jast/jast/src/lib/jats.ts:10755](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10755) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10757) +Defined in: [libs/jast/jast/src/lib/jats.ts:10757](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10757) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10759) +Defined in: [libs/jast/jast/src/lib/jats.ts:10759](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10759) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10761) +Defined in: [libs/jast/jast/src/lib/jats.ts:10761](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10761) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10763) +Defined in: [libs/jast/jast/src/lib/jats.ts:10763](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10763) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10765](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10765) +Defined in: [libs/jast/jast/src/lib/jats.ts:10765](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10765) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10767](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10767) +Defined in: [libs/jast/jast/src/lib/jats.ts:10767](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10767) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10769) +Defined in: [libs/jast/jast/src/lib/jats.ts:10769](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10769) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10771](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10771) +Defined in: [libs/jast/jast/src/lib/jats.ts:10771](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10771) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10773](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10773) +Defined in: [libs/jast/jast/src/lib/jats.ts:10773](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10773) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10775](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10775) +Defined in: [libs/jast/jast/src/lib/jats.ts:10775](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10775) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10777) +Defined in: [libs/jast/jast/src/lib/jats.ts:10777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10777) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10779](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10779) +Defined in: [libs/jast/jast/src/lib/jats.ts:10779](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10779) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10739) +Defined in: [libs/jast/jast/src/lib/jats.ts:10739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10739) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10781](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10781) +Defined in: [libs/jast/jast/src/lib/jats.ts:10781](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10781) -*** +--- ### `Subtitle` @@ -43125,7 +43125,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Subtitle** +- [`Node`](modules.md#node).**Subtitle** #### Properties @@ -43142,18 +43142,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10809](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10809) +Defined in: [libs/jast/jast/src/lib/jats.ts:10809](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10809) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SubtitleChildrenMap`](modules.md#subtitlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10814) +Defined in: [libs/jast/jast/src/lib/jats.ts:10814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10814) ##### `data?` @@ -43163,13 +43163,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"subtitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10808) +Defined in: [libs/jast/jast/src/lib/jats.ts:10808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10808) ##### `position?` @@ -43180,7 +43180,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -43190,9 +43190,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10807) +Defined in: [libs/jast/jast/src/lib/jats.ts:10807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10807) -*** +--- ### `SubtitleChildrenMap` @@ -43202,231 +43202,231 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10807](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10820) +Defined in: [libs/jast/jast/src/lib/jats.ts:10820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10820) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10822) +Defined in: [libs/jast/jast/src/lib/jats.ts:10822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10822) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10824) +Defined in: [libs/jast/jast/src/lib/jats.ts:10824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10824) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10826) +Defined in: [libs/jast/jast/src/lib/jats.ts:10826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10826) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10828) +Defined in: [libs/jast/jast/src/lib/jats.ts:10828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10828) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10830) +Defined in: [libs/jast/jast/src/lib/jats.ts:10830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10830) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10832) +Defined in: [libs/jast/jast/src/lib/jats.ts:10832](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10832) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10834) +Defined in: [libs/jast/jast/src/lib/jats.ts:10834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10834) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10836) +Defined in: [libs/jast/jast/src/lib/jats.ts:10836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10836) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10838) +Defined in: [libs/jast/jast/src/lib/jats.ts:10838](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10838) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10840) +Defined in: [libs/jast/jast/src/lib/jats.ts:10840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10840) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10842) +Defined in: [libs/jast/jast/src/lib/jats.ts:10842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10842) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10844) +Defined in: [libs/jast/jast/src/lib/jats.ts:10844](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10844) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10846) +Defined in: [libs/jast/jast/src/lib/jats.ts:10846](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10846) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10848) +Defined in: [libs/jast/jast/src/lib/jats.ts:10848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10848) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10850) +Defined in: [libs/jast/jast/src/lib/jats.ts:10850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10850) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10852) +Defined in: [libs/jast/jast/src/lib/jats.ts:10852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10852) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10854) +Defined in: [libs/jast/jast/src/lib/jats.ts:10854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10854) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10856) +Defined in: [libs/jast/jast/src/lib/jats.ts:10856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10856) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10858) +Defined in: [libs/jast/jast/src/lib/jats.ts:10858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10858) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10860) +Defined in: [libs/jast/jast/src/lib/jats.ts:10860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10860) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10862) +Defined in: [libs/jast/jast/src/lib/jats.ts:10862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10862) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10864) +Defined in: [libs/jast/jast/src/lib/jats.ts:10864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10864) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10866) +Defined in: [libs/jast/jast/src/lib/jats.ts:10866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10866) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10868) +Defined in: [libs/jast/jast/src/lib/jats.ts:10868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10868) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10870) +Defined in: [libs/jast/jast/src/lib/jats.ts:10870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10870) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10872) +Defined in: [libs/jast/jast/src/lib/jats.ts:10872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10872) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10874) +Defined in: [libs/jast/jast/src/lib/jats.ts:10874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10874) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10876) +Defined in: [libs/jast/jast/src/lib/jats.ts:10876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10876) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10878) +Defined in: [libs/jast/jast/src/lib/jats.ts:10878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10878) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10880) +Defined in: [libs/jast/jast/src/lib/jats.ts:10880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10880) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10882) +Defined in: [libs/jast/jast/src/lib/jats.ts:10882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10882) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10884) +Defined in: [libs/jast/jast/src/lib/jats.ts:10884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10884) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10886) +Defined in: [libs/jast/jast/src/lib/jats.ts:10886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10886) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10818) +Defined in: [libs/jast/jast/src/lib/jats.ts:10818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10818) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10888) +Defined in: [libs/jast/jast/src/lib/jats.ts:10888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10888) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10890) +Defined in: [libs/jast/jast/src/lib/jats.ts:10890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10890) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10892) +Defined in: [libs/jast/jast/src/lib/jats.ts:10892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10892) -*** +--- ### `Suffix` @@ -43434,7 +43434,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Suffix** +- [`Node`](modules.md#node).**Suffix** #### Properties @@ -43451,18 +43451,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:10987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10987) +Defined in: [libs/jast/jast/src/lib/jats.ts:10987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10987) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:10992](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10992) +Defined in: [libs/jast/jast/src/lib/jats.ts:10992](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10992) ##### `data?` @@ -43472,13 +43472,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"suffix"` -Defined in: [libs/jast/jast/src/lib/jats.ts:10986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10986) +Defined in: [libs/jast/jast/src/lib/jats.ts:10986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10986) ##### `position?` @@ -43489,7 +43489,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -43499,9 +43499,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:10985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10985) +Defined in: [libs/jast/jast/src/lib/jats.ts:10985](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10985) -*** +--- ### `SuffixChildrenMap` @@ -43511,9 +43511,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:10985](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:10996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10996) +Defined in: [libs/jast/jast/src/lib/jats.ts:10996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L10996) -*** +--- ### `Sup` @@ -43521,7 +43521,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Sup** +- [`Node`](modules.md#node).**Sup** #### Properties @@ -43539,19 +43539,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `arrange`? | `SupTypeArrange` | -| `id`? | `string` | -| `specificUse`? | `string` | +| Member | Type | +| :------------- | :--------------- | +| `arrange`? | `SupTypeArrange` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11262) +Defined in: [libs/jast/jast/src/lib/jats.ts:11262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11262) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SupChildrenMap`](modules.md#supchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11268) +Defined in: [libs/jast/jast/src/lib/jats.ts:11268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11268) ##### `data?` @@ -43561,13 +43561,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"sup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11261) +Defined in: [libs/jast/jast/src/lib/jats.ts:11261](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11261) ##### `position?` @@ -43578,7 +43578,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -43588,9 +43588,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11260) +Defined in: [libs/jast/jast/src/lib/jats.ts:11260](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11260) -*** +--- ### `SupChildrenMap` @@ -43600,219 +43600,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11260](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11272) +Defined in: [libs/jast/jast/src/lib/jats.ts:11272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11272) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11274) +Defined in: [libs/jast/jast/src/lib/jats.ts:11274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11274) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11276) +Defined in: [libs/jast/jast/src/lib/jats.ts:11276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11276) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11278) +Defined in: [libs/jast/jast/src/lib/jats.ts:11278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11278) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11280](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11280) +Defined in: [libs/jast/jast/src/lib/jats.ts:11280](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11280) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11282) +Defined in: [libs/jast/jast/src/lib/jats.ts:11282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11282) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11284](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11284) +Defined in: [libs/jast/jast/src/lib/jats.ts:11284](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11284) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11286](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11286) +Defined in: [libs/jast/jast/src/lib/jats.ts:11286](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11286) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11288) +Defined in: [libs/jast/jast/src/lib/jats.ts:11288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11288) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11290](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11290) +Defined in: [libs/jast/jast/src/lib/jats.ts:11290](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11290) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11292](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11292) +Defined in: [libs/jast/jast/src/lib/jats.ts:11292](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11292) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11294) +Defined in: [libs/jast/jast/src/lib/jats.ts:11294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11294) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11296) +Defined in: [libs/jast/jast/src/lib/jats.ts:11296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11296) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11298](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11298) +Defined in: [libs/jast/jast/src/lib/jats.ts:11298](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11298) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11300) +Defined in: [libs/jast/jast/src/lib/jats.ts:11300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11300) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11302) +Defined in: [libs/jast/jast/src/lib/jats.ts:11302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11302) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11304](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11304) +Defined in: [libs/jast/jast/src/lib/jats.ts:11304](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11304) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11306) +Defined in: [libs/jast/jast/src/lib/jats.ts:11306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11306) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11308) +Defined in: [libs/jast/jast/src/lib/jats.ts:11308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11308) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11310) +Defined in: [libs/jast/jast/src/lib/jats.ts:11310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11310) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11312) +Defined in: [libs/jast/jast/src/lib/jats.ts:11312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11312) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11314) +Defined in: [libs/jast/jast/src/lib/jats.ts:11314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11314) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11316) +Defined in: [libs/jast/jast/src/lib/jats.ts:11316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11316) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11318) +Defined in: [libs/jast/jast/src/lib/jats.ts:11318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11318) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11320) +Defined in: [libs/jast/jast/src/lib/jats.ts:11320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11320) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11322) +Defined in: [libs/jast/jast/src/lib/jats.ts:11322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11322) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11324) +Defined in: [libs/jast/jast/src/lib/jats.ts:11324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11324) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11326) +Defined in: [libs/jast/jast/src/lib/jats.ts:11326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11326) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11328) +Defined in: [libs/jast/jast/src/lib/jats.ts:11328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11328) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11330) +Defined in: [libs/jast/jast/src/lib/jats.ts:11330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11330) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11332) +Defined in: [libs/jast/jast/src/lib/jats.ts:11332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11332) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11334) +Defined in: [libs/jast/jast/src/lib/jats.ts:11334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11334) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11336) +Defined in: [libs/jast/jast/src/lib/jats.ts:11336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11336) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11338) +Defined in: [libs/jast/jast/src/lib/jats.ts:11338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11338) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11340) +Defined in: [libs/jast/jast/src/lib/jats.ts:11340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11340) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11342) +Defined in: [libs/jast/jast/src/lib/jats.ts:11342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11342) -*** +--- ### `Supplement` @@ -43820,7 +43820,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Supplement** +- [`Node`](modules.md#node).**Supplement** #### Properties @@ -43838,19 +43838,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `specificUse`? | `string` | +| Member | Type | +| :---------------- | :------- | +| `id`? | `string` | +| `specificUse`? | `string` | | `supplementType`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11086) +Defined in: [libs/jast/jast/src/lib/jats.ts:11086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11086) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SupplementChildrenMap`](modules.md#supplementchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11092) +Defined in: [libs/jast/jast/src/lib/jats.ts:11092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11092) ##### `data?` @@ -43860,13 +43860,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"supplement"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11085](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11085) +Defined in: [libs/jast/jast/src/lib/jats.ts:11085](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11085) ##### `position?` @@ -43877,7 +43877,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -43887,9 +43887,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11084) +Defined in: [libs/jast/jast/src/lib/jats.ts:11084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11084) -*** +--- ### `SupplementChildrenMap` @@ -43899,171 +43899,171 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11084](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11096) +Defined in: [libs/jast/jast/src/lib/jats.ts:11096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11096) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11098) +Defined in: [libs/jast/jast/src/lib/jats.ts:11098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11098) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11100) +Defined in: [libs/jast/jast/src/lib/jats.ts:11100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11100) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11102) +Defined in: [libs/jast/jast/src/lib/jats.ts:11102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11102) ##### `contribGroup?` > [`ContribGroup`](modules.md#contribgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11104) +Defined in: [libs/jast/jast/src/lib/jats.ts:11104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11104) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11106) +Defined in: [libs/jast/jast/src/lib/jats.ts:11106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11106) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11108) +Defined in: [libs/jast/jast/src/lib/jats.ts:11108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11108) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11110) +Defined in: [libs/jast/jast/src/lib/jats.ts:11110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11110) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11112](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11112) +Defined in: [libs/jast/jast/src/lib/jats.ts:11112](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11112) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11114) +Defined in: [libs/jast/jast/src/lib/jats.ts:11114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11114) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11116) +Defined in: [libs/jast/jast/src/lib/jats.ts:11116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11116) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11118) +Defined in: [libs/jast/jast/src/lib/jats.ts:11118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11118) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11120) +Defined in: [libs/jast/jast/src/lib/jats.ts:11120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11120) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11122) +Defined in: [libs/jast/jast/src/lib/jats.ts:11122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11122) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11124](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11124) +Defined in: [libs/jast/jast/src/lib/jats.ts:11124](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11124) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11126) +Defined in: [libs/jast/jast/src/lib/jats.ts:11126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11126) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11128) +Defined in: [libs/jast/jast/src/lib/jats.ts:11128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11128) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11130) +Defined in: [libs/jast/jast/src/lib/jats.ts:11130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11130) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11132) +Defined in: [libs/jast/jast/src/lib/jats.ts:11132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11132) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11134](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11134) +Defined in: [libs/jast/jast/src/lib/jats.ts:11134](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11134) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11136) +Defined in: [libs/jast/jast/src/lib/jats.ts:11136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11136) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11138) +Defined in: [libs/jast/jast/src/lib/jats.ts:11138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11138) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11140](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11140) +Defined in: [libs/jast/jast/src/lib/jats.ts:11140](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11140) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11142) +Defined in: [libs/jast/jast/src/lib/jats.ts:11142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11142) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11144) +Defined in: [libs/jast/jast/src/lib/jats.ts:11144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11144) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11146) +Defined in: [libs/jast/jast/src/lib/jats.ts:11146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11146) ##### `title?` > [`Title`](modules.md#title)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11148) +Defined in: [libs/jast/jast/src/lib/jats.ts:11148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11148) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11150) +Defined in: [libs/jast/jast/src/lib/jats.ts:11150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11150) -*** +--- ### `SupplementaryMaterial` @@ -44071,7 +44071,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SupplementaryMaterial** +- [`Node`](modules.md#node).**SupplementaryMaterial** #### Properties @@ -44093,23 +44093,23 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `hreflang`? | `string` | -| `id`? | `string` | -| `mimeSubtype`? | `string` | -| `mimetype`? | `string` | +| Member | Type | +| :------------- | :------------------------------------- | +| `hreflang`? | `string` | +| `id`? | `string` | +| `mimeSubtype`? | `string` | +| `mimetype`? | `string` | | `orientation`? | `SupplementaryMaterialTypeOrientation` | -| `position`? | `SupplementaryMaterialTypePosition` | -| `specificUse`? | `string` | +| `position`? | `SupplementaryMaterialTypePosition` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11002) +Defined in: [libs/jast/jast/src/lib/jats.ts:11002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11002) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SupplementaryMaterialChildrenMap`](modules.md#supplementarymaterialchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11012) +Defined in: [libs/jast/jast/src/lib/jats.ts:11012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11012) ##### `data?` @@ -44119,13 +44119,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"supplementaryMaterial"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11001) +Defined in: [libs/jast/jast/src/lib/jats.ts:11001](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11001) ##### `position?` @@ -44136,7 +44136,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -44146,9 +44146,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11000) +Defined in: [libs/jast/jast/src/lib/jats.ts:11000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11000) -*** +--- ### `SupplementaryMaterialChildrenMap` @@ -44158,195 +44158,195 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11000](https://github.com/TrialAndE > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11016) +Defined in: [libs/jast/jast/src/lib/jats.ts:11016](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11016) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11019) +Defined in: [libs/jast/jast/src/lib/jats.ts:11019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11019) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11021) +Defined in: [libs/jast/jast/src/lib/jats.ts:11021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11021) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11023](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11023) +Defined in: [libs/jast/jast/src/lib/jats.ts:11023](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11023) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11025) +Defined in: [libs/jast/jast/src/lib/jats.ts:11025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11025) ##### `caption?` > [`Caption`](modules.md#caption)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11027) +Defined in: [libs/jast/jast/src/lib/jats.ts:11027](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11027) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11029) +Defined in: [libs/jast/jast/src/lib/jats.ts:11029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11029) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11031](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11031) +Defined in: [libs/jast/jast/src/lib/jats.ts:11031](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11031) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11033) +Defined in: [libs/jast/jast/src/lib/jats.ts:11033](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11033) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11035) +Defined in: [libs/jast/jast/src/lib/jats.ts:11035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11035) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11037) +Defined in: [libs/jast/jast/src/lib/jats.ts:11037](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11037) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11039](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11039) +Defined in: [libs/jast/jast/src/lib/jats.ts:11039](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11039) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11041) +Defined in: [libs/jast/jast/src/lib/jats.ts:11041](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11041) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11043](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11043) +Defined in: [libs/jast/jast/src/lib/jats.ts:11043](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11043) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11045) +Defined in: [libs/jast/jast/src/lib/jats.ts:11045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11045) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11047) +Defined in: [libs/jast/jast/src/lib/jats.ts:11047](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11047) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11049) +Defined in: [libs/jast/jast/src/lib/jats.ts:11049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11049) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11051](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11051) +Defined in: [libs/jast/jast/src/lib/jats.ts:11051](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11051) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11053) +Defined in: [libs/jast/jast/src/lib/jats.ts:11053](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11053) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11055](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11055) +Defined in: [libs/jast/jast/src/lib/jats.ts:11055](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11055) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11057) +Defined in: [libs/jast/jast/src/lib/jats.ts:11057](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11057) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11059) +Defined in: [libs/jast/jast/src/lib/jats.ts:11059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11059) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11061) +Defined in: [libs/jast/jast/src/lib/jats.ts:11061](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11061) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11063) +Defined in: [libs/jast/jast/src/lib/jats.ts:11063](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11063) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11065) +Defined in: [libs/jast/jast/src/lib/jats.ts:11065](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11065) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11067) +Defined in: [libs/jast/jast/src/lib/jats.ts:11067](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11067) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11068](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11068) +Defined in: [libs/jast/jast/src/lib/jats.ts:11068](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11068) ##### `tableWrap?` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11070](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11070) +Defined in: [libs/jast/jast/src/lib/jats.ts:11070](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11070) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:11017](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11017) +Defined in: [libs/jast/jast/src/lib/jats.ts:11017](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11017) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11072](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11072) +Defined in: [libs/jast/jast/src/lib/jats.ts:11072](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11072) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11074](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11074) +Defined in: [libs/jast/jast/src/lib/jats.ts:11074](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11074) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11076) +Defined in: [libs/jast/jast/src/lib/jats.ts:11076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11076) -*** +--- ### `SupportDescription` @@ -44354,7 +44354,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SupportDescription** +- [`Node`](modules.md#node).**SupportDescription** #### Properties @@ -44372,19 +44372,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11156](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11156) +Defined in: [libs/jast/jast/src/lib/jats.ts:11156](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11156) ##### `children` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11162](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11162) +Defined in: [libs/jast/jast/src/lib/jats.ts:11162](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11162) ##### `data?` @@ -44394,13 +44394,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"supportDescription"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11155) +Defined in: [libs/jast/jast/src/lib/jats.ts:11155](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11155) ##### `position?` @@ -44411,7 +44411,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -44421,9 +44421,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11154) +Defined in: [libs/jast/jast/src/lib/jats.ts:11154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11154) -*** +--- ### `SupportDescriptionChildrenMap` @@ -44433,9 +44433,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11154](https://github.com/TrialAndE > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11166) +Defined in: [libs/jast/jast/src/lib/jats.ts:11166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11166) -*** +--- ### `SupportGroup` @@ -44443,7 +44443,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SupportGroup** +- [`Node`](modules.md#node).**SupportGroup** #### Properties @@ -44460,18 +44460,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11172) +Defined in: [libs/jast/jast/src/lib/jats.ts:11172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11172) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SupportGroupChildrenMap`](modules.md#supportgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11177](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11177) +Defined in: [libs/jast/jast/src/lib/jats.ts:11177](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11177) ##### `data?` @@ -44481,13 +44481,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"supportGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11171](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11171) +Defined in: [libs/jast/jast/src/lib/jats.ts:11171](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11171) ##### `position?` @@ -44498,7 +44498,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -44508,9 +44508,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11170) +Defined in: [libs/jast/jast/src/lib/jats.ts:11170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11170) -*** +--- ### `SupportGroupChildrenMap` @@ -44520,15 +44520,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11170](https://github.com/TrialAndE > [`ContributedResourcegroup`](modules.md#contributedresourcegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11181](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11181) +Defined in: [libs/jast/jast/src/lib/jats.ts:11181](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11181) ##### `fundingGroup?` > [`FundingGroup`](modules.md#fundinggroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11183) +Defined in: [libs/jast/jast/src/lib/jats.ts:11183](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11183) -*** +--- ### `SupportSource` @@ -44536,7 +44536,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**SupportSource** +- [`Node`](modules.md#node).**SupportSource** #### Properties @@ -44557,22 +44557,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `country`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `rid`? | `string` | +| Member | Type | +| :------------- | :------- | +| `country`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `rid`? | `string` | | `specificUse`? | `string` | | `supportType`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11189) +Defined in: [libs/jast/jast/src/lib/jats.ts:11189](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11189) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`SupportSourceChildrenMap`](modules.md#supportsourcechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11198) +Defined in: [libs/jast/jast/src/lib/jats.ts:11198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11198) ##### `data?` @@ -44582,13 +44582,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"supportSource"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11188) +Defined in: [libs/jast/jast/src/lib/jats.ts:11188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11188) ##### `position?` @@ -44599,7 +44599,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -44609,9 +44609,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11187) +Defined in: [libs/jast/jast/src/lib/jats.ts:11187](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11187) -*** +--- ### `SupportSourceChildrenMap` @@ -44621,171 +44621,171 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11187](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11202) +Defined in: [libs/jast/jast/src/lib/jats.ts:11202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11202) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11204) +Defined in: [libs/jast/jast/src/lib/jats.ts:11204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11204) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11206) +Defined in: [libs/jast/jast/src/lib/jats.ts:11206](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11206) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11208) +Defined in: [libs/jast/jast/src/lib/jats.ts:11208](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11208) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11210) +Defined in: [libs/jast/jast/src/lib/jats.ts:11210](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11210) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11212](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11212) +Defined in: [libs/jast/jast/src/lib/jats.ts:11212](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11212) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11214) +Defined in: [libs/jast/jast/src/lib/jats.ts:11214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11214) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11216) +Defined in: [libs/jast/jast/src/lib/jats.ts:11216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11216) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11218) +Defined in: [libs/jast/jast/src/lib/jats.ts:11218](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11218) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11220) +Defined in: [libs/jast/jast/src/lib/jats.ts:11220](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11220) ##### `institution?` > [`Institution`](modules.md#institution)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11222) +Defined in: [libs/jast/jast/src/lib/jats.ts:11222](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11222) ##### `institutionWrap?` > [`InstitutionWrap`](modules.md#institutionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11224) +Defined in: [libs/jast/jast/src/lib/jats.ts:11224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11224) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11226) +Defined in: [libs/jast/jast/src/lib/jats.ts:11226](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11226) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11228) +Defined in: [libs/jast/jast/src/lib/jats.ts:11228](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11228) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11230) +Defined in: [libs/jast/jast/src/lib/jats.ts:11230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11230) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11232) +Defined in: [libs/jast/jast/src/lib/jats.ts:11232](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11232) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11234) +Defined in: [libs/jast/jast/src/lib/jats.ts:11234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11234) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11236) +Defined in: [libs/jast/jast/src/lib/jats.ts:11236](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11236) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11238) +Defined in: [libs/jast/jast/src/lib/jats.ts:11238](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11238) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11240) +Defined in: [libs/jast/jast/src/lib/jats.ts:11240](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11240) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11242) +Defined in: [libs/jast/jast/src/lib/jats.ts:11242](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11242) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11244) +Defined in: [libs/jast/jast/src/lib/jats.ts:11244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11244) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11246) +Defined in: [libs/jast/jast/src/lib/jats.ts:11246](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11246) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11248) +Defined in: [libs/jast/jast/src/lib/jats.ts:11248](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11248) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11250) +Defined in: [libs/jast/jast/src/lib/jats.ts:11250](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11250) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11252) +Defined in: [libs/jast/jast/src/lib/jats.ts:11252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11252) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11254) +Defined in: [libs/jast/jast/src/lib/jats.ts:11254](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11254) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11256) +Defined in: [libs/jast/jast/src/lib/jats.ts:11256](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11256) -*** +--- ### `Surname` @@ -44793,7 +44793,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Surname** +- [`Node`](modules.md#node).**Surname** #### Properties @@ -44810,18 +44810,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :---------- | :------- | +| `id`? | `string` | | `initials`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11349) +Defined in: [libs/jast/jast/src/lib/jats.ts:11349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11349) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11353](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11353) +Defined in: [libs/jast/jast/src/lib/jats.ts:11353](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11353) ##### `data?` @@ -44831,13 +44831,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"surname"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11348) +Defined in: [libs/jast/jast/src/lib/jats.ts:11348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11348) ##### `position?` @@ -44848,7 +44848,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -44858,9 +44858,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11347](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11347) +Defined in: [libs/jast/jast/src/lib/jats.ts:11347](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11347) -*** +--- ### `Table` @@ -44868,7 +44868,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Table** +- [`Node`](modules.md#node).**Table** #### Properties @@ -44893,26 +44893,26 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `border`? | `string` | -| `cellpadding`? | `string` | -| `cellspacing`? | `string` | -| `frame`? | `TableTypeFrame` | -| `id`? | `string` | -| `rules`? | `TableTypeRules` | -| `specificUse`? | `string` | -| `style`? | `string` | -| `summary`? | `string` | -| `width`? | `string` | +| Member | Type | +| :------------- | :--------------- | +| `border`? | `string` | +| `cellpadding`? | `string` | +| `cellspacing`? | `string` | +| `frame`? | `TableTypeFrame` | +| `id`? | `string` | +| `rules`? | `TableTypeRules` | +| `specificUse`? | `string` | +| `style`? | `string` | +| `summary`? | `string` | +| `width`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11370) +Defined in: [libs/jast/jast/src/lib/jats.ts:11370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11370) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TableChildrenMap`](modules.md#tablechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11383) +Defined in: [libs/jast/jast/src/lib/jats.ts:11383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11383) ##### `data?` @@ -44922,13 +44922,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"table"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11368) +Defined in: [libs/jast/jast/src/lib/jats.ts:11368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11368) ##### `position?` @@ -44939,13 +44939,13 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:11369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11369) +Defined in: [libs/jast/jast/src/lib/jats.ts:11369](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11369) ##### `type` @@ -44955,9 +44955,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11367) +Defined in: [libs/jast/jast/src/lib/jats.ts:11367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11367) -*** +--- ### `TableChildrenMap` @@ -44967,39 +44967,39 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11367](https://github.com/TrialAndE > [`Col`](modules.md#col)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11387) +Defined in: [libs/jast/jast/src/lib/jats.ts:11387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11387) ##### `colgroup?` > [`Colgroup`](modules.md#colgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11388) +Defined in: [libs/jast/jast/src/lib/jats.ts:11388](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11388) ##### `tbody` > [`Tbody`](modules.md#tbody)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11389) +Defined in: [libs/jast/jast/src/lib/jats.ts:11389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11389) ##### `tfoot?` > [`Tfoot`](modules.md#tfoot) -Defined in: [libs/jast/jast/src/lib/jats.ts:11390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11390) +Defined in: [libs/jast/jast/src/lib/jats.ts:11390](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11390) ##### `thead?` > [`Thead`](modules.md#thead) -Defined in: [libs/jast/jast/src/lib/jats.ts:11391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11391) +Defined in: [libs/jast/jast/src/lib/jats.ts:11391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11391) ##### `tr` > [`Tr`](modules.md#tr)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11392) +Defined in: [libs/jast/jast/src/lib/jats.ts:11392](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11392) -*** +--- ### `TableCount` @@ -45007,7 +45007,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TableCount** +- [`Node`](modules.md#node).**TableCount** #### Properties @@ -45024,18 +45024,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------ | :------- | | `count` | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11359) +Defined in: [libs/jast/jast/src/lib/jats.ts:11359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11359) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:11363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11363) +Defined in: [libs/jast/jast/src/lib/jats.ts:11363](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11363) ##### `data?` @@ -45045,13 +45045,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"tableCount"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11358) +Defined in: [libs/jast/jast/src/lib/jats.ts:11358](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11358) ##### `position?` @@ -45062,7 +45062,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -45072,9 +45072,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11357](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11357) +Defined in: [libs/jast/jast/src/lib/jats.ts:11357](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11357) -*** +--- ### `TableWrap` @@ -45082,7 +45082,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TableWrap** +- [`Node`](modules.md#node).**TableWrap** #### Properties @@ -45101,20 +45101,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------------------------- | +| `id`? | `string` | | `orientation`? | `TableWrapTypeOrientation` | -| `position`? | `TableWrapTypePosition` | -| `specificUse`? | `string` | +| `position`? | `TableWrapTypePosition` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11480) +Defined in: [libs/jast/jast/src/lib/jats.ts:11480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11480) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TableWrapChildrenMap`](modules.md#tablewrapchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11487) +Defined in: [libs/jast/jast/src/lib/jats.ts:11487](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11487) ##### `data?` @@ -45124,13 +45124,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"tableWrap"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11479) +Defined in: [libs/jast/jast/src/lib/jats.ts:11479](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11479) ##### `position?` @@ -45141,7 +45141,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -45151,9 +45151,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11478) +Defined in: [libs/jast/jast/src/lib/jats.ts:11478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11478) -*** +--- ### `TableWrapChildrenMap` @@ -45163,183 +45163,183 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11478](https://github.com/TrialAndE > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11492) +Defined in: [libs/jast/jast/src/lib/jats.ts:11492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11492) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11494) +Defined in: [libs/jast/jast/src/lib/jats.ts:11494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11494) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11496) +Defined in: [libs/jast/jast/src/lib/jats.ts:11496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11496) ##### `attrib?` > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11498) +Defined in: [libs/jast/jast/src/lib/jats.ts:11498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11498) ##### `caption?` > [`Caption`](modules.md#caption)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11500) +Defined in: [libs/jast/jast/src/lib/jats.ts:11500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11500) ##### `chemStructwrap?` > [`ChemStructwrap`](modules.md#chemstructwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11502](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11502) +Defined in: [libs/jast/jast/src/lib/jats.ts:11502](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11502) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11504) +Defined in: [libs/jast/jast/src/lib/jats.ts:11504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11504) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11506) +Defined in: [libs/jast/jast/src/lib/jats.ts:11506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11506) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11508) +Defined in: [libs/jast/jast/src/lib/jats.ts:11508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11508) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11510](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11510) +Defined in: [libs/jast/jast/src/lib/jats.ts:11510](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11510) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11512) +Defined in: [libs/jast/jast/src/lib/jats.ts:11512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11512) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11514) +Defined in: [libs/jast/jast/src/lib/jats.ts:11514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11514) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11516) +Defined in: [libs/jast/jast/src/lib/jats.ts:11516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11516) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11518) +Defined in: [libs/jast/jast/src/lib/jats.ts:11518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11518) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11520) +Defined in: [libs/jast/jast/src/lib/jats.ts:11520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11520) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11522) +Defined in: [libs/jast/jast/src/lib/jats.ts:11522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11522) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11524) +Defined in: [libs/jast/jast/src/lib/jats.ts:11524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11524) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11526) +Defined in: [libs/jast/jast/src/lib/jats.ts:11526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11526) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11528) +Defined in: [libs/jast/jast/src/lib/jats.ts:11528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11528) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11530) +Defined in: [libs/jast/jast/src/lib/jats.ts:11530](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11530) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11532) +Defined in: [libs/jast/jast/src/lib/jats.ts:11532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11532) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11534) +Defined in: [libs/jast/jast/src/lib/jats.ts:11534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11534) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11536) +Defined in: [libs/jast/jast/src/lib/jats.ts:11536](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11536) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11537](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11537) +Defined in: [libs/jast/jast/src/lib/jats.ts:11537](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11537) ##### `table?` > [`Table`](modules.md#table)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11539) +Defined in: [libs/jast/jast/src/lib/jats.ts:11539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11539) ##### `tableWrapfoot?` > [`TableWrapfoot`](modules.md#tablewrapfoot)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11541) +Defined in: [libs/jast/jast/src/lib/jats.ts:11541](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11541) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:11491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11491) +Defined in: [libs/jast/jast/src/lib/jats.ts:11491](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11491) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11543) +Defined in: [libs/jast/jast/src/lib/jats.ts:11543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11543) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11545) +Defined in: [libs/jast/jast/src/lib/jats.ts:11545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11545) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11547) +Defined in: [libs/jast/jast/src/lib/jats.ts:11547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11547) -*** +--- ### `TableWrapfoot` @@ -45347,7 +45347,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TableWrapfoot** +- [`Node`](modules.md#node).**TableWrapfoot** #### Properties @@ -45363,17 +45363,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11411) +Defined in: [libs/jast/jast/src/lib/jats.ts:11411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11411) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TableWrapfootChildrenMap`](modules.md#tablewrapfootchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11415) +Defined in: [libs/jast/jast/src/lib/jats.ts:11415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11415) ##### `data?` @@ -45383,13 +45383,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"tableWrapfoot"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11410) +Defined in: [libs/jast/jast/src/lib/jats.ts:11410](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11410) ##### `position?` @@ -45400,7 +45400,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -45410,9 +45410,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11409) +Defined in: [libs/jast/jast/src/lib/jats.ts:11409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11409) -*** +--- ### `TableWrapfootChildrenMap` @@ -45422,39 +45422,39 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11409](https://github.com/TrialAndE > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11419](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11419) +Defined in: [libs/jast/jast/src/lib/jats.ts:11419](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11419) ##### `fn` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11421) +Defined in: [libs/jast/jast/src/lib/jats.ts:11421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11421) ##### `fnGroup` > [`FnGroup`](modules.md#fngroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11423](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11423) +Defined in: [libs/jast/jast/src/lib/jats.ts:11423](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11423) ##### `p` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11425](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11425) +Defined in: [libs/jast/jast/src/lib/jats.ts:11425](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11425) ##### `permissions` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11427) +Defined in: [libs/jast/jast/src/lib/jats.ts:11427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11427) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:11429](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11429) +Defined in: [libs/jast/jast/src/lib/jats.ts:11429](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11429) -*** +--- ### `TableWrapgroup` @@ -45462,7 +45462,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TableWrapgroup** +- [`Node`](modules.md#node).**TableWrapgroup** #### Properties @@ -45481,20 +45481,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------------------------------ | +| `id`? | `string` | | `orientation`? | `TableWrapgroupTypeOrientation` | -| `position`? | `TableWrapgroupTypePosition` | -| `specificUse`? | `string` | +| `position`? | `TableWrapgroupTypePosition` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11435) +Defined in: [libs/jast/jast/src/lib/jats.ts:11435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11435) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TableWrapgroupChildrenMap`](modules.md#tablewrapgroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11442) +Defined in: [libs/jast/jast/src/lib/jats.ts:11442](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11442) ##### `data?` @@ -45504,13 +45504,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"tableWrapgroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11434) +Defined in: [libs/jast/jast/src/lib/jats.ts:11434](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11434) ##### `position?` @@ -45521,7 +45521,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -45531,9 +45531,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11433) +Defined in: [libs/jast/jast/src/lib/jats.ts:11433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11433) -*** +--- ### `TableWrapgroupChildrenMap` @@ -45543,87 +45543,87 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11433](https://github.com/TrialAndE > [`Abstract`](modules.md#abstract)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11447) +Defined in: [libs/jast/jast/src/lib/jats.ts:11447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11447) ##### `altText?` > [`AltText`](modules.md#alttext)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11449) +Defined in: [libs/jast/jast/src/lib/jats.ts:11449](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11449) ##### `caption?` > [`Caption`](modules.md#caption)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11451) +Defined in: [libs/jast/jast/src/lib/jats.ts:11451](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11451) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11453](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11453) +Defined in: [libs/jast/jast/src/lib/jats.ts:11453](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11453) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11455](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11455) +Defined in: [libs/jast/jast/src/lib/jats.ts:11455](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11455) ##### `kwdGroup?` > [`KwdGroup`](modules.md#kwdgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11457](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11457) +Defined in: [libs/jast/jast/src/lib/jats.ts:11457](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11457) ##### `label?` > [`Label`](modules.md#label)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11459](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11459) +Defined in: [libs/jast/jast/src/lib/jats.ts:11459](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11459) ##### `longDesc?` > [`LongDesc`](modules.md#longdesc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11461](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11461) +Defined in: [libs/jast/jast/src/lib/jats.ts:11461](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11461) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11463) +Defined in: [libs/jast/jast/src/lib/jats.ts:11463](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11463) ##### `subjGroup?` > [`SubjGroup`](modules.md#subjgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11464) +Defined in: [libs/jast/jast/src/lib/jats.ts:11464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11464) ##### `tableWrap` > [`TableWrap`](modules.md#tablewrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11466) +Defined in: [libs/jast/jast/src/lib/jats.ts:11466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11466) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:11446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11446) +Defined in: [libs/jast/jast/src/lib/jats.ts:11446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11446) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11468) +Defined in: [libs/jast/jast/src/lib/jats.ts:11468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11468) ##### `xref` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11470) +Defined in: [libs/jast/jast/src/lib/jats.ts:11470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11470) -*** +--- ### `Target` @@ -45631,7 +45631,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Target** +- [`Node`](modules.md#node).**Target** #### Properties @@ -45649,19 +45649,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id` | `string` | +| Member | Type | +| :------------- | :------- | +| `id` | `string` | | `specificUse`? | `string` | -| `targetType`? | `string` | +| `targetType`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11557) +Defined in: [libs/jast/jast/src/lib/jats.ts:11557](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11557) ##### `children` > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11563) +Defined in: [libs/jast/jast/src/lib/jats.ts:11563](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11563) ##### `data?` @@ -45671,13 +45671,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"target"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11556](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11556) +Defined in: [libs/jast/jast/src/lib/jats.ts:11556](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11556) ##### `position?` @@ -45688,7 +45688,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -45698,9 +45698,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11555) +Defined in: [libs/jast/jast/src/lib/jats.ts:11555](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11555) -*** +--- ### `TargetChildrenMap` @@ -45710,9 +45710,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11555](https://github.com/TrialAndE > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11567) +Defined in: [libs/jast/jast/src/lib/jats.ts:11567](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11567) -*** +--- ### `Tbody` @@ -45720,7 +45720,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Tbody** +- [`Node`](modules.md#node).**Tbody** #### Properties @@ -45741,22 +45741,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `align`? | `TbodyTypeAlign` | -| `char`? | `string` | -| `charoff`? | `string` | -| `id`? | `string` | -| `style`? | `string` | -| `valign`? | `TbodyTypeValign` | +| Member | Type | +| :--------- | :---------------- | +| `align`? | `TbodyTypeAlign` | +| `char`? | `string` | +| `charoff`? | `string` | +| `id`? | `string` | +| `style`? | `string` | +| `valign`? | `TbodyTypeValign` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11573) +Defined in: [libs/jast/jast/src/lib/jats.ts:11573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11573) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TbodyChildrenMap`](modules.md#tbodychildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11582) +Defined in: [libs/jast/jast/src/lib/jats.ts:11582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11582) ##### `data?` @@ -45766,13 +45766,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"tbody"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11572) +Defined in: [libs/jast/jast/src/lib/jats.ts:11572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11572) ##### `position?` @@ -45783,7 +45783,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -45793,9 +45793,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11571) +Defined in: [libs/jast/jast/src/lib/jats.ts:11571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11571) -*** +--- ### `TbodyChildrenMap` @@ -45805,15 +45805,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11571](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:11586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11586) +Defined in: [libs/jast/jast/src/lib/jats.ts:11586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11586) ##### `tr` > [`Tr`](modules.md#tr)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11587](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11587) +Defined in: [libs/jast/jast/src/lib/jats.ts:11587](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11587) -*** +--- ### `Td` @@ -45821,7 +45821,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Td** +- [`Node`](modules.md#node).**Td** #### Properties @@ -45848,28 +45848,28 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `abbr`? | `string` | -| `align`? | `TdTypeAlign` | -| `axis`? | `string` | -| `char`? | `string` | -| `charoff`? | `string` | -| `colspan`? | `string` | -| `headers`? | `string` | -| `id`? | `string` | -| `rowspan`? | `string` | -| `scope`? | `TdTypeScope` | -| `style`? | `string` | -| `valign`? | `TdTypeValign` | +| Member | Type | +| :--------- | :------------- | +| `abbr`? | `string` | +| `align`? | `TdTypeAlign` | +| `axis`? | `string` | +| `char`? | `string` | +| `charoff`? | `string` | +| `colspan`? | `string` | +| `headers`? | `string` | +| `id`? | `string` | +| `rowspan`? | `string` | +| `scope`? | `TdTypeScope` | +| `style`? | `string` | +| `valign`? | `TdTypeValign` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11597) +Defined in: [libs/jast/jast/src/lib/jats.ts:11597](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11597) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TdChildrenMap`](modules.md#tdchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11613) +Defined in: [libs/jast/jast/src/lib/jats.ts:11613](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11613) ##### `data?` @@ -45879,13 +45879,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"td"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11596) +Defined in: [libs/jast/jast/src/lib/jats.ts:11596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11596) ##### `position?` @@ -45896,7 +45896,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -45906,9 +45906,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11595) +Defined in: [libs/jast/jast/src/lib/jats.ts:11595](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11595) -*** +--- ### `TdChildrenMap` @@ -45918,381 +45918,381 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11595](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11618) +Defined in: [libs/jast/jast/src/lib/jats.ts:11618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11618) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11620) +Defined in: [libs/jast/jast/src/lib/jats.ts:11620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11620) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11622) +Defined in: [libs/jast/jast/src/lib/jats.ts:11622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11622) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11624) +Defined in: [libs/jast/jast/src/lib/jats.ts:11624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11624) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11626) +Defined in: [libs/jast/jast/src/lib/jats.ts:11626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11626) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11628) +Defined in: [libs/jast/jast/src/lib/jats.ts:11628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11628) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11630) +Defined in: [libs/jast/jast/src/lib/jats.ts:11630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11630) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11632) +Defined in: [libs/jast/jast/src/lib/jats.ts:11632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11632) ##### `citationAlternatives?` > [`CitationAlternatives`](modules.md#citationalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11634) +Defined in: [libs/jast/jast/src/lib/jats.ts:11634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11634) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11636) +Defined in: [libs/jast/jast/src/lib/jats.ts:11636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11636) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11638) +Defined in: [libs/jast/jast/src/lib/jats.ts:11638](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11638) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11640) +Defined in: [libs/jast/jast/src/lib/jats.ts:11640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11640) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11642) +Defined in: [libs/jast/jast/src/lib/jats.ts:11642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11642) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11644) +Defined in: [libs/jast/jast/src/lib/jats.ts:11644](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11644) ##### `elementCitation?` > [`ElementCitation`](modules.md#elementcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11646) +Defined in: [libs/jast/jast/src/lib/jats.ts:11646](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11646) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11648) +Defined in: [libs/jast/jast/src/lib/jats.ts:11648](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11648) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11650) +Defined in: [libs/jast/jast/src/lib/jats.ts:11650](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11650) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11652) +Defined in: [libs/jast/jast/src/lib/jats.ts:11652](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11652) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11654) +Defined in: [libs/jast/jast/src/lib/jats.ts:11654](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11654) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11656) +Defined in: [libs/jast/jast/src/lib/jats.ts:11656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11656) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11658) +Defined in: [libs/jast/jast/src/lib/jats.ts:11658](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11658) ##### `hr?` > [`Hr`](modules.md#hr)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11660) +Defined in: [libs/jast/jast/src/lib/jats.ts:11660](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11660) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11662) +Defined in: [libs/jast/jast/src/lib/jats.ts:11662](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11662) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11664) +Defined in: [libs/jast/jast/src/lib/jats.ts:11664](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11664) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11666) +Defined in: [libs/jast/jast/src/lib/jats.ts:11666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11666) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11668) +Defined in: [libs/jast/jast/src/lib/jats.ts:11668](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11668) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11670) +Defined in: [libs/jast/jast/src/lib/jats.ts:11670](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11670) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11672) +Defined in: [libs/jast/jast/src/lib/jats.ts:11672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11672) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11674) +Defined in: [libs/jast/jast/src/lib/jats.ts:11674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11674) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11676) +Defined in: [libs/jast/jast/src/lib/jats.ts:11676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11676) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11678) +Defined in: [libs/jast/jast/src/lib/jats.ts:11678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11678) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11680) +Defined in: [libs/jast/jast/src/lib/jats.ts:11680](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11680) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11682) +Defined in: [libs/jast/jast/src/lib/jats.ts:11682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11682) ##### `mixedCitation?` > [`MixedCitation`](modules.md#mixedcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11684) +Defined in: [libs/jast/jast/src/lib/jats.ts:11684](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11684) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11686) +Defined in: [libs/jast/jast/src/lib/jats.ts:11686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11686) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11688) +Defined in: [libs/jast/jast/src/lib/jats.ts:11688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11688) ##### `nlmCitation?` > [`NlmCitation`](modules.md#nlmcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11690) +Defined in: [libs/jast/jast/src/lib/jats.ts:11690](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11690) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11692) +Defined in: [libs/jast/jast/src/lib/jats.ts:11692](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11692) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11694) +Defined in: [libs/jast/jast/src/lib/jats.ts:11694](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11694) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11696) +Defined in: [libs/jast/jast/src/lib/jats.ts:11696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11696) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11698) +Defined in: [libs/jast/jast/src/lib/jats.ts:11698](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11698) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11700) +Defined in: [libs/jast/jast/src/lib/jats.ts:11700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11700) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11702) +Defined in: [libs/jast/jast/src/lib/jats.ts:11702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11702) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11704) +Defined in: [libs/jast/jast/src/lib/jats.ts:11704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11704) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11706) +Defined in: [libs/jast/jast/src/lib/jats.ts:11706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11706) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11708) +Defined in: [libs/jast/jast/src/lib/jats.ts:11708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11708) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11710) +Defined in: [libs/jast/jast/src/lib/jats.ts:11710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11710) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11712) +Defined in: [libs/jast/jast/src/lib/jats.ts:11712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11712) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11714) +Defined in: [libs/jast/jast/src/lib/jats.ts:11714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11714) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11716) +Defined in: [libs/jast/jast/src/lib/jats.ts:11716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11716) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11718) +Defined in: [libs/jast/jast/src/lib/jats.ts:11718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11718) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11720) +Defined in: [libs/jast/jast/src/lib/jats.ts:11720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11720) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11722) +Defined in: [libs/jast/jast/src/lib/jats.ts:11722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11722) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11724) +Defined in: [libs/jast/jast/src/lib/jats.ts:11724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11724) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11726) +Defined in: [libs/jast/jast/src/lib/jats.ts:11726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11726) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11728) +Defined in: [libs/jast/jast/src/lib/jats.ts:11728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11728) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11730) +Defined in: [libs/jast/jast/src/lib/jats.ts:11730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11730) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11732) +Defined in: [libs/jast/jast/src/lib/jats.ts:11732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11732) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:11617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11617) +Defined in: [libs/jast/jast/src/lib/jats.ts:11617](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11617) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11734) +Defined in: [libs/jast/jast/src/lib/jats.ts:11734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11734) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11736) +Defined in: [libs/jast/jast/src/lib/jats.ts:11736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11736) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11738) +Defined in: [libs/jast/jast/src/lib/jats.ts:11738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11738) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11740) +Defined in: [libs/jast/jast/src/lib/jats.ts:11740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11740) -*** +--- ### `Term` @@ -46300,7 +46300,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Term** +- [`Node`](modules.md#node).**Term** #### Properties @@ -46324,25 +46324,25 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid`? | `string` | -| `specificUse`? | `string` | -| `termStatus`? | `string` | -| `termType`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | -| `vocabTerm`? | `string` | +| Member | Type | +| :--------------------- | :------- | +| `id`? | `string` | +| `rid`? | `string` | +| `specificUse`? | `string` | +| `termStatus`? | `string` | +| `termType`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | +| `vocabTerm`? | `string` | | `vocabTermidentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11836) +Defined in: [libs/jast/jast/src/lib/jats.ts:11836](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11836) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TermChildrenMap`](modules.md#termchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11848) +Defined in: [libs/jast/jast/src/lib/jats.ts:11848](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11848) ##### `data?` @@ -46352,13 +46352,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"term"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11835](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11835) +Defined in: [libs/jast/jast/src/lib/jats.ts:11835](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11835) ##### `position?` @@ -46369,7 +46369,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -46379,9 +46379,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11834) +Defined in: [libs/jast/jast/src/lib/jats.ts:11834](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11834) -*** +--- ### `TermChildrenMap` @@ -46391,261 +46391,261 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11834](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11852) +Defined in: [libs/jast/jast/src/lib/jats.ts:11852](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11852) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11854) +Defined in: [libs/jast/jast/src/lib/jats.ts:11854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11854) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11856) +Defined in: [libs/jast/jast/src/lib/jats.ts:11856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11856) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11858) +Defined in: [libs/jast/jast/src/lib/jats.ts:11858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11858) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11860) +Defined in: [libs/jast/jast/src/lib/jats.ts:11860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11860) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11862) +Defined in: [libs/jast/jast/src/lib/jats.ts:11862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11862) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11864) +Defined in: [libs/jast/jast/src/lib/jats.ts:11864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11864) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11866) +Defined in: [libs/jast/jast/src/lib/jats.ts:11866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11866) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11868) +Defined in: [libs/jast/jast/src/lib/jats.ts:11868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11868) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11870) +Defined in: [libs/jast/jast/src/lib/jats.ts:11870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11870) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11872) +Defined in: [libs/jast/jast/src/lib/jats.ts:11872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11872) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11874) +Defined in: [libs/jast/jast/src/lib/jats.ts:11874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11874) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11876) +Defined in: [libs/jast/jast/src/lib/jats.ts:11876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11876) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11878) +Defined in: [libs/jast/jast/src/lib/jats.ts:11878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11878) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11880) +Defined in: [libs/jast/jast/src/lib/jats.ts:11880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11880) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11882) +Defined in: [libs/jast/jast/src/lib/jats.ts:11882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11882) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11884) +Defined in: [libs/jast/jast/src/lib/jats.ts:11884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11884) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11886) +Defined in: [libs/jast/jast/src/lib/jats.ts:11886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11886) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11888) +Defined in: [libs/jast/jast/src/lib/jats.ts:11888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11888) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11890) +Defined in: [libs/jast/jast/src/lib/jats.ts:11890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11890) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11892) +Defined in: [libs/jast/jast/src/lib/jats.ts:11892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11892) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11894) +Defined in: [libs/jast/jast/src/lib/jats.ts:11894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11894) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11896) +Defined in: [libs/jast/jast/src/lib/jats.ts:11896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11896) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11898) +Defined in: [libs/jast/jast/src/lib/jats.ts:11898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11898) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11900) +Defined in: [libs/jast/jast/src/lib/jats.ts:11900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11900) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11902) +Defined in: [libs/jast/jast/src/lib/jats.ts:11902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11902) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11904) +Defined in: [libs/jast/jast/src/lib/jats.ts:11904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11904) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11906) +Defined in: [libs/jast/jast/src/lib/jats.ts:11906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11906) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11908) +Defined in: [libs/jast/jast/src/lib/jats.ts:11908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11908) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11910) +Defined in: [libs/jast/jast/src/lib/jats.ts:11910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11910) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11912) +Defined in: [libs/jast/jast/src/lib/jats.ts:11912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11912) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11914) +Defined in: [libs/jast/jast/src/lib/jats.ts:11914](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11914) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11916) +Defined in: [libs/jast/jast/src/lib/jats.ts:11916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11916) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11918) +Defined in: [libs/jast/jast/src/lib/jats.ts:11918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11918) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11920) +Defined in: [libs/jast/jast/src/lib/jats.ts:11920](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11920) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11922) +Defined in: [libs/jast/jast/src/lib/jats.ts:11922](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11922) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11924) +Defined in: [libs/jast/jast/src/lib/jats.ts:11924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11924) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11926) +Defined in: [libs/jast/jast/src/lib/jats.ts:11926](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11926) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11928) +Defined in: [libs/jast/jast/src/lib/jats.ts:11928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11928) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11930) +Defined in: [libs/jast/jast/src/lib/jats.ts:11930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11930) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11932) +Defined in: [libs/jast/jast/src/lib/jats.ts:11932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11932) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11934) +Defined in: [libs/jast/jast/src/lib/jats.ts:11934](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11934) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11936) +Defined in: [libs/jast/jast/src/lib/jats.ts:11936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11936) -*** +--- ### `TermHead` @@ -46653,7 +46653,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TermHead** +- [`Node`](modules.md#node).**TermHead** #### Properties @@ -46669,17 +46669,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11752) +Defined in: [libs/jast/jast/src/lib/jats.ts:11752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11752) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TermHeadChildrenMap`](modules.md#termheadchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11756) +Defined in: [libs/jast/jast/src/lib/jats.ts:11756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11756) ##### `data?` @@ -46689,13 +46689,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"termHead"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11751) +Defined in: [libs/jast/jast/src/lib/jats.ts:11751](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11751) ##### `position?` @@ -46706,7 +46706,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -46716,9 +46716,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11750) +Defined in: [libs/jast/jast/src/lib/jats.ts:11750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11750) -*** +--- ### `TermHeadChildrenMap` @@ -46728,219 +46728,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11750](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11760) +Defined in: [libs/jast/jast/src/lib/jats.ts:11760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11760) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11762) +Defined in: [libs/jast/jast/src/lib/jats.ts:11762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11762) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11764) +Defined in: [libs/jast/jast/src/lib/jats.ts:11764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11764) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11766) +Defined in: [libs/jast/jast/src/lib/jats.ts:11766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11766) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11768) +Defined in: [libs/jast/jast/src/lib/jats.ts:11768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11768) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11770) +Defined in: [libs/jast/jast/src/lib/jats.ts:11770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11770) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11772) +Defined in: [libs/jast/jast/src/lib/jats.ts:11772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11772) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11774) +Defined in: [libs/jast/jast/src/lib/jats.ts:11774](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11774) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11776) +Defined in: [libs/jast/jast/src/lib/jats.ts:11776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11776) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11778) +Defined in: [libs/jast/jast/src/lib/jats.ts:11778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11778) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11780) +Defined in: [libs/jast/jast/src/lib/jats.ts:11780](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11780) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11782) +Defined in: [libs/jast/jast/src/lib/jats.ts:11782](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11782) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11784) +Defined in: [libs/jast/jast/src/lib/jats.ts:11784](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11784) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11786) +Defined in: [libs/jast/jast/src/lib/jats.ts:11786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11786) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11788) +Defined in: [libs/jast/jast/src/lib/jats.ts:11788](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11788) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11790) +Defined in: [libs/jast/jast/src/lib/jats.ts:11790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11790) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11792) +Defined in: [libs/jast/jast/src/lib/jats.ts:11792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11792) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11794) +Defined in: [libs/jast/jast/src/lib/jats.ts:11794](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11794) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11796) +Defined in: [libs/jast/jast/src/lib/jats.ts:11796](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11796) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11798) +Defined in: [libs/jast/jast/src/lib/jats.ts:11798](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11798) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11800) +Defined in: [libs/jast/jast/src/lib/jats.ts:11800](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11800) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11802) +Defined in: [libs/jast/jast/src/lib/jats.ts:11802](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11802) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11804) +Defined in: [libs/jast/jast/src/lib/jats.ts:11804](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11804) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11806) +Defined in: [libs/jast/jast/src/lib/jats.ts:11806](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11806) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11808) +Defined in: [libs/jast/jast/src/lib/jats.ts:11808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11808) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11810) +Defined in: [libs/jast/jast/src/lib/jats.ts:11810](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11810) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11812) +Defined in: [libs/jast/jast/src/lib/jats.ts:11812](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11812) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11814) +Defined in: [libs/jast/jast/src/lib/jats.ts:11814](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11814) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11816) +Defined in: [libs/jast/jast/src/lib/jats.ts:11816](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11816) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11818) +Defined in: [libs/jast/jast/src/lib/jats.ts:11818](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11818) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11820) +Defined in: [libs/jast/jast/src/lib/jats.ts:11820](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11820) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11822) +Defined in: [libs/jast/jast/src/lib/jats.ts:11822](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11822) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11824) +Defined in: [libs/jast/jast/src/lib/jats.ts:11824](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11824) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11826) +Defined in: [libs/jast/jast/src/lib/jats.ts:11826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11826) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11828) +Defined in: [libs/jast/jast/src/lib/jats.ts:11828](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11828) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11830) +Defined in: [libs/jast/jast/src/lib/jats.ts:11830](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11830) -*** +--- ### `TexMath` @@ -46948,7 +46948,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TexMath** +- [`Node`](modules.md#node).**TexMath** #### Properties @@ -46967,20 +46967,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `notation`? | `TexMathTypeNotation` | -| `specificUse`? | `string` | -| `version`? | `string` | +| Member | Type | +| :------------- | :-------------------- | +| `id`? | `string` | +| `notation`? | `TexMathTypeNotation` | +| `specificUse`? | `string` | +| `version`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11942) +Defined in: [libs/jast/jast/src/lib/jats.ts:11942](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11942) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11949](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11949) +Defined in: [libs/jast/jast/src/lib/jats.ts:11949](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11949) ##### `data?` @@ -46990,13 +46990,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"texMath"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11941](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11941) +Defined in: [libs/jast/jast/src/lib/jats.ts:11941](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11941) ##### `position?` @@ -47007,7 +47007,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -47017,9 +47017,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11940) +Defined in: [libs/jast/jast/src/lib/jats.ts:11940](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11940) -*** +--- ### `TexMathChildrenMap` @@ -47029,15 +47029,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11940](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:11953](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11953) +Defined in: [libs/jast/jast/src/lib/jats.ts:11953](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11953) -*** +--- ### `Text` #### Hierarchy -* `Literal`.**Text** +- `Literal`.**Text** #### Properties @@ -47049,7 +47049,7 @@ Information from the ecosystem. Inherited from: UnistLiteral.data -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `position?` @@ -47060,7 +47060,7 @@ Must not be present if a node is generated. Inherited from: UnistLiteral.position -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -47068,7 +47068,7 @@ Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/ Overrides: UnistLiteral.type -Defined in: [libs/jast/jast/src/lib/jats.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L43) +Defined in: [libs/jast/jast/src/lib/jats.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L43) ##### `value` @@ -47076,9 +47076,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:43](https://github.com/TrialAndErro Overrides: UnistLiteral.value -Defined in: [libs/jast/jast/src/lib/jats.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L44) +Defined in: [libs/jast/jast/src/lib/jats.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L44) -*** +--- ### `TextualForm` @@ -47086,7 +47086,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TextualForm** +- [`Node`](modules.md#node).**TextualForm** #### Properties @@ -47103,18 +47103,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:11961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11961) +Defined in: [libs/jast/jast/src/lib/jats.ts:11961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11961) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TextualFormChildrenMap`](modules.md#textualformchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11966) +Defined in: [libs/jast/jast/src/lib/jats.ts:11966](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11966) ##### `data?` @@ -47124,13 +47124,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"textualForm"` -Defined in: [libs/jast/jast/src/lib/jats.ts:11960](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11960) +Defined in: [libs/jast/jast/src/lib/jats.ts:11960](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11960) ##### `position?` @@ -47141,7 +47141,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -47151,9 +47151,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:11959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11959) +Defined in: [libs/jast/jast/src/lib/jats.ts:11959](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11959) -*** +--- ### `TextualFormChildrenMap` @@ -47163,117 +47163,117 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:11959](https://github.com/TrialAndE > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11970](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11970) +Defined in: [libs/jast/jast/src/lib/jats.ts:11970](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11970) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11972](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11972) +Defined in: [libs/jast/jast/src/lib/jats.ts:11972](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11972) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11974](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11974) +Defined in: [libs/jast/jast/src/lib/jats.ts:11974](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11974) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11976](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11976) +Defined in: [libs/jast/jast/src/lib/jats.ts:11976](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11976) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11978](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11978) +Defined in: [libs/jast/jast/src/lib/jats.ts:11978](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11978) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11980](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11980) +Defined in: [libs/jast/jast/src/lib/jats.ts:11980](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11980) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11982](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11982) +Defined in: [libs/jast/jast/src/lib/jats.ts:11982](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11982) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11984](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11984) +Defined in: [libs/jast/jast/src/lib/jats.ts:11984](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11984) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11986) +Defined in: [libs/jast/jast/src/lib/jats.ts:11986](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11986) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11988) +Defined in: [libs/jast/jast/src/lib/jats.ts:11988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11988) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11990](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11990) +Defined in: [libs/jast/jast/src/lib/jats.ts:11990](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11990) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11992](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11992) +Defined in: [libs/jast/jast/src/lib/jats.ts:11992](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11992) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11994) +Defined in: [libs/jast/jast/src/lib/jats.ts:11994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11994) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11996) +Defined in: [libs/jast/jast/src/lib/jats.ts:11996](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11996) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:11998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11998) +Defined in: [libs/jast/jast/src/lib/jats.ts:11998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L11998) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12000) +Defined in: [libs/jast/jast/src/lib/jats.ts:12000](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12000) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12002) +Defined in: [libs/jast/jast/src/lib/jats.ts:12002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12002) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12004) +Defined in: [libs/jast/jast/src/lib/jats.ts:12004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12004) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12006) +Defined in: [libs/jast/jast/src/lib/jats.ts:12006](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12006) -*** +--- ### `Tfoot` @@ -47281,7 +47281,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Tfoot** +- [`Node`](modules.md#node).**Tfoot** #### Properties @@ -47289,7 +47289,7 @@ Syntactic units in unist syntax trees are called nodes. > `TfootTypeAlign` -Defined in: [libs/jast/jast/src/lib/jats.ts:12012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12012) +Defined in: [libs/jast/jast/src/lib/jats.ts:12012](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12012) ##### `attributes` @@ -47307,21 +47307,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12012](https://github.com/TrialAndE ###### Type declaration -| Member | Type | -| :------ | :------ | -| `char`? | `string` | -| `charoff`? | `string` | -| `id`? | `string` | -| `style`? | `string` | -| `valign`? | `TfootTypeValign` | +| Member | Type | +| :--------- | :---------------- | +| `char`? | `string` | +| `charoff`? | `string` | +| `id`? | `string` | +| `style`? | `string` | +| `valign`? | `TfootTypeValign` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12013) +Defined in: [libs/jast/jast/src/lib/jats.ts:12013](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12013) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TfootChildrenMap`](modules.md#tfootchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12021) +Defined in: [libs/jast/jast/src/lib/jats.ts:12021](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12021) ##### `data?` @@ -47331,13 +47331,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"tfoot"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12011) +Defined in: [libs/jast/jast/src/lib/jats.ts:12011](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12011) ##### `position?` @@ -47348,7 +47348,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -47358,9 +47358,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12010) +Defined in: [libs/jast/jast/src/lib/jats.ts:12010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12010) -*** +--- ### `TfootChildrenMap` @@ -47370,15 +47370,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12010](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12025) +Defined in: [libs/jast/jast/src/lib/jats.ts:12025](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12025) ##### `tr` > [`Tr`](modules.md#tr)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12026](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12026) +Defined in: [libs/jast/jast/src/lib/jats.ts:12026](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12026) -*** +--- ### `Th` @@ -47386,7 +47386,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Th** +- [`Node`](modules.md#node).**Th** #### Properties @@ -47413,28 +47413,28 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `abbr`? | `string` | -| `align`? | `ThTypeAlign` | -| `axis`? | `string` | -| `char`? | `string` | -| `charoff`? | `string` | -| `colspan`? | `string` | -| `headers`? | `string` | -| `id`? | `string` | -| `rowspan`? | `string` | -| `scope`? | `ThTypeScope` | -| `style`? | `string` | -| `valign`? | `ThTypeValign` | +| Member | Type | +| :--------- | :------------- | +| `abbr`? | `string` | +| `align`? | `ThTypeAlign` | +| `axis`? | `string` | +| `char`? | `string` | +| `charoff`? | `string` | +| `colspan`? | `string` | +| `headers`? | `string` | +| `id`? | `string` | +| `rowspan`? | `string` | +| `scope`? | `ThTypeScope` | +| `style`? | `string` | +| `valign`? | `ThTypeValign` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12060](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12060) +Defined in: [libs/jast/jast/src/lib/jats.ts:12060](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12060) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`ThChildrenMap`](modules.md#thchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12077) +Defined in: [libs/jast/jast/src/lib/jats.ts:12077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12077) ##### `data?` @@ -47444,13 +47444,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"th"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12059) +Defined in: [libs/jast/jast/src/lib/jats.ts:12059](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12059) ##### `position?` @@ -47461,7 +47461,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -47471,9 +47471,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12058](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12058) +Defined in: [libs/jast/jast/src/lib/jats.ts:12058](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12058) -*** +--- ### `ThChildrenMap` @@ -47483,381 +47483,381 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12058](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12082) +Defined in: [libs/jast/jast/src/lib/jats.ts:12082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12082) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12084) +Defined in: [libs/jast/jast/src/lib/jats.ts:12084](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12084) ##### `answer?` > [`Answer`](modules.md#answer)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12086) +Defined in: [libs/jast/jast/src/lib/jats.ts:12086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12086) ##### `answerSet?` > [`AnswerSet`](modules.md#answerset)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12088) +Defined in: [libs/jast/jast/src/lib/jats.ts:12088](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12088) ##### `array?` > [`Array`](modules.md#array)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12090) +Defined in: [libs/jast/jast/src/lib/jats.ts:12090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12090) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12092) +Defined in: [libs/jast/jast/src/lib/jats.ts:12092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12092) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12094) +Defined in: [libs/jast/jast/src/lib/jats.ts:12094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12094) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12096) +Defined in: [libs/jast/jast/src/lib/jats.ts:12096](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12096) ##### `citationAlternatives?` > [`CitationAlternatives`](modules.md#citationalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12098) +Defined in: [libs/jast/jast/src/lib/jats.ts:12098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12098) ##### `code?` > [`Code`](modules.md#code)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12100) +Defined in: [libs/jast/jast/src/lib/jats.ts:12100](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12100) ##### `defList?` > [`DefList`](modules.md#deflist)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12102) +Defined in: [libs/jast/jast/src/lib/jats.ts:12102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12102) ##### `dispFormula?` > [`DispFormula`](modules.md#dispformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12104) +Defined in: [libs/jast/jast/src/lib/jats.ts:12104](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12104) ##### `dispFormulagroup?` > [`DispFormulagroup`](modules.md#dispformulagroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12106) +Defined in: [libs/jast/jast/src/lib/jats.ts:12106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12106) ##### `dispQuote?` > [`DispQuote`](modules.md#dispquote)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12108) +Defined in: [libs/jast/jast/src/lib/jats.ts:12108](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12108) ##### `elementCitation?` > [`ElementCitation`](modules.md#elementcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12110) +Defined in: [libs/jast/jast/src/lib/jats.ts:12110](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12110) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12112](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12112) +Defined in: [libs/jast/jast/src/lib/jats.ts:12112](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12112) ##### `explanation?` > [`Explanation`](modules.md#explanation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12114) +Defined in: [libs/jast/jast/src/lib/jats.ts:12114](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12114) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12116) +Defined in: [libs/jast/jast/src/lib/jats.ts:12116](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12116) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12118) +Defined in: [libs/jast/jast/src/lib/jats.ts:12118](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12118) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12120) +Defined in: [libs/jast/jast/src/lib/jats.ts:12120](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12120) ##### `graphic?` > [`Graphic`](modules.md#graphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12122) +Defined in: [libs/jast/jast/src/lib/jats.ts:12122](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12122) ##### `hr?` > [`Hr`](modules.md#hr)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12124](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12124) +Defined in: [libs/jast/jast/src/lib/jats.ts:12124](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12124) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12126) +Defined in: [libs/jast/jast/src/lib/jats.ts:12126](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12126) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12128) +Defined in: [libs/jast/jast/src/lib/jats.ts:12128](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12128) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12130) +Defined in: [libs/jast/jast/src/lib/jats.ts:12130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12130) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12132) +Defined in: [libs/jast/jast/src/lib/jats.ts:12132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12132) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12134](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12134) +Defined in: [libs/jast/jast/src/lib/jats.ts:12134](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12134) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12136) +Defined in: [libs/jast/jast/src/lib/jats.ts:12136](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12136) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12138) +Defined in: [libs/jast/jast/src/lib/jats.ts:12138](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12138) ##### `list?` > [`List`](modules.md#list)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12140](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12140) +Defined in: [libs/jast/jast/src/lib/jats.ts:12140](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12140) ##### `media?` > [`Media`](modules.md#media)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12142) +Defined in: [libs/jast/jast/src/lib/jats.ts:12142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12142) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12144) +Defined in: [libs/jast/jast/src/lib/jats.ts:12144](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12144) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12146) +Defined in: [libs/jast/jast/src/lib/jats.ts:12146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12146) ##### `mixedCitation?` > [`MixedCitation`](modules.md#mixedcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12148) +Defined in: [libs/jast/jast/src/lib/jats.ts:12148](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12148) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12150) +Defined in: [libs/jast/jast/src/lib/jats.ts:12150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12150) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12152) +Defined in: [libs/jast/jast/src/lib/jats.ts:12152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12152) ##### `nlmCitation?` > [`NlmCitation`](modules.md#nlmcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12154) +Defined in: [libs/jast/jast/src/lib/jats.ts:12154](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12154) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12156](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12156) +Defined in: [libs/jast/jast/src/lib/jats.ts:12156](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12156) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12158) +Defined in: [libs/jast/jast/src/lib/jats.ts:12158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12158) ##### `preformat?` > [`Preformat`](modules.md#preformat)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12160) +Defined in: [libs/jast/jast/src/lib/jats.ts:12160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12160) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12162](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12162) +Defined in: [libs/jast/jast/src/lib/jats.ts:12162](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12162) ##### `question?` > [`Question`](modules.md#question)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12164) +Defined in: [libs/jast/jast/src/lib/jats.ts:12164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12164) ##### `questionWrap?` > [`QuestionWrap`](modules.md#questionwrap)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12166) +Defined in: [libs/jast/jast/src/lib/jats.ts:12166](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12166) ##### `questionWrapgroup?` > [`QuestionWrapgroup`](modules.md#questionwrapgroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12168) +Defined in: [libs/jast/jast/src/lib/jats.ts:12168](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12168) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12170) +Defined in: [libs/jast/jast/src/lib/jats.ts:12170](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12170) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12172) +Defined in: [libs/jast/jast/src/lib/jats.ts:12172](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12172) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12174) +Defined in: [libs/jast/jast/src/lib/jats.ts:12174](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12174) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12176) +Defined in: [libs/jast/jast/src/lib/jats.ts:12176](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12176) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12178) +Defined in: [libs/jast/jast/src/lib/jats.ts:12178](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12178) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12180) +Defined in: [libs/jast/jast/src/lib/jats.ts:12180](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12180) ##### `speech?` > [`Speech`](modules.md#speech)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12182) +Defined in: [libs/jast/jast/src/lib/jats.ts:12182](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12182) ##### `statement?` > [`Statement`](modules.md#statement)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12184) +Defined in: [libs/jast/jast/src/lib/jats.ts:12184](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12184) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12186](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12186) +Defined in: [libs/jast/jast/src/lib/jats.ts:12186](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12186) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12188) +Defined in: [libs/jast/jast/src/lib/jats.ts:12188](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12188) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12190) +Defined in: [libs/jast/jast/src/lib/jats.ts:12190](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12190) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12192) +Defined in: [libs/jast/jast/src/lib/jats.ts:12192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12192) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12194) +Defined in: [libs/jast/jast/src/lib/jats.ts:12194](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12194) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12196) +Defined in: [libs/jast/jast/src/lib/jats.ts:12196](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12196) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12081](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12081) +Defined in: [libs/jast/jast/src/lib/jats.ts:12081](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12081) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12198) +Defined in: [libs/jast/jast/src/lib/jats.ts:12198](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12198) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12200) +Defined in: [libs/jast/jast/src/lib/jats.ts:12200](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12200) ##### `verseGroup?` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12202) +Defined in: [libs/jast/jast/src/lib/jats.ts:12202](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12202) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12204) +Defined in: [libs/jast/jast/src/lib/jats.ts:12204](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12204) -*** +--- ### `Thead` @@ -47865,7 +47865,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Thead** +- [`Node`](modules.md#node).**Thead** #### Properties @@ -47886,22 +47886,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `align`? | `TheadTypeAlign` | -| `char`? | `string` | -| `charoff`? | `string` | -| `id`? | `string` | -| `style`? | `string` | -| `valign`? | `TheadTypeValign` | +| Member | Type | +| :--------- | :---------------- | +| `align`? | `TheadTypeAlign` | +| `char`? | `string` | +| `charoff`? | `string` | +| `id`? | `string` | +| `style`? | `string` | +| `valign`? | `TheadTypeValign` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12036](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12036) +Defined in: [libs/jast/jast/src/lib/jats.ts:12036](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12036) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TheadChildrenMap`](modules.md#theadchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12045) +Defined in: [libs/jast/jast/src/lib/jats.ts:12045](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12045) ##### `data?` @@ -47911,13 +47911,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"thead"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12035) +Defined in: [libs/jast/jast/src/lib/jats.ts:12035](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12035) ##### `position?` @@ -47928,7 +47928,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -47938,9 +47938,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12034) +Defined in: [libs/jast/jast/src/lib/jats.ts:12034](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12034) -*** +--- ### `TheadChildrenMap` @@ -47950,15 +47950,15 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12034](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12049) +Defined in: [libs/jast/jast/src/lib/jats.ts:12049](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12049) ##### `tr` > [`Tr`](modules.md#tr)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12050](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12050) +Defined in: [libs/jast/jast/src/lib/jats.ts:12050](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12050) -*** +--- ### `TimeStamp` @@ -47966,7 +47966,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TimeStamp** +- [`Node`](modules.md#node).**TimeStamp** #### Properties @@ -47983,18 +47983,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12216) +Defined in: [libs/jast/jast/src/lib/jats.ts:12216](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12216) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12221](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12221) +Defined in: [libs/jast/jast/src/lib/jats.ts:12221](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12221) ##### `data?` @@ -48004,13 +48004,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"timeStamp"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12215](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12215) +Defined in: [libs/jast/jast/src/lib/jats.ts:12215](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12215) ##### `position?` @@ -48021,7 +48021,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -48031,9 +48031,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12214) +Defined in: [libs/jast/jast/src/lib/jats.ts:12214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12214) -*** +--- ### `TimeStampChildrenMap` @@ -48043,9 +48043,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12214](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12225) +Defined in: [libs/jast/jast/src/lib/jats.ts:12225](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12225) -*** +--- ### `Title` @@ -48053,7 +48053,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Title** +- [`Node`](modules.md#node).**Title** #### Properties @@ -48070,18 +48070,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12253) +Defined in: [libs/jast/jast/src/lib/jats.ts:12253](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12253) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TitleChildrenMap`](modules.md#titlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12258) +Defined in: [libs/jast/jast/src/lib/jats.ts:12258](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12258) ##### `data?` @@ -48091,13 +48091,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"title"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12252) +Defined in: [libs/jast/jast/src/lib/jats.ts:12252](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12252) ##### `position?` @@ -48108,7 +48108,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -48118,9 +48118,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12251) +Defined in: [libs/jast/jast/src/lib/jats.ts:12251](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12251) -*** +--- ### `TitleChildrenMap` @@ -48130,255 +48130,255 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12251](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12264](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12264) +Defined in: [libs/jast/jast/src/lib/jats.ts:12264](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12264) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12266) +Defined in: [libs/jast/jast/src/lib/jats.ts:12266](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12266) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12268) +Defined in: [libs/jast/jast/src/lib/jats.ts:12268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12268) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12270](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12270) +Defined in: [libs/jast/jast/src/lib/jats.ts:12270](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12270) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12272) +Defined in: [libs/jast/jast/src/lib/jats.ts:12272](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12272) ##### `citationAlternatives?` > [`CitationAlternatives`](modules.md#citationalternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12274) +Defined in: [libs/jast/jast/src/lib/jats.ts:12274](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12274) ##### `elementCitation?` > [`ElementCitation`](modules.md#elementcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12276) +Defined in: [libs/jast/jast/src/lib/jats.ts:12276](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12276) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12278) +Defined in: [libs/jast/jast/src/lib/jats.ts:12278](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12278) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12280](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12280) +Defined in: [libs/jast/jast/src/lib/jats.ts:12280](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12280) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12282) +Defined in: [libs/jast/jast/src/lib/jats.ts:12282](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12282) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12284](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12284) +Defined in: [libs/jast/jast/src/lib/jats.ts:12284](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12284) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12286](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12286) +Defined in: [libs/jast/jast/src/lib/jats.ts:12286](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12286) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12288) +Defined in: [libs/jast/jast/src/lib/jats.ts:12288](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12288) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12290](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12290) +Defined in: [libs/jast/jast/src/lib/jats.ts:12290](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12290) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12292](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12292) +Defined in: [libs/jast/jast/src/lib/jats.ts:12292](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12292) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12294) +Defined in: [libs/jast/jast/src/lib/jats.ts:12294](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12294) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12296) +Defined in: [libs/jast/jast/src/lib/jats.ts:12296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12296) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12298](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12298) +Defined in: [libs/jast/jast/src/lib/jats.ts:12298](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12298) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12300) +Defined in: [libs/jast/jast/src/lib/jats.ts:12300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12300) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12302) +Defined in: [libs/jast/jast/src/lib/jats.ts:12302](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12302) ##### `mixedCitation?` > [`MixedCitation`](modules.md#mixedcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12304](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12304) +Defined in: [libs/jast/jast/src/lib/jats.ts:12304](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12304) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12306) +Defined in: [libs/jast/jast/src/lib/jats.ts:12306](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12306) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12308) +Defined in: [libs/jast/jast/src/lib/jats.ts:12308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12308) ##### `nlmCitation?` > [`NlmCitation`](modules.md#nlmcitation)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12310) +Defined in: [libs/jast/jast/src/lib/jats.ts:12310](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12310) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12312) +Defined in: [libs/jast/jast/src/lib/jats.ts:12312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12312) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12314) +Defined in: [libs/jast/jast/src/lib/jats.ts:12314](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12314) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12316) +Defined in: [libs/jast/jast/src/lib/jats.ts:12316](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12316) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12318) +Defined in: [libs/jast/jast/src/lib/jats.ts:12318](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12318) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12320) +Defined in: [libs/jast/jast/src/lib/jats.ts:12320](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12320) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12322) +Defined in: [libs/jast/jast/src/lib/jats.ts:12322](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12322) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12324) +Defined in: [libs/jast/jast/src/lib/jats.ts:12324](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12324) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12326) +Defined in: [libs/jast/jast/src/lib/jats.ts:12326](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12326) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12328) +Defined in: [libs/jast/jast/src/lib/jats.ts:12328](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12328) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12330) +Defined in: [libs/jast/jast/src/lib/jats.ts:12330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12330) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12332) +Defined in: [libs/jast/jast/src/lib/jats.ts:12332](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12332) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12334) +Defined in: [libs/jast/jast/src/lib/jats.ts:12334](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12334) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12336) +Defined in: [libs/jast/jast/src/lib/jats.ts:12336](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12336) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12338) +Defined in: [libs/jast/jast/src/lib/jats.ts:12338](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12338) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12262) +Defined in: [libs/jast/jast/src/lib/jats.ts:12262](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12262) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12340) +Defined in: [libs/jast/jast/src/lib/jats.ts:12340](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12340) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12342) +Defined in: [libs/jast/jast/src/lib/jats.ts:12342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12342) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12344) +Defined in: [libs/jast/jast/src/lib/jats.ts:12344](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12344) -*** +--- ### `TitleGroup` @@ -48386,7 +48386,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TitleGroup** +- [`Node`](modules.md#node).**TitleGroup** #### Properties @@ -48402,17 +48402,17 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :----- | :------- | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12231) +Defined in: [libs/jast/jast/src/lib/jats.ts:12231](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12231) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TitleGroupChildrenMap`](modules.md#titlegroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12235) +Defined in: [libs/jast/jast/src/lib/jats.ts:12235](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12235) ##### `data?` @@ -48422,13 +48422,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"titleGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12230) +Defined in: [libs/jast/jast/src/lib/jats.ts:12230](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12230) ##### `position?` @@ -48439,7 +48439,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -48449,9 +48449,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12229) +Defined in: [libs/jast/jast/src/lib/jats.ts:12229](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12229) -*** +--- ### `TitleGroupChildrenMap` @@ -48461,33 +48461,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12229](https://github.com/TrialAndE > [`AltTitle`](modules.md#alttitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12239) +Defined in: [libs/jast/jast/src/lib/jats.ts:12239](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12239) ##### `articleTitle` > [`ArticleTitle`](modules.md#articletitle) -Defined in: [libs/jast/jast/src/lib/jats.ts:12241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12241) +Defined in: [libs/jast/jast/src/lib/jats.ts:12241](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12241) ##### `fnGroup?` > [`FnGroup`](modules.md#fngroup) -Defined in: [libs/jast/jast/src/lib/jats.ts:12243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12243) +Defined in: [libs/jast/jast/src/lib/jats.ts:12243](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12243) ##### `subtitle?` > [`Subtitle`](modules.md#subtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12245) +Defined in: [libs/jast/jast/src/lib/jats.ts:12245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12245) ##### `transTitlegroup?` > [`TransTitlegroup`](modules.md#transtitlegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12247) +Defined in: [libs/jast/jast/src/lib/jats.ts:12247](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12247) -*** +--- ### `Tr` @@ -48495,7 +48495,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Tr** +- [`Node`](modules.md#node).**Tr** #### Properties @@ -48516,22 +48516,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `align`? | `TrTypeAlign` | -| `char`? | `string` | -| `charoff`? | `string` | -| `id`? | `string` | -| `style`? | `string` | -| `valign`? | `TrTypeValign` | +| Member | Type | +| :--------- | :------------- | +| `align`? | `TrTypeAlign` | +| `char`? | `string` | +| `charoff`? | `string` | +| `id`? | `string` | +| `style`? | `string` | +| `valign`? | `TrTypeValign` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12642) +Defined in: [libs/jast/jast/src/lib/jats.ts:12642](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12642) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TrChildrenMap`](modules.md#trchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12651](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12651) +Defined in: [libs/jast/jast/src/lib/jats.ts:12651](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12651) ##### `data?` @@ -48541,13 +48541,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"tr"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12641) +Defined in: [libs/jast/jast/src/lib/jats.ts:12641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12641) ##### `position?` @@ -48558,7 +48558,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -48568,9 +48568,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12640) +Defined in: [libs/jast/jast/src/lib/jats.ts:12640](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12640) -*** +--- ### `TrChildrenMap` @@ -48580,21 +48580,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12640](https://github.com/TrialAndE > [`Td`](modules.md#td)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12656) +Defined in: [libs/jast/jast/src/lib/jats.ts:12656](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12656) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12655) +Defined in: [libs/jast/jast/src/lib/jats.ts:12655](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12655) ##### `th` > [`Th`](modules.md#th)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12657) +Defined in: [libs/jast/jast/src/lib/jats.ts:12657](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12657) -*** +--- ### `TransAbstract` @@ -48602,7 +48602,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TransAbstract** +- [`Node`](modules.md#node).**TransAbstract** #### Properties @@ -48620,19 +48620,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------- | :------- | | `abstractType`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12350) +Defined in: [libs/jast/jast/src/lib/jats.ts:12350](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12350) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TransAbstractChildrenMap`](modules.md#transabstractchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12356) +Defined in: [libs/jast/jast/src/lib/jats.ts:12356](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12356) ##### `data?` @@ -48642,13 +48642,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"transAbstract"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12349) +Defined in: [libs/jast/jast/src/lib/jats.ts:12349](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12349) ##### `position?` @@ -48659,7 +48659,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -48669,9 +48669,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12348) +Defined in: [libs/jast/jast/src/lib/jats.ts:12348](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12348) -*** +--- ### `TransAbstractChildrenMap` @@ -48681,33 +48681,33 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12348](https://github.com/TrialAndE > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:12360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12360) +Defined in: [libs/jast/jast/src/lib/jats.ts:12360](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12360) ##### `objectId?` > [`ObjectId`](modules.md#objectid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12362) +Defined in: [libs/jast/jast/src/lib/jats.ts:12362](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12362) ##### `p?` > [`P`](modules.md#p)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12364) +Defined in: [libs/jast/jast/src/lib/jats.ts:12364](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12364) ##### `sec?` > [`Sec`](modules.md#sec)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12366) +Defined in: [libs/jast/jast/src/lib/jats.ts:12366](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12366) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:12368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12368) +Defined in: [libs/jast/jast/src/lib/jats.ts:12368](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12368) -*** +--- ### `TransSource` @@ -48715,7 +48715,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TransSource** +- [`Node`](modules.md#node).**TransSource** #### Properties @@ -48732,18 +48732,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12374) +Defined in: [libs/jast/jast/src/lib/jats.ts:12374](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12374) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TransSourceChildrenMap`](modules.md#transsourcechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12379](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12379) +Defined in: [libs/jast/jast/src/lib/jats.ts:12379](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12379) ##### `data?` @@ -48753,13 +48753,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"transSource"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12373) +Defined in: [libs/jast/jast/src/lib/jats.ts:12373](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12373) ##### `position?` @@ -48770,7 +48770,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -48780,9 +48780,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12372) +Defined in: [libs/jast/jast/src/lib/jats.ts:12372](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12372) -*** +--- ### `TransSourceChildrenMap` @@ -48792,183 +48792,183 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12372](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12385) +Defined in: [libs/jast/jast/src/lib/jats.ts:12385](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12385) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12387) +Defined in: [libs/jast/jast/src/lib/jats.ts:12387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12387) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12389) +Defined in: [libs/jast/jast/src/lib/jats.ts:12389](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12389) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12391) +Defined in: [libs/jast/jast/src/lib/jats.ts:12391](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12391) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12393) +Defined in: [libs/jast/jast/src/lib/jats.ts:12393](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12393) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12395) +Defined in: [libs/jast/jast/src/lib/jats.ts:12395](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12395) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12397) +Defined in: [libs/jast/jast/src/lib/jats.ts:12397](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12397) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12399) +Defined in: [libs/jast/jast/src/lib/jats.ts:12399](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12399) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12401) +Defined in: [libs/jast/jast/src/lib/jats.ts:12401](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12401) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12403) +Defined in: [libs/jast/jast/src/lib/jats.ts:12403](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12403) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12405) +Defined in: [libs/jast/jast/src/lib/jats.ts:12405](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12405) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12407) +Defined in: [libs/jast/jast/src/lib/jats.ts:12407](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12407) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12409) +Defined in: [libs/jast/jast/src/lib/jats.ts:12409](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12409) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12411) +Defined in: [libs/jast/jast/src/lib/jats.ts:12411](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12411) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12413) +Defined in: [libs/jast/jast/src/lib/jats.ts:12413](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12413) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12415) +Defined in: [libs/jast/jast/src/lib/jats.ts:12415](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12415) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12417](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12417) +Defined in: [libs/jast/jast/src/lib/jats.ts:12417](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12417) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12419](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12419) +Defined in: [libs/jast/jast/src/lib/jats.ts:12419](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12419) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12421) +Defined in: [libs/jast/jast/src/lib/jats.ts:12421](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12421) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12423](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12423) +Defined in: [libs/jast/jast/src/lib/jats.ts:12423](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12423) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12425](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12425) +Defined in: [libs/jast/jast/src/lib/jats.ts:12425](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12425) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12427) +Defined in: [libs/jast/jast/src/lib/jats.ts:12427](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12427) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12429](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12429) +Defined in: [libs/jast/jast/src/lib/jats.ts:12429](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12429) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12431) +Defined in: [libs/jast/jast/src/lib/jats.ts:12431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12431) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12433) +Defined in: [libs/jast/jast/src/lib/jats.ts:12433](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12433) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12435) +Defined in: [libs/jast/jast/src/lib/jats.ts:12435](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12435) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12383) +Defined in: [libs/jast/jast/src/lib/jats.ts:12383](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12383) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12437) +Defined in: [libs/jast/jast/src/lib/jats.ts:12437](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12437) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12439](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12439) +Defined in: [libs/jast/jast/src/lib/jats.ts:12439](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12439) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12441) +Defined in: [libs/jast/jast/src/lib/jats.ts:12441](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12441) -*** +--- ### `TransSubtitle` @@ -48976,7 +48976,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TransSubtitle** +- [`Node`](modules.md#node).**TransSubtitle** #### Properties @@ -48993,18 +48993,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12447) +Defined in: [libs/jast/jast/src/lib/jats.ts:12447](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12447) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TransSubtitleChildrenMap`](modules.md#transsubtitlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12452) +Defined in: [libs/jast/jast/src/lib/jats.ts:12452](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12452) ##### `data?` @@ -49014,13 +49014,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"transSubtitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12446) +Defined in: [libs/jast/jast/src/lib/jats.ts:12446](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12446) ##### `position?` @@ -49031,7 +49031,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -49041,9 +49041,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12445) +Defined in: [libs/jast/jast/src/lib/jats.ts:12445](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12445) -*** +--- ### `TransSubtitleChildrenMap` @@ -49053,225 +49053,225 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12445](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12456) +Defined in: [libs/jast/jast/src/lib/jats.ts:12456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12456) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12458) +Defined in: [libs/jast/jast/src/lib/jats.ts:12458](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12458) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12460) +Defined in: [libs/jast/jast/src/lib/jats.ts:12460](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12460) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12462) +Defined in: [libs/jast/jast/src/lib/jats.ts:12462](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12462) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12464) +Defined in: [libs/jast/jast/src/lib/jats.ts:12464](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12464) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12466) +Defined in: [libs/jast/jast/src/lib/jats.ts:12466](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12466) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12468) +Defined in: [libs/jast/jast/src/lib/jats.ts:12468](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12468) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12470) +Defined in: [libs/jast/jast/src/lib/jats.ts:12470](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12470) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12472) +Defined in: [libs/jast/jast/src/lib/jats.ts:12472](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12472) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12474) +Defined in: [libs/jast/jast/src/lib/jats.ts:12474](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12474) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12476) +Defined in: [libs/jast/jast/src/lib/jats.ts:12476](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12476) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12478) +Defined in: [libs/jast/jast/src/lib/jats.ts:12478](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12478) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12480) +Defined in: [libs/jast/jast/src/lib/jats.ts:12480](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12480) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12482) +Defined in: [libs/jast/jast/src/lib/jats.ts:12482](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12482) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12484) +Defined in: [libs/jast/jast/src/lib/jats.ts:12484](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12484) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12486) +Defined in: [libs/jast/jast/src/lib/jats.ts:12486](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12486) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12488) +Defined in: [libs/jast/jast/src/lib/jats.ts:12488](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12488) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12490](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12490) +Defined in: [libs/jast/jast/src/lib/jats.ts:12490](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12490) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12492) +Defined in: [libs/jast/jast/src/lib/jats.ts:12492](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12492) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12494) +Defined in: [libs/jast/jast/src/lib/jats.ts:12494](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12494) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12496) +Defined in: [libs/jast/jast/src/lib/jats.ts:12496](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12496) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12498) +Defined in: [libs/jast/jast/src/lib/jats.ts:12498](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12498) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12500) +Defined in: [libs/jast/jast/src/lib/jats.ts:12500](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12500) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12502](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12502) +Defined in: [libs/jast/jast/src/lib/jats.ts:12502](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12502) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12504) +Defined in: [libs/jast/jast/src/lib/jats.ts:12504](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12504) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12506) +Defined in: [libs/jast/jast/src/lib/jats.ts:12506](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12506) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12508) +Defined in: [libs/jast/jast/src/lib/jats.ts:12508](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12508) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12510](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12510) +Defined in: [libs/jast/jast/src/lib/jats.ts:12510](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12510) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12512) +Defined in: [libs/jast/jast/src/lib/jats.ts:12512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12512) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12514) +Defined in: [libs/jast/jast/src/lib/jats.ts:12514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12514) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12516) +Defined in: [libs/jast/jast/src/lib/jats.ts:12516](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12516) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12518) +Defined in: [libs/jast/jast/src/lib/jats.ts:12518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12518) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12520) +Defined in: [libs/jast/jast/src/lib/jats.ts:12520](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12520) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12522) +Defined in: [libs/jast/jast/src/lib/jats.ts:12522](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12522) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12524) +Defined in: [libs/jast/jast/src/lib/jats.ts:12524](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12524) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12526) +Defined in: [libs/jast/jast/src/lib/jats.ts:12526](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12526) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12528) +Defined in: [libs/jast/jast/src/lib/jats.ts:12528](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12528) -*** +--- ### `TransTitle` @@ -49279,7 +49279,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TransTitle** +- [`Node`](modules.md#node).**TransTitle** #### Properties @@ -49296,18 +49296,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12553) +Defined in: [libs/jast/jast/src/lib/jats.ts:12553](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12553) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TransTitleChildrenMap`](modules.md#transtitlechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12558) +Defined in: [libs/jast/jast/src/lib/jats.ts:12558](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12558) ##### `data?` @@ -49317,13 +49317,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"transTitle"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12552) +Defined in: [libs/jast/jast/src/lib/jats.ts:12552](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12552) ##### `position?` @@ -49334,7 +49334,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -49344,9 +49344,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12551) +Defined in: [libs/jast/jast/src/lib/jats.ts:12551](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12551) -*** +--- ### `TransTitleChildrenMap` @@ -49356,231 +49356,231 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12551](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12564](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12564) +Defined in: [libs/jast/jast/src/lib/jats.ts:12564](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12564) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12566](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12566) +Defined in: [libs/jast/jast/src/lib/jats.ts:12566](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12566) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12568](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12568) +Defined in: [libs/jast/jast/src/lib/jats.ts:12568](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12568) ##### `break?` > [`Break`](modules.md#break)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12570](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12570) +Defined in: [libs/jast/jast/src/lib/jats.ts:12570](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12570) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12572) +Defined in: [libs/jast/jast/src/lib/jats.ts:12572](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12572) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12574](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12574) +Defined in: [libs/jast/jast/src/lib/jats.ts:12574](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12574) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12576) +Defined in: [libs/jast/jast/src/lib/jats.ts:12576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12576) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12578](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12578) +Defined in: [libs/jast/jast/src/lib/jats.ts:12578](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12578) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12580](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12580) +Defined in: [libs/jast/jast/src/lib/jats.ts:12580](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12580) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12582) +Defined in: [libs/jast/jast/src/lib/jats.ts:12582](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12582) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12584) +Defined in: [libs/jast/jast/src/lib/jats.ts:12584](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12584) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12586) +Defined in: [libs/jast/jast/src/lib/jats.ts:12586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12586) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12588) +Defined in: [libs/jast/jast/src/lib/jats.ts:12588](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12588) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12590) +Defined in: [libs/jast/jast/src/lib/jats.ts:12590](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12590) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12592) +Defined in: [libs/jast/jast/src/lib/jats.ts:12592](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12592) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12594) +Defined in: [libs/jast/jast/src/lib/jats.ts:12594](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12594) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12596) +Defined in: [libs/jast/jast/src/lib/jats.ts:12596](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12596) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12598) +Defined in: [libs/jast/jast/src/lib/jats.ts:12598](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12598) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12600) +Defined in: [libs/jast/jast/src/lib/jats.ts:12600](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12600) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12602) +Defined in: [libs/jast/jast/src/lib/jats.ts:12602](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12602) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12604) +Defined in: [libs/jast/jast/src/lib/jats.ts:12604](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12604) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12606) +Defined in: [libs/jast/jast/src/lib/jats.ts:12606](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12606) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12608) +Defined in: [libs/jast/jast/src/lib/jats.ts:12608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12608) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12610) +Defined in: [libs/jast/jast/src/lib/jats.ts:12610](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12610) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12612) +Defined in: [libs/jast/jast/src/lib/jats.ts:12612](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12612) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12614](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12614) +Defined in: [libs/jast/jast/src/lib/jats.ts:12614](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12614) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12616) +Defined in: [libs/jast/jast/src/lib/jats.ts:12616](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12616) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12618) +Defined in: [libs/jast/jast/src/lib/jats.ts:12618](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12618) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12620) +Defined in: [libs/jast/jast/src/lib/jats.ts:12620](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12620) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12622) +Defined in: [libs/jast/jast/src/lib/jats.ts:12622](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12622) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12624) +Defined in: [libs/jast/jast/src/lib/jats.ts:12624](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12624) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12626) +Defined in: [libs/jast/jast/src/lib/jats.ts:12626](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12626) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12628) +Defined in: [libs/jast/jast/src/lib/jats.ts:12628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12628) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12630) +Defined in: [libs/jast/jast/src/lib/jats.ts:12630](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12630) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12562) +Defined in: [libs/jast/jast/src/lib/jats.ts:12562](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12562) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12632) +Defined in: [libs/jast/jast/src/lib/jats.ts:12632](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12632) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12634) +Defined in: [libs/jast/jast/src/lib/jats.ts:12634](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12634) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12636) +Defined in: [libs/jast/jast/src/lib/jats.ts:12636](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12636) -*** +--- ### `TransTitlegroup` @@ -49588,7 +49588,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**TransTitlegroup** +- [`Node`](modules.md#node).**TransTitlegroup** #### Properties @@ -49605,18 +49605,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12534) +Defined in: [libs/jast/jast/src/lib/jats.ts:12534](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12534) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`TransTitlegroupChildrenMap`](modules.md#transtitlegroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12539) +Defined in: [libs/jast/jast/src/lib/jats.ts:12539](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12539) ##### `data?` @@ -49626,13 +49626,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"transTitlegroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12533) +Defined in: [libs/jast/jast/src/lib/jats.ts:12533](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12533) ##### `position?` @@ -49643,7 +49643,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -49653,9 +49653,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12532) +Defined in: [libs/jast/jast/src/lib/jats.ts:12532](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12532) -*** +--- ### `TransTitlegroupChildrenMap` @@ -49665,21 +49665,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12532](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12543) +Defined in: [libs/jast/jast/src/lib/jats.ts:12543](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12543) ##### `transSubtitle?` > [`TransSubtitle`](modules.md#transsubtitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12545) +Defined in: [libs/jast/jast/src/lib/jats.ts:12545](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12545) ##### `transTitle` > [`TransTitle`](modules.md#transtitle) -Defined in: [libs/jast/jast/src/lib/jats.ts:12547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12547) +Defined in: [libs/jast/jast/src/lib/jats.ts:12547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12547) -*** +--- ### `Underline` @@ -49687,7 +49687,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Underline** +- [`Node`](modules.md#node).**Underline** #### Properties @@ -49706,20 +49706,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `specificUse`? | `string` | -| `toggle`? | `UnderlineTypeToggle` | -| `underlineStyle`? | `string` | +| Member | Type | +| :---------------- | :-------------------- | +| `id`? | `string` | +| `specificUse`? | `string` | +| `toggle`? | `UnderlineTypeToggle` | +| `underlineStyle`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12688) +Defined in: [libs/jast/jast/src/lib/jats.ts:12688](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12688) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`UnderlineChildrenMap`](modules.md#underlinechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12696) +Defined in: [libs/jast/jast/src/lib/jats.ts:12696](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12696) ##### `data?` @@ -49729,13 +49729,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"underline"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12687](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12687) +Defined in: [libs/jast/jast/src/lib/jats.ts:12687](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12687) ##### `position?` @@ -49746,7 +49746,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -49756,9 +49756,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12686) +Defined in: [libs/jast/jast/src/lib/jats.ts:12686](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12686) -*** +--- ### `UnderlineChildrenMap` @@ -49768,219 +49768,219 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12686](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12700) +Defined in: [libs/jast/jast/src/lib/jats.ts:12700](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12700) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12702) +Defined in: [libs/jast/jast/src/lib/jats.ts:12702](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12702) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12704) +Defined in: [libs/jast/jast/src/lib/jats.ts:12704](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12704) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12706) +Defined in: [libs/jast/jast/src/lib/jats.ts:12706](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12706) ##### `email?` > [`Email`](modules.md#email)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12708) +Defined in: [libs/jast/jast/src/lib/jats.ts:12708](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12708) ##### `extLink?` > [`ExtLink`](modules.md#extlink)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12710) +Defined in: [libs/jast/jast/src/lib/jats.ts:12710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12710) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12712) +Defined in: [libs/jast/jast/src/lib/jats.ts:12712](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12712) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12714) +Defined in: [libs/jast/jast/src/lib/jats.ts:12714](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12714) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12716) +Defined in: [libs/jast/jast/src/lib/jats.ts:12716](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12716) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12718) +Defined in: [libs/jast/jast/src/lib/jats.ts:12718](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12718) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12720) +Defined in: [libs/jast/jast/src/lib/jats.ts:12720](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12720) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12722) +Defined in: [libs/jast/jast/src/lib/jats.ts:12722](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12722) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12724) +Defined in: [libs/jast/jast/src/lib/jats.ts:12724](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12724) ##### `inlineSupplementarymaterial?` > [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12726) +Defined in: [libs/jast/jast/src/lib/jats.ts:12726](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12726) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12728) +Defined in: [libs/jast/jast/src/lib/jats.ts:12728](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12728) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12730) +Defined in: [libs/jast/jast/src/lib/jats.ts:12730](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12730) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12732) +Defined in: [libs/jast/jast/src/lib/jats.ts:12732](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12732) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12734) +Defined in: [libs/jast/jast/src/lib/jats.ts:12734](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12734) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12736) +Defined in: [libs/jast/jast/src/lib/jats.ts:12736](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12736) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12738) +Defined in: [libs/jast/jast/src/lib/jats.ts:12738](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12738) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12740) +Defined in: [libs/jast/jast/src/lib/jats.ts:12740](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12740) ##### `relatedArticle?` > [`RelatedArticle`](modules.md#relatedarticle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12742) +Defined in: [libs/jast/jast/src/lib/jats.ts:12742](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12742) ##### `relatedObject?` > [`RelatedObject`](modules.md#relatedobject)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12744) +Defined in: [libs/jast/jast/src/lib/jats.ts:12744](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12744) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12746) +Defined in: [libs/jast/jast/src/lib/jats.ts:12746](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12746) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12748) +Defined in: [libs/jast/jast/src/lib/jats.ts:12748](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12748) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12750) +Defined in: [libs/jast/jast/src/lib/jats.ts:12750](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12750) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12752) +Defined in: [libs/jast/jast/src/lib/jats.ts:12752](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12752) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12754) +Defined in: [libs/jast/jast/src/lib/jats.ts:12754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12754) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12756) +Defined in: [libs/jast/jast/src/lib/jats.ts:12756](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12756) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12758) +Defined in: [libs/jast/jast/src/lib/jats.ts:12758](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12758) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12760) +Defined in: [libs/jast/jast/src/lib/jats.ts:12760](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12760) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12762) +Defined in: [libs/jast/jast/src/lib/jats.ts:12762](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12762) ##### `texMath?` > [`TexMath`](modules.md#texmath)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12764) +Defined in: [libs/jast/jast/src/lib/jats.ts:12764](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12764) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12766) +Defined in: [libs/jast/jast/src/lib/jats.ts:12766](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12766) ##### `uri?` > [`Uri`](modules.md#uri)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12768) +Defined in: [libs/jast/jast/src/lib/jats.ts:12768](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12768) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12770) +Defined in: [libs/jast/jast/src/lib/jats.ts:12770](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12770) -*** +--- ### `UnderlineEnd` @@ -49988,7 +49988,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**UnderlineEnd** +- [`Node`](modules.md#node).**UnderlineEnd** #### Properties @@ -50006,19 +50006,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `rid` | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `rid` | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12667](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12667) +Defined in: [libs/jast/jast/src/lib/jats.ts:12667](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12667) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:12672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12672) +Defined in: [libs/jast/jast/src/lib/jats.ts:12672](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12672) ##### `data?` @@ -50028,13 +50028,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"underlineEnd"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12666) +Defined in: [libs/jast/jast/src/lib/jats.ts:12666](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12666) ##### `position?` @@ -50045,7 +50045,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -50055,9 +50055,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12665](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12665) +Defined in: [libs/jast/jast/src/lib/jats.ts:12665](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12665) -*** +--- ### `UnderlineStart` @@ -50065,7 +50065,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**UnderlineStart** +- [`Node`](modules.md#node).**UnderlineStart** #### Properties @@ -50082,18 +50082,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id` | `string` | +| Member | Type | +| :------------- | :------- | +| `id` | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12678) +Defined in: [libs/jast/jast/src/lib/jats.ts:12678](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12678) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:12682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12682) +Defined in: [libs/jast/jast/src/lib/jats.ts:12682](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12682) ##### `data?` @@ -50103,13 +50103,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"underlineStart"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12677](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12677) +Defined in: [libs/jast/jast/src/lib/jats.ts:12677](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12677) ##### `position?` @@ -50120,7 +50120,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -50130,9 +50130,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12676) +Defined in: [libs/jast/jast/src/lib/jats.ts:12676](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12676) -*** +--- ### `UnstructuredKwdgroup` @@ -50140,7 +50140,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**UnstructuredKwdgroup** +- [`Node`](modules.md#node).**UnstructuredKwdgroup** #### Properties @@ -50161,22 +50161,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `id`? | `string` | -| `kwdGrouptype`? | `string` | -| `specificUse`? | `string` | -| `vocab`? | `string` | -| `vocabIdentifier`? | `string` | +| `id`? | `string` | +| `kwdGrouptype`? | `string` | +| `specificUse`? | `string` | +| `vocab`? | `string` | +| `vocabIdentifier`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12778) +Defined in: [libs/jast/jast/src/lib/jats.ts:12778](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12778) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:12786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12786) +Defined in: [libs/jast/jast/src/lib/jats.ts:12786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12786) ##### `data?` @@ -50186,13 +50186,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"unstructuredKwdgroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12777) +Defined in: [libs/jast/jast/src/lib/jats.ts:12777](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12777) ##### `position?` @@ -50203,7 +50203,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -50213,9 +50213,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12776) +Defined in: [libs/jast/jast/src/lib/jats.ts:12776](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12776) -*** +--- ### `Uri` @@ -50223,7 +50223,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Uri** +- [`Node`](modules.md#node).**Uri** #### Properties @@ -50242,20 +50242,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `specificUse`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12792) +Defined in: [libs/jast/jast/src/lib/jats.ts:12792](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12792) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12799](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12799) +Defined in: [libs/jast/jast/src/lib/jats.ts:12799](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12799) ##### `data?` @@ -50265,13 +50265,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"uri"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12791](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12791) +Defined in: [libs/jast/jast/src/lib/jats.ts:12791](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12791) ##### `position?` @@ -50282,7 +50282,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -50292,9 +50292,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12790) +Defined in: [libs/jast/jast/src/lib/jats.ts:12790](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12790) -*** +--- ### `UriChildrenMap` @@ -50304,9 +50304,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12790](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12803](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12803) +Defined in: [libs/jast/jast/src/lib/jats.ts:12803](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12803) -*** +--- ### `VerseGroup` @@ -50314,7 +50314,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**VerseGroup** +- [`Node`](modules.md#node).**VerseGroup** #### Properties @@ -50334,21 +50334,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -| `style`? | `string` | +| `style`? | `string` | | `styleDetail`? | `string` | -| `styleType`? | `string` | +| `styleType`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12809](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12809) +Defined in: [libs/jast/jast/src/lib/jats.ts:12809](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12809) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`VerseGroupChildrenMap`](modules.md#versegroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12817](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12817) +Defined in: [libs/jast/jast/src/lib/jats.ts:12817](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12817) ##### `data?` @@ -50358,13 +50358,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"verseGroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12808) +Defined in: [libs/jast/jast/src/lib/jats.ts:12808](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12808) ##### `position?` @@ -50375,7 +50375,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -50385,9 +50385,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12807) +Defined in: [libs/jast/jast/src/lib/jats.ts:12807](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12807) -*** +--- ### `VerseGroupChildrenMap` @@ -50397,51 +50397,51 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12807](https://github.com/TrialAndE > [`Attrib`](modules.md#attrib)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12823](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12823) +Defined in: [libs/jast/jast/src/lib/jats.ts:12823](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12823) ##### `label?` > [`Label`](modules.md#label) -Defined in: [libs/jast/jast/src/lib/jats.ts:12825](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12825) +Defined in: [libs/jast/jast/src/lib/jats.ts:12825](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12825) ##### `permissions?` > [`Permissions`](modules.md#permissions)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12827](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12827) +Defined in: [libs/jast/jast/src/lib/jats.ts:12827](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12827) ##### `subtitle?` > [`Subtitle`](modules.md#subtitle) -Defined in: [libs/jast/jast/src/lib/jats.ts:12829](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12829) +Defined in: [libs/jast/jast/src/lib/jats.ts:12829](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12829) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12821](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12821) +Defined in: [libs/jast/jast/src/lib/jats.ts:12821](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12821) ##### `title?` > [`Title`](modules.md#title) -Defined in: [libs/jast/jast/src/lib/jats.ts:12831](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12831) +Defined in: [libs/jast/jast/src/lib/jats.ts:12831](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12831) ##### `verseGroup` > [`VerseGroup`](modules.md#versegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12833](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12833) +Defined in: [libs/jast/jast/src/lib/jats.ts:12833](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12833) ##### `verseLine` > [`VerseLine`](modules.md#verseline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12835](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12835) +Defined in: [libs/jast/jast/src/lib/jats.ts:12835](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12835) -*** +--- ### `VerseLine` @@ -50449,7 +50449,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**VerseLine** +- [`Node`](modules.md#node).**VerseLine** #### Properties @@ -50470,22 +50470,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `indentLevel`? | `string` | | `specificUse`? | `string` | -| `style`? | `string` | +| `style`? | `string` | | `styleDetail`? | `string` | -| `styleType`? | `string` | +| `styleType`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12841](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12841) +Defined in: [libs/jast/jast/src/lib/jats.ts:12841](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12841) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`VerseLineChildrenMap`](modules.md#verselinechildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12850) +Defined in: [libs/jast/jast/src/lib/jats.ts:12850](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12850) ##### `data?` @@ -50495,13 +50495,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"verseLine"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12840) +Defined in: [libs/jast/jast/src/lib/jats.ts:12840](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12840) ##### `position?` @@ -50512,7 +50512,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -50522,9 +50522,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12839](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12839) +Defined in: [libs/jast/jast/src/lib/jats.ts:12839](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12839) -*** +--- ### `VerseLineChildrenMap` @@ -50534,183 +50534,183 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12839](https://github.com/TrialAndE > [`Abbrev`](modules.md#abbrev)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12856) +Defined in: [libs/jast/jast/src/lib/jats.ts:12856](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12856) ##### `alternatives?` > [`Alternatives`](modules.md#alternatives)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12858) +Defined in: [libs/jast/jast/src/lib/jats.ts:12858](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12858) ##### `bold?` > [`Bold`](modules.md#bold)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12860) +Defined in: [libs/jast/jast/src/lib/jats.ts:12860](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12860) ##### `chemStruct?` > [`ChemStruct`](modules.md#chemstruct)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12862) +Defined in: [libs/jast/jast/src/lib/jats.ts:12862](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12862) ##### `fixedCase?` > [`FixedCase`](modules.md#fixedcase)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12864) +Defined in: [libs/jast/jast/src/lib/jats.ts:12864](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12864) ##### `fn?` > [`Fn`](modules.md#fn)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12866) +Defined in: [libs/jast/jast/src/lib/jats.ts:12866](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12866) ##### `indexTerm?` > [`IndexTerm`](modules.md#indexterm)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12868) +Defined in: [libs/jast/jast/src/lib/jats.ts:12868](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12868) ##### `indexTermrangeend?` > [`IndexTermrangeend`](modules.md#indextermrangeend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12870) +Defined in: [libs/jast/jast/src/lib/jats.ts:12870](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12870) ##### `inlineFormula?` > [`InlineFormula`](modules.md#inlineformula)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12872) +Defined in: [libs/jast/jast/src/lib/jats.ts:12872](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12872) ##### `inlineGraphic?` > [`InlineGraphic`](modules.md#inlinegraphic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12874) +Defined in: [libs/jast/jast/src/lib/jats.ts:12874](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12874) ##### `inlineMedia?` > [`InlineMedia`](modules.md#inlinemedia)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12876) +Defined in: [libs/jast/jast/src/lib/jats.ts:12876](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12876) ##### `italic?` > [`Italic`](modules.md#italic)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12878) +Defined in: [libs/jast/jast/src/lib/jats.ts:12878](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12878) ##### `milestoneEnd?` > [`MilestoneEnd`](modules.md#milestoneend)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12880) +Defined in: [libs/jast/jast/src/lib/jats.ts:12880](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12880) ##### `milestoneStart?` > [`MilestoneStart`](modules.md#milestonestart)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12882) +Defined in: [libs/jast/jast/src/lib/jats.ts:12882](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12882) ##### `monospace?` > [`Monospace`](modules.md#monospace)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12884) +Defined in: [libs/jast/jast/src/lib/jats.ts:12884](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12884) ##### `namedContent?` > [`NamedContent`](modules.md#namedcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12886) +Defined in: [libs/jast/jast/src/lib/jats.ts:12886](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12886) ##### `overline?` > [`Overline`](modules.md#overline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12888) +Defined in: [libs/jast/jast/src/lib/jats.ts:12888](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12888) ##### `privateChar?` > [`PrivateChar`](modules.md#privatechar)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12890) +Defined in: [libs/jast/jast/src/lib/jats.ts:12890](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12890) ##### `roman?` > [`Roman`](modules.md#roman)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12892) +Defined in: [libs/jast/jast/src/lib/jats.ts:12892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12892) ##### `ruby?` > [`Ruby`](modules.md#ruby)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12894) +Defined in: [libs/jast/jast/src/lib/jats.ts:12894](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12894) ##### `sansSerif?` > [`SansSerif`](modules.md#sansserif)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12896) +Defined in: [libs/jast/jast/src/lib/jats.ts:12896](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12896) ##### `sc?` > [`Sc`](modules.md#sc)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12898) +Defined in: [libs/jast/jast/src/lib/jats.ts:12898](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12898) ##### `strike?` > [`Strike`](modules.md#strike)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12900) +Defined in: [libs/jast/jast/src/lib/jats.ts:12900](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12900) ##### `styledContent?` > [`StyledContent`](modules.md#styledcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12902) +Defined in: [libs/jast/jast/src/lib/jats.ts:12902](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12902) ##### `sub?` > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12904) +Defined in: [libs/jast/jast/src/lib/jats.ts:12904](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12904) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12906) +Defined in: [libs/jast/jast/src/lib/jats.ts:12906](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12906) ##### `target?` > [`Target`](modules.md#target)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12908) +Defined in: [libs/jast/jast/src/lib/jats.ts:12908](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12908) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12854) +Defined in: [libs/jast/jast/src/lib/jats.ts:12854](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12854) ##### `underline?` > [`Underline`](modules.md#underline)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12910) +Defined in: [libs/jast/jast/src/lib/jats.ts:12910](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12910) ##### `xref?` > [`Xref`](modules.md#xref)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12912) +Defined in: [libs/jast/jast/src/lib/jats.ts:12912](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12912) -*** +--- ### `Version` @@ -50718,7 +50718,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Version** +- [`Node`](modules.md#node).**Version** #### Properties @@ -50736,19 +50736,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `designator`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `designator`? | `string` | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12918) +Defined in: [libs/jast/jast/src/lib/jats.ts:12918](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12918) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`VersionChildrenMap`](modules.md#versionchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12924) +Defined in: [libs/jast/jast/src/lib/jats.ts:12924](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12924) ##### `data?` @@ -50758,13 +50758,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"version"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12917](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12917) +Defined in: [libs/jast/jast/src/lib/jats.ts:12917](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12917) ##### `position?` @@ -50775,7 +50775,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -50785,9 +50785,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12916) +Defined in: [libs/jast/jast/src/lib/jats.ts:12916](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12916) -*** +--- ### `VersionChildrenMap` @@ -50797,21 +50797,21 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12916](https://github.com/TrialAndE > [`Sub`](modules.md#sub)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12930) +Defined in: [libs/jast/jast/src/lib/jats.ts:12930](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12930) ##### `sup?` > [`Sup`](modules.md#sup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12932) +Defined in: [libs/jast/jast/src/lib/jats.ts:12932](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12932) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12928) +Defined in: [libs/jast/jast/src/lib/jats.ts:12928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12928) -*** +--- ### `Volume` @@ -50819,7 +50819,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Volume** +- [`Node`](modules.md#node).**Volume** #### Properties @@ -50837,19 +50837,19 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | -| `seq`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | +| `seq`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:13004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13004) +Defined in: [libs/jast/jast/src/lib/jats.ts:13004](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13004) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:13010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13010) +Defined in: [libs/jast/jast/src/lib/jats.ts:13010](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13010) ##### `data?` @@ -50859,13 +50859,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"volume"` -Defined in: [libs/jast/jast/src/lib/jats.ts:13003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13003) +Defined in: [libs/jast/jast/src/lib/jats.ts:13003](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13003) ##### `position?` @@ -50876,7 +50876,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -50886,9 +50886,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:13002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13002) +Defined in: [libs/jast/jast/src/lib/jats.ts:13002](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13002) -*** +--- ### `VolumeChildrenMap` @@ -50898,9 +50898,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:13002](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:13014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13014) +Defined in: [libs/jast/jast/src/lib/jats.ts:13014](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13014) -*** +--- ### `VolumeId` @@ -50908,7 +50908,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**VolumeId** +- [`Node`](modules.md#node).**VolumeId** #### Properties @@ -50928,21 +50928,21 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :-------------------- | :------- | | `assigningAuthority`? | `string` | -| `hreflang`? | `string` | -| `id`? | `string` | -| `pubIdType`? | `string` | -| `specificUse`? | `string` | +| `hreflang`? | `string` | +| `id`? | `string` | +| `pubIdType`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12938](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12938) +Defined in: [libs/jast/jast/src/lib/jats.ts:12938](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12938) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12946) +Defined in: [libs/jast/jast/src/lib/jats.ts:12946](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12946) ##### `data?` @@ -50952,13 +50952,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"volumeId"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12937](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12937) +Defined in: [libs/jast/jast/src/lib/jats.ts:12937](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12937) ##### `position?` @@ -50969,7 +50969,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -50979,9 +50979,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12936) +Defined in: [libs/jast/jast/src/lib/jats.ts:12936](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12936) -*** +--- ### `VolumeIdChildrenMap` @@ -50991,9 +50991,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12936](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12950) +Defined in: [libs/jast/jast/src/lib/jats.ts:12950](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12950) -*** +--- ### `VolumeIssuegroup` @@ -51001,7 +51001,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**VolumeIssuegroup** +- [`Node`](modules.md#node).**VolumeIssuegroup** #### Properties @@ -51018,18 +51018,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12956](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12956) +Defined in: [libs/jast/jast/src/lib/jats.ts:12956](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12956) ##### `children` > [`RequiredMap`](modules.md#requiredmap)<[`VolumeIssuegroupChildrenMap`](modules.md#volumeissuegroupchildrenmap)>[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12961) +Defined in: [libs/jast/jast/src/lib/jats.ts:12961](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12961) ##### `data?` @@ -51039,13 +51039,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"volumeIssuegroup"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12955) +Defined in: [libs/jast/jast/src/lib/jats.ts:12955](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12955) ##### `position?` @@ -51056,7 +51056,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -51066,9 +51066,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12954](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12954) +Defined in: [libs/jast/jast/src/lib/jats.ts:12954](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12954) -*** +--- ### `VolumeIssuegroupChildrenMap` @@ -51078,63 +51078,63 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12954](https://github.com/TrialAndE > [`Issue`](modules.md#issue)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12967) +Defined in: [libs/jast/jast/src/lib/jats.ts:12967](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12967) ##### `issueId?` > [`IssueId`](modules.md#issueid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12969) +Defined in: [libs/jast/jast/src/lib/jats.ts:12969](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12969) ##### `issuePart?` > [`IssuePart`](modules.md#issuepart) -Defined in: [libs/jast/jast/src/lib/jats.ts:12971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12971) +Defined in: [libs/jast/jast/src/lib/jats.ts:12971](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12971) ##### `issueSponsor?` > [`IssueSponsor`](modules.md#issuesponsor)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12973) +Defined in: [libs/jast/jast/src/lib/jats.ts:12973](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12973) ##### `issueTitle?` > [`IssueTitle`](modules.md#issuetitle)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12975) +Defined in: [libs/jast/jast/src/lib/jats.ts:12975](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12975) ##### `issueTitlegroup?` > [`IssueTitlegroup`](modules.md#issuetitlegroup)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12977) +Defined in: [libs/jast/jast/src/lib/jats.ts:12977](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12977) ##### `text?` > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12965) +Defined in: [libs/jast/jast/src/lib/jats.ts:12965](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12965) ##### `volume?` > [`Volume`](modules.md#volume)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12979) +Defined in: [libs/jast/jast/src/lib/jats.ts:12979](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12979) ##### `volumeId?` > [`VolumeId`](modules.md#volumeid)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12981) +Defined in: [libs/jast/jast/src/lib/jats.ts:12981](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12981) ##### `volumeSeries?` > [`VolumeSeries`](modules.md#volumeseries) -Defined in: [libs/jast/jast/src/lib/jats.ts:12983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12983) +Defined in: [libs/jast/jast/src/lib/jats.ts:12983](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12983) -*** +--- ### `VolumeSeries` @@ -51142,7 +51142,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**VolumeSeries** +- [`Node`](modules.md#node).**VolumeSeries** #### Properties @@ -51159,18 +51159,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:12989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12989) +Defined in: [libs/jast/jast/src/lib/jats.ts:12989](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12989) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:12994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12994) +Defined in: [libs/jast/jast/src/lib/jats.ts:12994](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12994) ##### `data?` @@ -51180,13 +51180,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"volumeSeries"` -Defined in: [libs/jast/jast/src/lib/jats.ts:12988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12988) +Defined in: [libs/jast/jast/src/lib/jats.ts:12988](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12988) ##### `position?` @@ -51197,7 +51197,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -51207,9 +51207,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:12987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12987) +Defined in: [libs/jast/jast/src/lib/jats.ts:12987](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12987) -*** +--- ### `VolumeSeriesChildrenMap` @@ -51219,9 +51219,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:12987](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:12998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12998) +Defined in: [libs/jast/jast/src/lib/jats.ts:12998](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L12998) -*** +--- ### `WordCount` @@ -51229,7 +51229,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**WordCount** +- [`Node`](modules.md#node).**WordCount** #### Properties @@ -51246,18 +51246,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------ | :------- | | `count` | `string` | -| `id`? | `string` | +| `id`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:13020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13020) +Defined in: [libs/jast/jast/src/lib/jats.ts:13020](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13020) ##### `children` > [] -Defined in: [libs/jast/jast/src/lib/jats.ts:13024](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13024) +Defined in: [libs/jast/jast/src/lib/jats.ts:13024](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13024) ##### `data?` @@ -51267,13 +51267,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"wordCount"` -Defined in: [libs/jast/jast/src/lib/jats.ts:13019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13019) +Defined in: [libs/jast/jast/src/lib/jats.ts:13019](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13019) ##### `position?` @@ -51284,7 +51284,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -51294,9 +51294,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:13018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13018) +Defined in: [libs/jast/jast/src/lib/jats.ts:13018](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13018) -*** +--- ### `X` @@ -51304,7 +51304,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**X** +- [`Node`](modules.md#node).**X** #### Properties @@ -51321,18 +51321,18 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `id`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:13077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13077) +Defined in: [libs/jast/jast/src/lib/jats.ts:13077](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13077) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:13082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13082) +Defined in: [libs/jast/jast/src/lib/jats.ts:13082](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13082) ##### `data?` @@ -51342,13 +51342,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"x"` -Defined in: [libs/jast/jast/src/lib/jats.ts:13076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13076) +Defined in: [libs/jast/jast/src/lib/jats.ts:13076](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13076) ##### `position?` @@ -51359,7 +51359,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -51369,9 +51369,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:13075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13075) +Defined in: [libs/jast/jast/src/lib/jats.ts:13075](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13075) -*** +--- ### `XChildrenMap` @@ -51381,9 +51381,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:13075](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:13086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13086) +Defined in: [libs/jast/jast/src/lib/jats.ts:13086](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13086) -*** +--- ### `Xref` @@ -51391,7 +51391,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Xref** +- [`Node`](modules.md#node).**Xref** #### Properties @@ -51412,22 +51412,22 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `alt`? | `string` | -| `customType`? | `string` | -| `id`? | `string` | -| `refType`? | `XrefTypeRefType` | -| `rid`? | `string` | -| `specificUse`? | `string` | +| Member | Type | +| :------------- | :---------------- | +| `alt`? | `string` | +| `customType`? | `string` | +| `id`? | `string` | +| `refType`? | `XrefTypeRefType` | +| `rid`? | `string` | +| `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:13030](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13030) +Defined in: [libs/jast/jast/src/lib/jats.ts:13030](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13030) ##### `children` > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:13039](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13039) +Defined in: [libs/jast/jast/src/lib/jats.ts:13039](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13039) ##### `data?` @@ -51437,13 +51437,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"xref"` -Defined in: [libs/jast/jast/src/lib/jats.ts:13029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13029) +Defined in: [libs/jast/jast/src/lib/jats.ts:13029](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13029) ##### `position?` @@ -51454,7 +51454,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -51464,9 +51464,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:13028](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13028) +Defined in: [libs/jast/jast/src/lib/jats.ts:13028](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13028) -*** +--- ### `XrefChildrenMap` @@ -51476,9 +51476,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:13028](https://github.com/TrialAndE > [`SimpleTextContent`](modules.md#simpletextcontent)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:13044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13044) +Defined in: [libs/jast/jast/src/lib/jats.ts:13044](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13044) -*** +--- ### `Year` @@ -51486,7 +51486,7 @@ Syntactic units in unist syntax trees are called nodes. #### Hierarchy -* [`Node`](modules.md#node).**Year** +- [`Node`](modules.md#node).**Year** #### Properties @@ -51505,20 +51505,20 @@ Syntactic units in unist syntax trees are called nodes. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `calendar`? | `string` | -| `id`? | `string` | +| Member | Type | +| :------------- | :------- | +| `calendar`? | `string` | +| `id`? | `string` | | `iso8601Date`? | `string` | | `specificUse`? | `string` | -Defined in: [libs/jast/jast/src/lib/jats.ts:13092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13092) +Defined in: [libs/jast/jast/src/lib/jats.ts:13092](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13092) ##### `children` > [`Text`](modules.md#text)[] -Defined in: [libs/jast/jast/src/lib/jats.ts:13099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13099) +Defined in: [libs/jast/jast/src/lib/jats.ts:13099](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13099) ##### `data?` @@ -51528,13 +51528,13 @@ Information from the ecosystem. Inherited from: [Node](modules.md#node).[data](modules.md#data) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:27 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:27 ##### `name` > `"year"` -Defined in: [libs/jast/jast/src/lib/jats.ts:13091](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13091) +Defined in: [libs/jast/jast/src/lib/jats.ts:13091](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13091) ##### `position?` @@ -51545,7 +51545,7 @@ Must not be present if a node is generated. Inherited from: [Node](modules.md#node).[position](modules.md#position) -Defined in: node\_modules/.pnpm/@types+unist\@2.0.6/node\_modules/@types/unist/index.d.ts:33 +Defined in: node_modules/.pnpm/@types+unist\@2.0.6/node_modules/@types/unist/index.d.ts:33 ##### `type` @@ -51555,9 +51555,9 @@ The variant of a node. Overrides: [Node](modules.md#node).[type](modules.md#type) -Defined in: [libs/jast/jast/src/lib/jats.ts:13090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13090) +Defined in: [libs/jast/jast/src/lib/jats.ts:13090](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13090) -*** +--- ### `YearChildrenMap` @@ -51567,9 +51567,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:13090](https://github.com/TrialAndE > [`Text`](modules.md#text) -Defined in: [libs/jast/jast/src/lib/jats.ts:13103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13103) +Defined in: [libs/jast/jast/src/lib/jats.ts:13103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13103) -*** +--- ### `AllTypes` @@ -51577,31 +51577,31 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:13103](https://github.com/TrialAndE #### Type parameters -* `T` *extends* `any`[] | `ArrayLike`<`any`> | `Record`<`any`, `any`> +- `T` _extends_ `any`[] | `ArrayLike`<`any`> | `Record`<`any`, `any`> -Defined in: [libs/jast/jast/src/lib/rejour.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L9) +Defined in: [libs/jast/jast/src/lib/rejour.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L9) -*** +--- ### `ArrayValueMaybe` -> <`T`> `T` *extends* `any`[] ? `ValuesType`<[`NoUndefined`](modules.md#noundefined)<`T`>> : [`NoUndefined`](modules.md#noundefined)<`T`> +> <`T`> `T` _extends_ `any`[] ? `ValuesType`<[`NoUndefined`](modules.md#noundefined)<`T`>> : [`NoUndefined`](modules.md#noundefined)<`T`> #### Type parameters -* `T` +- `T` -Defined in: [libs/jast/jast/src/lib/rejour.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L8) +Defined in: [libs/jast/jast/src/lib/rejour.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L8) -*** +--- ### `Content` > `ValuesType`<[`documentMap`](modules.md#documentmap)> -Defined in: [libs/jast/jast/src/lib/jats.ts:13710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13710) +Defined in: [libs/jast/jast/src/lib/jats.ts:13710](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13710) -*** +--- ### `ElementContent` @@ -51609,31 +51609,31 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:13710](https://github.com/TrialAndE > `type`: `"element"`; > }> -Defined in: [libs/jast/jast/src/lib/jats.ts:13711](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13711) +Defined in: [libs/jast/jast/src/lib/jats.ts:13711](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13711) -*** +--- ### `Names` > [`NamesMap`](modules.md#namesmap)<[`Content`](modules.md#content)> -Defined in: [libs/jast/jast/src/lib/rejour.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L44) +Defined in: [libs/jast/jast/src/lib/rejour.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L44) -*** +--- ### `NamesMap` -> <`T`> `T` *extends* { +> <`T`> `T` _extends_ { > `name`: `string`; > } ? `T`[`"name"`] : `never` #### Type parameters -* `T` +- `T` -Defined in: [libs/jast/jast/src/lib/rejour.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L43) +Defined in: [libs/jast/jast/src/lib/rejour.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L43) -*** +--- ### `NoUndefined` @@ -51641,11 +51641,11 @@ Defined in: [libs/jast/jast/src/lib/rejour.ts:43](https://github.com/TrialAndEr #### Type parameters -* `T` +- `T` -Defined in: [libs/jast/jast/src/lib/rejour.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L7) +Defined in: [libs/jast/jast/src/lib/rejour.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L7) -*** +--- ### `RequiredMap` @@ -51653,19 +51653,19 @@ Defined in: [libs/jast/jast/src/lib/rejour.ts:7](https://github.com/TrialAndErr #### Type parameters -* `T` *extends* `any`[] | `ArrayLike`<`any`> | `Record`<`any`, `any`> +- `T` _extends_ `any`[] | `ArrayLike`<`any`> | `Record`<`any`, `any`> -Defined in: [libs/jast/jast/src/lib/rejour.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L13) +Defined in: [libs/jast/jast/src/lib/rejour.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L13) -*** +--- ### `SimpleTextContent` > [`RequiredMap`](modules.md#requiredmap)<[`SimpleTextContentMap`](modules.md#simpletextcontentmap)> -Defined in: [libs/jast/jast/src/lib/jats.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L41) +Defined in: [libs/jast/jast/src/lib/jats.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L41) -*** +--- ### `SimpleTextContentMap` @@ -51694,28 +51694,28 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:41](https://github.com/TrialAndErro #### Type declaration -| Member | Type | -| :------ | :------ | -| `bold`? | [`Bold`](modules.md#bold)[] | -| `fixedCase`? | [`FixedCase`](modules.md#fixedcase)[] | -| `italic`? | [`Italic`](modules.md#italic)[] | -| `monospace`? | [`Monospace`](modules.md#monospace)[] | -| `namedContent`? | [`NamedContent`](modules.md#namedcontent)[] | -| `overline`? | [`Overline`](modules.md#overline)[] | -| `roman`? | [`Roman`](modules.md#roman)[] | -| `ruby`? | [`Ruby`](modules.md#ruby)[] | -| `sansSerif`? | [`SansSerif`](modules.md#sansserif)[] | -| `sc`? | [`Sc`](modules.md#sc)[] | -| `strike`? | [`Strike`](modules.md#strike)[] | +| Member | Type | +| :--------------- | :-------------------------------------------- | +| `bold`? | [`Bold`](modules.md#bold)[] | +| `fixedCase`? | [`FixedCase`](modules.md#fixedcase)[] | +| `italic`? | [`Italic`](modules.md#italic)[] | +| `monospace`? | [`Monospace`](modules.md#monospace)[] | +| `namedContent`? | [`NamedContent`](modules.md#namedcontent)[] | +| `overline`? | [`Overline`](modules.md#overline)[] | +| `roman`? | [`Roman`](modules.md#roman)[] | +| `ruby`? | [`Ruby`](modules.md#ruby)[] | +| `sansSerif`? | [`SansSerif`](modules.md#sansserif)[] | +| `sc`? | [`Sc`](modules.md#sc)[] | +| `strike`? | [`Strike`](modules.md#strike)[] | | `styledContent`? | [`StyledContent`](modules.md#styledcontent)[] | -| `sub`? | [`Sub`](modules.md#sub)[] | -| `sup`? | [`Sup`](modules.md#sup)[] | -| `text`? | [`Text`](modules.md#text) | -| `underline`? | [`Underline`](modules.md#underline)[] | +| `sub`? | [`Sub`](modules.md#sub)[] | +| `sup`? | [`Sup`](modules.md#sup)[] | +| `text`? | [`Text`](modules.md#text) | +| `underline`? | [`Underline`](modules.md#underline)[] | -Defined in: [libs/jast/jast/src/lib/jats.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8) +Defined in: [libs/jast/jast/src/lib/jats.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L8) -*** +--- ### `TagHavers` @@ -51723,9 +51723,9 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:8](https://github.com/TrialAndError > `name`: `string`; > }> -Defined in: [libs/jast/jast/src/lib/rejour.ts:22](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L22) +Defined in: [libs/jast/jast/src/lib/rejour.ts:22](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/rejour.ts#L22) -*** +--- ### `documentMap` @@ -52042,314 +52042,314 @@ Defined in: [libs/jast/jast/src/lib/rejour.ts:22](https://github.com/TrialAndEr #### Type declaration -| Member | Type | -| :------ | :------ | -| `abbrev` | [`Abbrev`](modules.md#abbrev) | -| `abbrevJournaltitle` | [`AbbrevJournaltitle`](modules.md#abbrevjournaltitle) | -| `abstract` | [`Abstract`](modules.md#abstract) | -| `accessDate` | [`AccessDate`](modules.md#accessdate) | -| `ack` | [`Ack`](modules.md#ack) | -| `addrLine` | [`AddrLine`](modules.md#addrline) | -| `address` | [`Address`](modules.md#address) | -| `aff` | [`Aff`](modules.md#aff) | -| `affAlternatives` | [`AffAlternatives`](modules.md#affalternatives) | -| `altText` | [`AltText`](modules.md#alttext) | -| `altTitle` | [`AltTitle`](modules.md#alttitle) | -| `alternatives` | [`Alternatives`](modules.md#alternatives) | -| `annotation` | [`Annotation`](modules.md#annotation) | -| `anonymous` | [`Anonymous`](modules.md#anonymous) | -| `answer` | [`Answer`](modules.md#answer) | -| `answerSet` | [`AnswerSet`](modules.md#answerset) | -| `app` | [`App`](modules.md#app) | -| `appGroup` | [`AppGroup`](modules.md#appgroup) | -| `array` | [`Array`](modules.md#array) | -| `article` | [`Article`](modules.md#article) | -| `articleCategories` | [`ArticleCategories`](modules.md#articlecategories) | -| `articleId` | [`ArticleId`](modules.md#articleid) | -| `articleMeta` | [`ArticleMeta`](modules.md#articlemeta) | -| `articleTitle` | [`ArticleTitle`](modules.md#articletitle) | -| `articleVersion` | [`ArticleVersion`](modules.md#articleversion) | -| `articleVersionalternatives` | [`ArticleVersionalternatives`](modules.md#articleversionalternatives) | -| `attrib` | [`Attrib`](modules.md#attrib) | -| `authorComment` | [`AuthorComment`](modules.md#authorcomment) | -| `authorNotes` | [`AuthorNotes`](modules.md#authornotes) | -| `awardDesc` | [`AwardDesc`](modules.md#awarddesc) | -| `awardGroup` | [`AwardGroup`](modules.md#awardgroup) | -| `awardId` | [`AwardId`](modules.md#awardid) | -| `awardName` | [`AwardName`](modules.md#awardname) | -| `back` | [`Back`](modules.md#back) | -| `bio` | [`Bio`](modules.md#bio) | -| `blockAlternatives` | [`BlockAlternatives`](modules.md#blockalternatives) | -| `body` | [`Body`](modules.md#body) | -| `bold` | [`Bold`](modules.md#bold) | -| `boxedText` | [`BoxedText`](modules.md#boxedtext) | -| `break` | [`Break`](modules.md#break) | -| `caption` | [`Caption`](modules.md#caption) | -| `chapterTitle` | [`ChapterTitle`](modules.md#chaptertitle) | -| `chemStruct` | [`ChemStruct`](modules.md#chemstruct) | -| `chemStructwrap` | [`ChemStructwrap`](modules.md#chemstructwrap) | -| `citationAlternatives` | [`CitationAlternatives`](modules.md#citationalternatives) | -| `city` | [`City`](modules.md#city) | -| `code` | [`Code`](modules.md#code) | -| `col` | [`Col`](modules.md#col) | -| `colgroup` | [`Colgroup`](modules.md#colgroup) | -| `collab` | [`Collab`](modules.md#collab) | -| `collabAlternatives` | [`CollabAlternatives`](modules.md#collabalternatives) | -| `comment` | [`Comment`](modules.md#comment) | -| `compoundKwd` | [`CompoundKwd`](modules.md#compoundkwd) | -| `compoundKwdpart` | [`CompoundKwdpart`](modules.md#compoundkwdpart) | -| `compoundSubject` | [`CompoundSubject`](modules.md#compoundsubject) | -| `compoundSubjectpart` | [`CompoundSubjectpart`](modules.md#compoundsubjectpart) | -| `confAcronym` | [`ConfAcronym`](modules.md#confacronym) | -| `confDate` | [`ConfDate`](modules.md#confdate) | -| `confLoc` | [`ConfLoc`](modules.md#confloc) | -| `confName` | [`ConfName`](modules.md#confname) | -| `confNum` | [`ConfNum`](modules.md#confnum) | -| `confSponsor` | [`ConfSponsor`](modules.md#confsponsor) | -| `confTheme` | [`ConfTheme`](modules.md#conftheme) | -| `conference` | [`Conference`](modules.md#conference) | -| `contrib` | [`Contrib`](modules.md#contrib) | -| `contribGroup` | [`ContribGroup`](modules.md#contribgroup) | -| `contribId` | [`ContribId`](modules.md#contribid) | -| `contributedResourcegroup` | [`ContributedResourcegroup`](modules.md#contributedresourcegroup) | -| `copyrightHolder` | [`CopyrightHolder`](modules.md#copyrightholder) | -| `copyrightStatement` | [`CopyrightStatement`](modules.md#copyrightstatement) | -| `copyrightYear` | [`CopyrightYear`](modules.md#copyrightyear) | -| `corresp` | [`Corresp`](modules.md#corresp) | -| `count` | [`Count`](modules.md#count) | -| `country` | [`Country`](modules.md#country) | -| `counts` | [`Counts`](modules.md#counts) | -| `customMeta` | [`CustomMeta`](modules.md#custommeta) | -| `customMetagroup` | [`CustomMetagroup`](modules.md#custommetagroup) | -| `dataTitle` | [`DataTitle`](modules.md#datatitle) | -| `date` | [`Date`](modules.md#date) | -| `dateIncitation` | [`DateIncitation`](modules.md#dateincitation) | -| `day` | [`Day`](modules.md#day) | -| `def` | [`Def`](modules.md#def) | -| `defHead` | [`DefHead`](modules.md#defhead) | -| `defItem` | [`DefItem`](modules.md#defitem) | -| `defList` | [`DefList`](modules.md#deflist) | -| `degrees` | [`Degrees`](modules.md#degrees) | -| `dispFormula` | [`DispFormula`](modules.md#dispformula) | -| `dispFormulagroup` | [`DispFormulagroup`](modules.md#dispformulagroup) | -| `dispQuote` | [`DispQuote`](modules.md#dispquote) | -| `edition` | [`Edition`](modules.md#edition) | -| `elementCitation` | [`ElementCitation`](modules.md#elementcitation) | -| `elocationId` | [`ElocationId`](modules.md#elocationid) | -| `email` | [`Email`](modules.md#email) | -| `equationCount` | [`EquationCount`](modules.md#equationcount) | -| `era` | [`Era`](modules.md#era) | -| `etal` | [`Etal`](modules.md#etal) | -| `event` | [`Event`](modules.md#event) | -| `eventDesc` | [`EventDesc`](modules.md#eventdesc) | -| `explanation` | [`Explanation`](modules.md#explanation) | -| `extLink` | [`ExtLink`](modules.md#extlink) | -| `extendedBy` | [`ExtendedBy`](modules.md#extendedby) | -| `fax` | [`Fax`](modules.md#fax) | -| `fig` | [`Fig`](modules.md#fig) | -| `figCount` | [`FigCount`](modules.md#figcount) | -| `figGroup` | [`FigGroup`](modules.md#figgroup) | -| `fixedCase` | [`FixedCase`](modules.md#fixedcase) | -| `floatsGroup` | [`FloatsGroup`](modules.md#floatsgroup) | -| `fn` | [`Fn`](modules.md#fn) | -| `fnGroup` | [`FnGroup`](modules.md#fngroup) | -| `fpage` | [`Fpage`](modules.md#fpage) | -| `front` | [`Front`](modules.md#front) | -| `frontStub` | [`FrontStub`](modules.md#frontstub) | -| `fundingGroup` | [`FundingGroup`](modules.md#fundinggroup) | -| `fundingSource` | [`FundingSource`](modules.md#fundingsource) | -| `fundingStatement` | [`FundingStatement`](modules.md#fundingstatement) | -| `givenNames` | [`GivenNames`](modules.md#givennames) | -| `glossary` | [`Glossary`](modules.md#glossary) | -| `glyphData` | [`GlyphData`](modules.md#glyphdata) | -| `glyphRef` | [`GlyphRef`](modules.md#glyphref) | -| `gov` | [`Gov`](modules.md#gov) | -| `graphic` | [`Graphic`](modules.md#graphic) | -| `history` | [`History`](modules.md#history) | -| `hr` | [`Hr`](modules.md#hr) | -| `indexTerm` | [`IndexTerm`](modules.md#indexterm) | -| `indexTermrangeend` | [`IndexTermrangeend`](modules.md#indextermrangeend) | -| `inlineFormula` | [`InlineFormula`](modules.md#inlineformula) | -| `inlineGraphic` | [`InlineGraphic`](modules.md#inlinegraphic) | -| `inlineMedia` | [`InlineMedia`](modules.md#inlinemedia) | +| Member | Type | +| :---------------------------- | :---------------------------------------------------------------------- | +| `abbrev` | [`Abbrev`](modules.md#abbrev) | +| `abbrevJournaltitle` | [`AbbrevJournaltitle`](modules.md#abbrevjournaltitle) | +| `abstract` | [`Abstract`](modules.md#abstract) | +| `accessDate` | [`AccessDate`](modules.md#accessdate) | +| `ack` | [`Ack`](modules.md#ack) | +| `addrLine` | [`AddrLine`](modules.md#addrline) | +| `address` | [`Address`](modules.md#address) | +| `aff` | [`Aff`](modules.md#aff) | +| `affAlternatives` | [`AffAlternatives`](modules.md#affalternatives) | +| `altText` | [`AltText`](modules.md#alttext) | +| `altTitle` | [`AltTitle`](modules.md#alttitle) | +| `alternatives` | [`Alternatives`](modules.md#alternatives) | +| `annotation` | [`Annotation`](modules.md#annotation) | +| `anonymous` | [`Anonymous`](modules.md#anonymous) | +| `answer` | [`Answer`](modules.md#answer) | +| `answerSet` | [`AnswerSet`](modules.md#answerset) | +| `app` | [`App`](modules.md#app) | +| `appGroup` | [`AppGroup`](modules.md#appgroup) | +| `array` | [`Array`](modules.md#array) | +| `article` | [`Article`](modules.md#article) | +| `articleCategories` | [`ArticleCategories`](modules.md#articlecategories) | +| `articleId` | [`ArticleId`](modules.md#articleid) | +| `articleMeta` | [`ArticleMeta`](modules.md#articlemeta) | +| `articleTitle` | [`ArticleTitle`](modules.md#articletitle) | +| `articleVersion` | [`ArticleVersion`](modules.md#articleversion) | +| `articleVersionalternatives` | [`ArticleVersionalternatives`](modules.md#articleversionalternatives) | +| `attrib` | [`Attrib`](modules.md#attrib) | +| `authorComment` | [`AuthorComment`](modules.md#authorcomment) | +| `authorNotes` | [`AuthorNotes`](modules.md#authornotes) | +| `awardDesc` | [`AwardDesc`](modules.md#awarddesc) | +| `awardGroup` | [`AwardGroup`](modules.md#awardgroup) | +| `awardId` | [`AwardId`](modules.md#awardid) | +| `awardName` | [`AwardName`](modules.md#awardname) | +| `back` | [`Back`](modules.md#back) | +| `bio` | [`Bio`](modules.md#bio) | +| `blockAlternatives` | [`BlockAlternatives`](modules.md#blockalternatives) | +| `body` | [`Body`](modules.md#body) | +| `bold` | [`Bold`](modules.md#bold) | +| `boxedText` | [`BoxedText`](modules.md#boxedtext) | +| `break` | [`Break`](modules.md#break) | +| `caption` | [`Caption`](modules.md#caption) | +| `chapterTitle` | [`ChapterTitle`](modules.md#chaptertitle) | +| `chemStruct` | [`ChemStruct`](modules.md#chemstruct) | +| `chemStructwrap` | [`ChemStructwrap`](modules.md#chemstructwrap) | +| `citationAlternatives` | [`CitationAlternatives`](modules.md#citationalternatives) | +| `city` | [`City`](modules.md#city) | +| `code` | [`Code`](modules.md#code) | +| `col` | [`Col`](modules.md#col) | +| `colgroup` | [`Colgroup`](modules.md#colgroup) | +| `collab` | [`Collab`](modules.md#collab) | +| `collabAlternatives` | [`CollabAlternatives`](modules.md#collabalternatives) | +| `comment` | [`Comment`](modules.md#comment) | +| `compoundKwd` | [`CompoundKwd`](modules.md#compoundkwd) | +| `compoundKwdpart` | [`CompoundKwdpart`](modules.md#compoundkwdpart) | +| `compoundSubject` | [`CompoundSubject`](modules.md#compoundsubject) | +| `compoundSubjectpart` | [`CompoundSubjectpart`](modules.md#compoundsubjectpart) | +| `confAcronym` | [`ConfAcronym`](modules.md#confacronym) | +| `confDate` | [`ConfDate`](modules.md#confdate) | +| `confLoc` | [`ConfLoc`](modules.md#confloc) | +| `confName` | [`ConfName`](modules.md#confname) | +| `confNum` | [`ConfNum`](modules.md#confnum) | +| `confSponsor` | [`ConfSponsor`](modules.md#confsponsor) | +| `confTheme` | [`ConfTheme`](modules.md#conftheme) | +| `conference` | [`Conference`](modules.md#conference) | +| `contrib` | [`Contrib`](modules.md#contrib) | +| `contribGroup` | [`ContribGroup`](modules.md#contribgroup) | +| `contribId` | [`ContribId`](modules.md#contribid) | +| `contributedResourcegroup` | [`ContributedResourcegroup`](modules.md#contributedresourcegroup) | +| `copyrightHolder` | [`CopyrightHolder`](modules.md#copyrightholder) | +| `copyrightStatement` | [`CopyrightStatement`](modules.md#copyrightstatement) | +| `copyrightYear` | [`CopyrightYear`](modules.md#copyrightyear) | +| `corresp` | [`Corresp`](modules.md#corresp) | +| `count` | [`Count`](modules.md#count) | +| `country` | [`Country`](modules.md#country) | +| `counts` | [`Counts`](modules.md#counts) | +| `customMeta` | [`CustomMeta`](modules.md#custommeta) | +| `customMetagroup` | [`CustomMetagroup`](modules.md#custommetagroup) | +| `dataTitle` | [`DataTitle`](modules.md#datatitle) | +| `date` | [`Date`](modules.md#date) | +| `dateIncitation` | [`DateIncitation`](modules.md#dateincitation) | +| `day` | [`Day`](modules.md#day) | +| `def` | [`Def`](modules.md#def) | +| `defHead` | [`DefHead`](modules.md#defhead) | +| `defItem` | [`DefItem`](modules.md#defitem) | +| `defList` | [`DefList`](modules.md#deflist) | +| `degrees` | [`Degrees`](modules.md#degrees) | +| `dispFormula` | [`DispFormula`](modules.md#dispformula) | +| `dispFormulagroup` | [`DispFormulagroup`](modules.md#dispformulagroup) | +| `dispQuote` | [`DispQuote`](modules.md#dispquote) | +| `edition` | [`Edition`](modules.md#edition) | +| `elementCitation` | [`ElementCitation`](modules.md#elementcitation) | +| `elocationId` | [`ElocationId`](modules.md#elocationid) | +| `email` | [`Email`](modules.md#email) | +| `equationCount` | [`EquationCount`](modules.md#equationcount) | +| `era` | [`Era`](modules.md#era) | +| `etal` | [`Etal`](modules.md#etal) | +| `event` | [`Event`](modules.md#event) | +| `eventDesc` | [`EventDesc`](modules.md#eventdesc) | +| `explanation` | [`Explanation`](modules.md#explanation) | +| `extLink` | [`ExtLink`](modules.md#extlink) | +| `extendedBy` | [`ExtendedBy`](modules.md#extendedby) | +| `fax` | [`Fax`](modules.md#fax) | +| `fig` | [`Fig`](modules.md#fig) | +| `figCount` | [`FigCount`](modules.md#figcount) | +| `figGroup` | [`FigGroup`](modules.md#figgroup) | +| `fixedCase` | [`FixedCase`](modules.md#fixedcase) | +| `floatsGroup` | [`FloatsGroup`](modules.md#floatsgroup) | +| `fn` | [`Fn`](modules.md#fn) | +| `fnGroup` | [`FnGroup`](modules.md#fngroup) | +| `fpage` | [`Fpage`](modules.md#fpage) | +| `front` | [`Front`](modules.md#front) | +| `frontStub` | [`FrontStub`](modules.md#frontstub) | +| `fundingGroup` | [`FundingGroup`](modules.md#fundinggroup) | +| `fundingSource` | [`FundingSource`](modules.md#fundingsource) | +| `fundingStatement` | [`FundingStatement`](modules.md#fundingstatement) | +| `givenNames` | [`GivenNames`](modules.md#givennames) | +| `glossary` | [`Glossary`](modules.md#glossary) | +| `glyphData` | [`GlyphData`](modules.md#glyphdata) | +| `glyphRef` | [`GlyphRef`](modules.md#glyphref) | +| `gov` | [`Gov`](modules.md#gov) | +| `graphic` | [`Graphic`](modules.md#graphic) | +| `history` | [`History`](modules.md#history) | +| `hr` | [`Hr`](modules.md#hr) | +| `indexTerm` | [`IndexTerm`](modules.md#indexterm) | +| `indexTermrangeend` | [`IndexTermrangeend`](modules.md#indextermrangeend) | +| `inlineFormula` | [`InlineFormula`](modules.md#inlineformula) | +| `inlineGraphic` | [`InlineGraphic`](modules.md#inlinegraphic) | +| `inlineMedia` | [`InlineMedia`](modules.md#inlinemedia) | | `inlineSupplementarymaterial` | [`InlineSupplementarymaterial`](modules.md#inlinesupplementarymaterial) | -| `institution` | [`Institution`](modules.md#institution) | -| `institutionId` | [`InstitutionId`](modules.md#institutionid) | -| `institutionWrap` | [`InstitutionWrap`](modules.md#institutionwrap) | -| `isbn` | [`Isbn`](modules.md#isbn) | -| `issn` | [`Issn`](modules.md#issn) | -| `issnL` | [`IssnL`](modules.md#issnl) | -| `issue` | [`Issue`](modules.md#issue) | -| `issueId` | [`IssueId`](modules.md#issueid) | -| `issuePart` | [`IssuePart`](modules.md#issuepart) | -| `issueSponsor` | [`IssueSponsor`](modules.md#issuesponsor) | -| `issueSubtitle` | [`IssueSubtitle`](modules.md#issuesubtitle) | -| `issueTitle` | [`IssueTitle`](modules.md#issuetitle) | -| `issueTitlegroup` | [`IssueTitlegroup`](modules.md#issuetitlegroup) | -| `italic` | [`Italic`](modules.md#italic) | -| `journalId` | [`JournalId`](modules.md#journalid) | -| `journalMeta` | [`JournalMeta`](modules.md#journalmeta) | -| `journalSubtitle` | [`JournalSubtitle`](modules.md#journalsubtitle) | -| `journalTitle` | [`JournalTitle`](modules.md#journaltitle) | -| `journalTitlegroup` | [`JournalTitlegroup`](modules.md#journaltitlegroup) | -| `kwd` | [`Kwd`](modules.md#kwd) | -| `kwdGroup` | [`KwdGroup`](modules.md#kwdgroup) | -| `label` | [`Label`](modules.md#label) | -| `license` | [`License`](modules.md#license) | -| `licenseP` | [`LicenseP`](modules.md#licensep) | -| `list` | [`List`](modules.md#list) | -| `listItem` | [`ListItem`](modules.md#listitem) | -| `longDesc` | [`LongDesc`](modules.md#longdesc) | -| `lpage` | [`Lpage`](modules.md#lpage) | -| `media` | [`Media`](modules.md#media) | -| `metaName` | [`MetaName`](modules.md#metaname) | -| `metaValue` | [`MetaValue`](modules.md#metavalue) | -| `milestoneEnd` | [`MilestoneEnd`](modules.md#milestoneend) | -| `milestoneStart` | [`MilestoneStart`](modules.md#milestonestart) | -| `mixedCitation` | [`MixedCitation`](modules.md#mixedcitation) | -| `monospace` | [`Monospace`](modules.md#monospace) | -| `month` | [`Month`](modules.md#month) | -| `name` | [`Name`](modules.md#name) | -| `nameAlternatives` | [`NameAlternatives`](modules.md#namealternatives) | -| `namedContent` | [`NamedContent`](modules.md#namedcontent) | -| `nestedKwd` | [`NestedKwd`](modules.md#nestedkwd) | -| `nlmCitation` | [`NlmCitation`](modules.md#nlmcitation) | -| `note` | [`Note`](modules.md#note) | -| `notes` | [`Notes`](modules.md#notes) | -| `objectId` | [`ObjectId`](modules.md#objectid) | -| `onBehalfof` | [`OnBehalfof`](modules.md#onbehalfof) | -| `openAccess` | [`OpenAccess`](modules.md#openaccess) | -| `option` | [`Option`](modules.md#option) | -| `overline` | [`Overline`](modules.md#overline) | -| `overlineEnd` | [`OverlineEnd`](modules.md#overlineend) | -| `overlineStart` | [`OverlineStart`](modules.md#overlinestart) | -| `p` | [`P`](modules.md#p) | -| `pageCount` | [`PageCount`](modules.md#pagecount) | -| `pageRange` | [`PageRange`](modules.md#pagerange) | -| `partTitle` | [`PartTitle`](modules.md#parttitle) | -| `patent` | [`Patent`](modules.md#patent) | -| `permissions` | [`Permissions`](modules.md#permissions) | -| `personGroup` | [`PersonGroup`](modules.md#persongroup) | -| `phone` | [`Phone`](modules.md#phone) | -| `postalCode` | [`PostalCode`](modules.md#postalcode) | -| `prefix` | [`Prefix`](modules.md#prefix) | -| `preformat` | [`Preformat`](modules.md#preformat) | -| `price` | [`Price`](modules.md#price) | -| `principalAwardrecipient` | [`PrincipalAwardrecipient`](modules.md#principalawardrecipient) | -| `principalInvestigator` | [`PrincipalInvestigator`](modules.md#principalinvestigator) | -| `privateChar` | [`PrivateChar`](modules.md#privatechar) | -| `processingMeta` | [`ProcessingMeta`](modules.md#processingmeta) | -| `product` | [`Product`](modules.md#product) | -| `pubDate` | [`PubDate`](modules.md#pubdate) | -| `pubDatenotavailable` | [`PubDatenotavailable`](modules.md#pubdatenotavailable) | -| `pubHistory` | [`PubHistory`](modules.md#pubhistory) | -| `pubId` | [`PubId`](modules.md#pubid) | -| `publisher` | [`Publisher`](modules.md#publisher) | -| `publisherLoc` | [`PublisherLoc`](modules.md#publisherloc) | -| `publisherName` | [`PublisherName`](modules.md#publishername) | -| `question` | [`Question`](modules.md#question) | -| `questionPreamble` | [`QuestionPreamble`](modules.md#questionpreamble) | -| `questionWrap` | [`QuestionWrap`](modules.md#questionwrap) | -| `questionWrapgroup` | [`QuestionWrapgroup`](modules.md#questionwrapgroup) | -| `rb` | [`Rb`](modules.md#rb) | -| `ref` | [`Ref`](modules.md#ref) | -| `refCount` | [`RefCount`](modules.md#refcount) | -| `refList` | [`RefList`](modules.md#reflist) | -| `relatedArticle` | [`RelatedArticle`](modules.md#relatedarticle) | -| `relatedObject` | [`RelatedObject`](modules.md#relatedobject) | -| `resourceGroup` | [`ResourceGroup`](modules.md#resourcegroup) | -| `resourceId` | [`ResourceId`](modules.md#resourceid) | -| `resourceName` | [`ResourceName`](modules.md#resourcename) | -| `resourceWrap` | [`ResourceWrap`](modules.md#resourcewrap) | -| `response` | [`Response`](modules.md#response) | -| `restrictedBy` | [`RestrictedBy`](modules.md#restrictedby) | -| `role` | [`Role`](modules.md#role) | -| `roman` | [`Roman`](modules.md#roman) | -| `rp` | [`Rp`](modules.md#rp) | -| `rt` | [`Rt`](modules.md#rt) | -| `ruby` | [`Ruby`](modules.md#ruby) | -| `sansSerif` | [`SansSerif`](modules.md#sansserif) | -| `sc` | [`Sc`](modules.md#sc) | -| `season` | [`Season`](modules.md#season) | -| `sec` | [`Sec`](modules.md#sec) | -| `secMeta` | [`SecMeta`](modules.md#secmeta) | -| `see` | [`See`](modules.md#see) | -| `seeAlso` | [`SeeAlso`](modules.md#seealso) | -| `selfUri` | [`SelfUri`](modules.md#selfuri) | -| `series` | [`Series`](modules.md#series) | -| `seriesText` | [`SeriesText`](modules.md#seriestext) | -| `seriesTitle` | [`SeriesTitle`](modules.md#seriestitle) | -| `sig` | [`Sig`](modules.md#sig) | -| `sigBlock` | [`SigBlock`](modules.md#sigblock) | -| `size` | [`Size`](modules.md#size) | -| `source` | [`Source`](modules.md#source) | -| `speaker` | [`Speaker`](modules.md#speaker) | -| `speech` | [`Speech`](modules.md#speech) | -| `state` | [`State`](modules.md#state) | -| `statement` | [`Statement`](modules.md#statement) | -| `std` | [`Std`](modules.md#std) | -| `stdOrganization` | [`StdOrganization`](modules.md#stdorganization) | -| `strike` | [`Strike`](modules.md#strike) | -| `stringConf` | [`StringConf`](modules.md#stringconf) | -| `stringDate` | [`StringDate`](modules.md#stringdate) | -| `stringName` | [`StringName`](modules.md#stringname) | -| `styledContent` | [`StyledContent`](modules.md#styledcontent) | -| `sub` | [`Sub`](modules.md#sub) | -| `subArticle` | [`SubArticle`](modules.md#subarticle) | -| `subjGroup` | [`SubjGroup`](modules.md#subjgroup) | -| `subject` | [`Subject`](modules.md#subject) | -| `subtitle` | [`Subtitle`](modules.md#subtitle) | -| `suffix` | [`Suffix`](modules.md#suffix) | -| `sup` | [`Sup`](modules.md#sup) | -| `supplement` | [`Supplement`](modules.md#supplement) | -| `supplementaryMaterial` | [`SupplementaryMaterial`](modules.md#supplementarymaterial) | -| `supportDescription` | [`SupportDescription`](modules.md#supportdescription) | -| `supportGroup` | [`SupportGroup`](modules.md#supportgroup) | -| `supportSource` | [`SupportSource`](modules.md#supportsource) | -| `surname` | [`Surname`](modules.md#surname) | -| `table` | [`Table`](modules.md#table) | -| `tableCount` | [`TableCount`](modules.md#tablecount) | -| `tableWrap` | [`TableWrap`](modules.md#tablewrap) | -| `tableWrapfoot` | [`TableWrapfoot`](modules.md#tablewrapfoot) | -| `tableWrapgroup` | [`TableWrapgroup`](modules.md#tablewrapgroup) | -| `target` | [`Target`](modules.md#target) | -| `tbody` | [`Tbody`](modules.md#tbody) | -| `td` | [`Td`](modules.md#td) | -| `term` | [`Term`](modules.md#term) | -| `termHead` | [`TermHead`](modules.md#termhead) | -| `texMath` | [`TexMath`](modules.md#texmath) | -| `text` | [`Text`](modules.md#text) | -| `textualForm` | [`TextualForm`](modules.md#textualform) | -| `tfoot` | [`Tfoot`](modules.md#tfoot) | -| `th` | [`Th`](modules.md#th) | -| `thead` | [`Thead`](modules.md#thead) | -| `timeStamp` | [`TimeStamp`](modules.md#timestamp) | -| `title` | [`Title`](modules.md#title) | -| `titleGroup` | [`TitleGroup`](modules.md#titlegroup) | -| `tr` | [`Tr`](modules.md#tr) | -| `transAbstract` | [`TransAbstract`](modules.md#transabstract) | -| `transSource` | [`TransSource`](modules.md#transsource) | -| `transSubtitle` | [`TransSubtitle`](modules.md#transsubtitle) | -| `transTitle` | [`TransTitle`](modules.md#transtitle) | -| `transTitlegroup` | [`TransTitlegroup`](modules.md#transtitlegroup) | -| `underline` | [`Underline`](modules.md#underline) | -| `underlineEnd` | [`UnderlineEnd`](modules.md#underlineend) | -| `underlineStart` | [`UnderlineStart`](modules.md#underlinestart) | -| `unstructuredKwdgroup` | [`UnstructuredKwdgroup`](modules.md#unstructuredkwdgroup) | -| `uri` | [`Uri`](modules.md#uri) | -| `verseGroup` | [`VerseGroup`](modules.md#versegroup) | -| `verseLine` | [`VerseLine`](modules.md#verseline) | -| `version` | [`Version`](modules.md#version) | -| `volume` | [`Volume`](modules.md#volume) | -| `volumeId` | [`VolumeId`](modules.md#volumeid) | -| `volumeIssuegroup` | [`VolumeIssuegroup`](modules.md#volumeissuegroup) | -| `volumeSeries` | [`VolumeSeries`](modules.md#volumeseries) | -| `wordCount` | [`WordCount`](modules.md#wordcount) | -| `x` | [`X`](modules.md#x) | -| `xref` | [`Xref`](modules.md#xref) | -| `year` | [`Year`](modules.md#year) | - -Defined in: [libs/jast/jast/src/lib/jats.ts:13106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13106) +| `institution` | [`Institution`](modules.md#institution) | +| `institutionId` | [`InstitutionId`](modules.md#institutionid) | +| `institutionWrap` | [`InstitutionWrap`](modules.md#institutionwrap) | +| `isbn` | [`Isbn`](modules.md#isbn) | +| `issn` | [`Issn`](modules.md#issn) | +| `issnL` | [`IssnL`](modules.md#issnl) | +| `issue` | [`Issue`](modules.md#issue) | +| `issueId` | [`IssueId`](modules.md#issueid) | +| `issuePart` | [`IssuePart`](modules.md#issuepart) | +| `issueSponsor` | [`IssueSponsor`](modules.md#issuesponsor) | +| `issueSubtitle` | [`IssueSubtitle`](modules.md#issuesubtitle) | +| `issueTitle` | [`IssueTitle`](modules.md#issuetitle) | +| `issueTitlegroup` | [`IssueTitlegroup`](modules.md#issuetitlegroup) | +| `italic` | [`Italic`](modules.md#italic) | +| `journalId` | [`JournalId`](modules.md#journalid) | +| `journalMeta` | [`JournalMeta`](modules.md#journalmeta) | +| `journalSubtitle` | [`JournalSubtitle`](modules.md#journalsubtitle) | +| `journalTitle` | [`JournalTitle`](modules.md#journaltitle) | +| `journalTitlegroup` | [`JournalTitlegroup`](modules.md#journaltitlegroup) | +| `kwd` | [`Kwd`](modules.md#kwd) | +| `kwdGroup` | [`KwdGroup`](modules.md#kwdgroup) | +| `label` | [`Label`](modules.md#label) | +| `license` | [`License`](modules.md#license) | +| `licenseP` | [`LicenseP`](modules.md#licensep) | +| `list` | [`List`](modules.md#list) | +| `listItem` | [`ListItem`](modules.md#listitem) | +| `longDesc` | [`LongDesc`](modules.md#longdesc) | +| `lpage` | [`Lpage`](modules.md#lpage) | +| `media` | [`Media`](modules.md#media) | +| `metaName` | [`MetaName`](modules.md#metaname) | +| `metaValue` | [`MetaValue`](modules.md#metavalue) | +| `milestoneEnd` | [`MilestoneEnd`](modules.md#milestoneend) | +| `milestoneStart` | [`MilestoneStart`](modules.md#milestonestart) | +| `mixedCitation` | [`MixedCitation`](modules.md#mixedcitation) | +| `monospace` | [`Monospace`](modules.md#monospace) | +| `month` | [`Month`](modules.md#month) | +| `name` | [`Name`](modules.md#name) | +| `nameAlternatives` | [`NameAlternatives`](modules.md#namealternatives) | +| `namedContent` | [`NamedContent`](modules.md#namedcontent) | +| `nestedKwd` | [`NestedKwd`](modules.md#nestedkwd) | +| `nlmCitation` | [`NlmCitation`](modules.md#nlmcitation) | +| `note` | [`Note`](modules.md#note) | +| `notes` | [`Notes`](modules.md#notes) | +| `objectId` | [`ObjectId`](modules.md#objectid) | +| `onBehalfof` | [`OnBehalfof`](modules.md#onbehalfof) | +| `openAccess` | [`OpenAccess`](modules.md#openaccess) | +| `option` | [`Option`](modules.md#option) | +| `overline` | [`Overline`](modules.md#overline) | +| `overlineEnd` | [`OverlineEnd`](modules.md#overlineend) | +| `overlineStart` | [`OverlineStart`](modules.md#overlinestart) | +| `p` | [`P`](modules.md#p) | +| `pageCount` | [`PageCount`](modules.md#pagecount) | +| `pageRange` | [`PageRange`](modules.md#pagerange) | +| `partTitle` | [`PartTitle`](modules.md#parttitle) | +| `patent` | [`Patent`](modules.md#patent) | +| `permissions` | [`Permissions`](modules.md#permissions) | +| `personGroup` | [`PersonGroup`](modules.md#persongroup) | +| `phone` | [`Phone`](modules.md#phone) | +| `postalCode` | [`PostalCode`](modules.md#postalcode) | +| `prefix` | [`Prefix`](modules.md#prefix) | +| `preformat` | [`Preformat`](modules.md#preformat) | +| `price` | [`Price`](modules.md#price) | +| `principalAwardrecipient` | [`PrincipalAwardrecipient`](modules.md#principalawardrecipient) | +| `principalInvestigator` | [`PrincipalInvestigator`](modules.md#principalinvestigator) | +| `privateChar` | [`PrivateChar`](modules.md#privatechar) | +| `processingMeta` | [`ProcessingMeta`](modules.md#processingmeta) | +| `product` | [`Product`](modules.md#product) | +| `pubDate` | [`PubDate`](modules.md#pubdate) | +| `pubDatenotavailable` | [`PubDatenotavailable`](modules.md#pubdatenotavailable) | +| `pubHistory` | [`PubHistory`](modules.md#pubhistory) | +| `pubId` | [`PubId`](modules.md#pubid) | +| `publisher` | [`Publisher`](modules.md#publisher) | +| `publisherLoc` | [`PublisherLoc`](modules.md#publisherloc) | +| `publisherName` | [`PublisherName`](modules.md#publishername) | +| `question` | [`Question`](modules.md#question) | +| `questionPreamble` | [`QuestionPreamble`](modules.md#questionpreamble) | +| `questionWrap` | [`QuestionWrap`](modules.md#questionwrap) | +| `questionWrapgroup` | [`QuestionWrapgroup`](modules.md#questionwrapgroup) | +| `rb` | [`Rb`](modules.md#rb) | +| `ref` | [`Ref`](modules.md#ref) | +| `refCount` | [`RefCount`](modules.md#refcount) | +| `refList` | [`RefList`](modules.md#reflist) | +| `relatedArticle` | [`RelatedArticle`](modules.md#relatedarticle) | +| `relatedObject` | [`RelatedObject`](modules.md#relatedobject) | +| `resourceGroup` | [`ResourceGroup`](modules.md#resourcegroup) | +| `resourceId` | [`ResourceId`](modules.md#resourceid) | +| `resourceName` | [`ResourceName`](modules.md#resourcename) | +| `resourceWrap` | [`ResourceWrap`](modules.md#resourcewrap) | +| `response` | [`Response`](modules.md#response) | +| `restrictedBy` | [`RestrictedBy`](modules.md#restrictedby) | +| `role` | [`Role`](modules.md#role) | +| `roman` | [`Roman`](modules.md#roman) | +| `rp` | [`Rp`](modules.md#rp) | +| `rt` | [`Rt`](modules.md#rt) | +| `ruby` | [`Ruby`](modules.md#ruby) | +| `sansSerif` | [`SansSerif`](modules.md#sansserif) | +| `sc` | [`Sc`](modules.md#sc) | +| `season` | [`Season`](modules.md#season) | +| `sec` | [`Sec`](modules.md#sec) | +| `secMeta` | [`SecMeta`](modules.md#secmeta) | +| `see` | [`See`](modules.md#see) | +| `seeAlso` | [`SeeAlso`](modules.md#seealso) | +| `selfUri` | [`SelfUri`](modules.md#selfuri) | +| `series` | [`Series`](modules.md#series) | +| `seriesText` | [`SeriesText`](modules.md#seriestext) | +| `seriesTitle` | [`SeriesTitle`](modules.md#seriestitle) | +| `sig` | [`Sig`](modules.md#sig) | +| `sigBlock` | [`SigBlock`](modules.md#sigblock) | +| `size` | [`Size`](modules.md#size) | +| `source` | [`Source`](modules.md#source) | +| `speaker` | [`Speaker`](modules.md#speaker) | +| `speech` | [`Speech`](modules.md#speech) | +| `state` | [`State`](modules.md#state) | +| `statement` | [`Statement`](modules.md#statement) | +| `std` | [`Std`](modules.md#std) | +| `stdOrganization` | [`StdOrganization`](modules.md#stdorganization) | +| `strike` | [`Strike`](modules.md#strike) | +| `stringConf` | [`StringConf`](modules.md#stringconf) | +| `stringDate` | [`StringDate`](modules.md#stringdate) | +| `stringName` | [`StringName`](modules.md#stringname) | +| `styledContent` | [`StyledContent`](modules.md#styledcontent) | +| `sub` | [`Sub`](modules.md#sub) | +| `subArticle` | [`SubArticle`](modules.md#subarticle) | +| `subjGroup` | [`SubjGroup`](modules.md#subjgroup) | +| `subject` | [`Subject`](modules.md#subject) | +| `subtitle` | [`Subtitle`](modules.md#subtitle) | +| `suffix` | [`Suffix`](modules.md#suffix) | +| `sup` | [`Sup`](modules.md#sup) | +| `supplement` | [`Supplement`](modules.md#supplement) | +| `supplementaryMaterial` | [`SupplementaryMaterial`](modules.md#supplementarymaterial) | +| `supportDescription` | [`SupportDescription`](modules.md#supportdescription) | +| `supportGroup` | [`SupportGroup`](modules.md#supportgroup) | +| `supportSource` | [`SupportSource`](modules.md#supportsource) | +| `surname` | [`Surname`](modules.md#surname) | +| `table` | [`Table`](modules.md#table) | +| `tableCount` | [`TableCount`](modules.md#tablecount) | +| `tableWrap` | [`TableWrap`](modules.md#tablewrap) | +| `tableWrapfoot` | [`TableWrapfoot`](modules.md#tablewrapfoot) | +| `tableWrapgroup` | [`TableWrapgroup`](modules.md#tablewrapgroup) | +| `target` | [`Target`](modules.md#target) | +| `tbody` | [`Tbody`](modules.md#tbody) | +| `td` | [`Td`](modules.md#td) | +| `term` | [`Term`](modules.md#term) | +| `termHead` | [`TermHead`](modules.md#termhead) | +| `texMath` | [`TexMath`](modules.md#texmath) | +| `text` | [`Text`](modules.md#text) | +| `textualForm` | [`TextualForm`](modules.md#textualform) | +| `tfoot` | [`Tfoot`](modules.md#tfoot) | +| `th` | [`Th`](modules.md#th) | +| `thead` | [`Thead`](modules.md#thead) | +| `timeStamp` | [`TimeStamp`](modules.md#timestamp) | +| `title` | [`Title`](modules.md#title) | +| `titleGroup` | [`TitleGroup`](modules.md#titlegroup) | +| `tr` | [`Tr`](modules.md#tr) | +| `transAbstract` | [`TransAbstract`](modules.md#transabstract) | +| `transSource` | [`TransSource`](modules.md#transsource) | +| `transSubtitle` | [`TransSubtitle`](modules.md#transsubtitle) | +| `transTitle` | [`TransTitle`](modules.md#transtitle) | +| `transTitlegroup` | [`TransTitlegroup`](modules.md#transtitlegroup) | +| `underline` | [`Underline`](modules.md#underline) | +| `underlineEnd` | [`UnderlineEnd`](modules.md#underlineend) | +| `underlineStart` | [`UnderlineStart`](modules.md#underlinestart) | +| `unstructuredKwdgroup` | [`UnstructuredKwdgroup`](modules.md#unstructuredkwdgroup) | +| `uri` | [`Uri`](modules.md#uri) | +| `verseGroup` | [`VerseGroup`](modules.md#versegroup) | +| `verseLine` | [`VerseLine`](modules.md#verseline) | +| `version` | [`Version`](modules.md#version) | +| `volume` | [`Volume`](modules.md#volume) | +| `volumeId` | [`VolumeId`](modules.md#volumeid) | +| `volumeIssuegroup` | [`VolumeIssuegroup`](modules.md#volumeissuegroup) | +| `volumeSeries` | [`VolumeSeries`](modules.md#volumeseries) | +| `wordCount` | [`WordCount`](modules.md#wordcount) | +| `x` | [`X`](modules.md#x) | +| `xref` | [`Xref`](modules.md#xref) | +| `year` | [`Year`](modules.md#year) | + +Defined in: [libs/jast/jast/src/lib/jats.ts:13106](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/jast/jast/src/lib/jats.ts#L13106) ## Syntax tree @@ -52368,47 +52368,25 @@ Defined in: [libs/jast/jast/src/lib/jats.ts:13106](https://github.com/TrialAndE [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-stringify - [rejour-jast-jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-jast-jast - [rejour-jast-jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-jast-jast-util-to-texast - [rejour-jast-jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-jast-jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs diff --git a/libs/jast/jast/package.json b/libs/jast/jast/package.json index f2472874..5fd1dea9 100755 --- a/libs/jast/jast/package.json +++ b/libs/jast/jast/package.json @@ -33,5 +33,8 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "utility-types": "^3.10.0" + } } diff --git a/libs/jast/jast/project.json b/libs/jast/jast/project.json index bee8ed63..ef03b40c 100755 --- a/libs/jast/jast/project.json +++ b/libs/jast/jast/project.json @@ -41,10 +41,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/jast/jast/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/notion/html-to-notion-blocks/.eslintrc.json b/libs/notion/html-to-notion-blocks/.eslintrc.json index 19a99c9d..3456be9b 100644 --- a/libs/notion/html-to-notion-blocks/.eslintrc.json +++ b/libs/notion/html-to-notion-blocks/.eslintrc.json @@ -1,32 +1,17 @@ { - "extends": [ - "../../../.eslintrc.json" - ], - "ignorePatterns": [ - "!**/*" - ], + "extends": ["../../../.eslintrc.json"], + "ignorePatterns": ["!**/*"], "overrides": [ { - "files": [ - "*.ts", - "*.tsx", - "*.js", - "*.jsx" - ], + "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": {} }, { - "files": [ - "*.ts", - "*.tsx" - ], + "files": ["*.ts", "*.tsx"], "rules": {} }, { - "files": [ - "*.js", - "*.jsx" - ], + "files": ["*.js", "*.jsx"], "rules": {} } ] diff --git a/libs/notion/html-to-notion-blocks/CHANGELOG.md b/libs/notion/html-to-notion-blocks/CHANGELOG.md index 5086a947..9c6e94b6 100644 --- a/libs/notion/html-to-notion-blocks/CHANGELOG.md +++ b/libs/notion/html-to-notion-blocks/CHANGELOG.md @@ -6,25 +6,24 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `rehype-notion` updated to version `0.1.1` +- `rehype-notion` updated to version `0.1.1` ### Bug Fixes -* **notion:** update notion libs to new format ([7a6f218](https://github.com/TrialAndErrorOrg/parsers/commit/7a6f21865c8889652b2e234002a4789fe6626c3b)) +- **notion:** update notion libs to new format ([7a6f218](https://github.com/TrialAndErrorOrg/parsers/commit/7a6f21865c8889652b2e234002a4789fe6626c3b)) ## 0.1.0 (2023-03-09) ### Dependency Updates -* `rehype-notion` updated to version `0.1.0` +- `rehype-notion` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/notion/html-to-notion-blocks/README.md b/libs/notion/html-to-notion-blocks/README.md index 7bc80df6..8d641d30 100644 --- a/libs/notion/html-to-notion-blocks/README.md +++ b/libs/notion/html-to-notion-blocks/README.md @@ -9,20 +9,20 @@ Transform HTML to Notion blocks ## Contents -* [html-to-notion-blocks](#html-to-notion-blocks) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [`htmlToNotion()`](#htmltonotion) - * [Signature](#signature) - * [Parameters](#parameters) - * [Returns](#returns) - * [Security](#security) - * [Related](#related) - * [License](#license) +- [html-to-notion-blocks](#html-to-notion-blocks) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [`htmlToNotion()`](#htmltonotion) + - [Signature](#signature) + - [Parameters](#parameters) + - [Returns](#returns) + - [Security](#security) + - [Related](#related) + - [License](#license) ## What is this? @@ -85,7 +85,7 @@ console.log(notionBlocks) ## API -*** +--- ### `htmlToNotion()` @@ -97,16 +97,16 @@ htmlToNotion(html: string, options?: Options): BlockObjectRequest[]; #### Parameters -| Name | Type | -| :------ | :------ | -| `html` | `string` | +| Name | Type | +| :--------- | :-------- | +| `html` | `string` | | `options?` | `Options` | #### Returns `BlockObjectRequest`[] -Defined in: [lib/html-to-notion-blocks.ts:5](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/notion/html-to-notion-blocks/src/lib/html-to-notion-blocks.ts#L5) +Defined in: [lib/html-to-notion-blocks.ts:5](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/notion/html-to-notion-blocks/src/lib/html-to-notion-blocks.ts#L5) ## Security @@ -114,72 +114,43 @@ Use of `html-to-notion-blocks` can open you up to a [cross-site scripting (XSS)] ## Related -* [rehype-to-notion][rehype-to-notion] - — Transform HTML to Notion blocks -* [rehype-sanitize][rehype-sanitize] -* [rehype][rehype] - — HTML processor powered by plugins part of the [unified][unified] collective +- [rehype-to-notion][rehype-to-notion] + — Transform HTML to Notion blocks +- [rehype-sanitize][rehype-sanitize] +- [rehype][rehype] + — HTML processor powered by plugins part of the [unified][unified] collective ## License [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-parse - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast - [rehype-to-notion]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/notion/rehype-to-notion - [html-to-notion-blocks]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/notion/html-to-notion-blocks diff --git a/libs/notion/html-to-notion-blocks/package.json b/libs/notion/html-to-notion-blocks/package.json index e342e2d1..efe45c86 100644 --- a/libs/notion/html-to-notion-blocks/package.json +++ b/libs/notion/html-to-notion-blocks/package.json @@ -34,5 +34,10 @@ "/libindex.js", "./index.d.ts", "/lib" - ] + ], + "dependencies": { + "rehype-notion": "*", + "rehype-parse": "^8.0.4", + "unified": "^10.1.2" + } } diff --git a/libs/notion/html-to-notion-blocks/project.json b/libs/notion/html-to-notion-blocks/project.json index 611c78aa..82f41af2 100644 --- a/libs/notion/html-to-notion-blocks/project.json +++ b/libs/notion/html-to-notion-blocks/project.json @@ -29,10 +29,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/notion/html-to-notion-blocks/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/notion/html-to-notion-blocks/src/lib/html-to-notion-blocks.ts b/libs/notion/html-to-notion-blocks/src/lib/html-to-notion-blocks.ts index 1567aec4..beaa5feb 100644 --- a/libs/notion/html-to-notion-blocks/src/lib/html-to-notion-blocks.ts +++ b/libs/notion/html-to-notion-blocks/src/lib/html-to-notion-blocks.ts @@ -3,9 +3,7 @@ import rehypeParse from 'rehype-parse' import { unified } from 'unified' export const htmlToNotion = (html: string, options?: Options): Block[] => { - const processor = unified() - .use(rehypeParse, { fragment: true }) - .use(rehypeNotion, options) + const processor = unified().use(rehypeParse, { fragment: true }).use(rehypeNotion, options) const { result } = processor.processSync(html) diff --git a/libs/notion/html-to-notion-blocks/tsconfig.spec.json b/libs/notion/html-to-notion-blocks/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/notion/html-to-notion-blocks/tsconfig.spec.json +++ b/libs/notion/html-to-notion-blocks/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/notion/rehype-notion/CHANGELOG.md b/libs/notion/rehype-notion/CHANGELOG.md index 9b083639..459cbd1d 100644 --- a/libs/notion/rehype-notion/CHANGELOG.md +++ b/libs/notion/rehype-notion/CHANGELOG.md @@ -4,29 +4,25 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.1.3](https://github.com/TrialAndErrorOrg/parsers/compare/rehype-notion-0.1.2...rehype-notion-0.1.3) (2023-06-13) - ### Bug Fixes -* **#94:** update rehype-notion deps ([5204ff2](https://github.com/TrialAndErrorOrg/parsers/commit/5204ff2efb8ed4dbeabfb8be4f9436f7a3b7de02)), closes [#94](https://github.com/TrialAndErrorOrg/parsers/issues/94) +- **#94:** update rehype-notion deps ([5204ff2](https://github.com/TrialAndErrorOrg/parsers/commit/5204ff2efb8ed4dbeabfb8be4f9436f7a3b7de02)), closes [#94](https://github.com/TrialAndErrorOrg/parsers/issues/94) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/rehype-notion-0.1.1...rehype-notion-0.1.2) (2023-03-10) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/rehype-notion-0.1.0...rehype-notion-0.1.1) (2023-03-09) - ### Bug Fixes -* **notion:** update notion libs to new format ([7a6f218](https://github.com/TrialAndErrorOrg/parsers/commit/7a6f21865c8889652b2e234002a4789fe6626c3b)) +- **notion:** update notion libs to new format ([7a6f218](https://github.com/TrialAndErrorOrg/parsers/commit/7a6f21865c8889652b2e234002a4789fe6626c3b)) ## 0.1.0 (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/notion/rehype-notion/README.md b/libs/notion/rehype-notion/README.md index 3227b7ba..db6acdd3 100644 --- a/libs/notion/rehype-notion/README.md +++ b/libs/notion/rehype-notion/README.md @@ -12,26 +12,26 @@ Plugin for `rehype` to turn HTML into Notion blocks ## Contents -* [rehype-notion](#rehype-notion) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [`default()`](#default) - * [Signature](#signature) - * [Parameters](#parameters) - * [Returns](#returns) - * [`Options`](#options) - * [Properties](#properties) - * [`hastToMdastOptions?`](#hasttomdastoptions) - * [`markdownToNotionOptions?`](#markdowntonotionoptions) - * [`mdastToMarkdownOptions?`](#mdasttomarkdownoptions) - * [`Block`](#block) - * [Security](#security) - * [Related](#related) - * [License](#license) +- [rehype-notion](#rehype-notion) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [`default()`](#default) + - [Signature](#signature) + - [Parameters](#parameters) + - [Returns](#returns) + - [`Options`](#options) + - [Properties](#properties) + - [`hastToMdastOptions?`](#hasttomdastoptions) + - [`markdownToNotionOptions?`](#markdowntonotionoptions) + - [`mdastToMarkdownOptions?`](#mdasttomarkdownoptions) + - [`Block`](#block) + - [Security](#security) + - [Related](#related) + - [License](#license) ## What is this? @@ -136,7 +136,7 @@ console.log(notionBlocks) ## API -*** +--- ### `default()` @@ -154,10 +154,10 @@ default(this: Processor | Processor | `Processor`<`void`, `Comment`, `Comment`, `BlockObjectRequest`[]> | `Processor`<`void`, `DocType`, `DocType`, `BlockObjectRequest`[]> | `Processor`<`void`, `Element`, `Element`, `BlockObjectRequest`[]> | `Processor`<`void`, `Text`, `Text`, `BlockObjectRequest`[]> | - | -| `...settings` | [[`Options`](modules.md#options)] | [`void`] | [] | Configuration for plugin. Plugins typically receive one options object, but could receive other and more values. Users can also pass a boolean instead of settings: `true` (to turn a plugin on) or `false` (to turn a plugin off). When a plugin is turned off, it won’t be called. When creating your own plugins, please accept only a single object! It allows plugins to be reconfigured and it helps users to know that every plugin accepts one options object. | +| Name | Type | Description | +| :------------ | :---------------------------------------------------------- | :---------------------------------------------------------------- | ----------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------- | --- | +| `this` | `Processor`<`void`, `Root`, `Root`, `BlockObjectRequest`[]> | `Processor`<`void`, `Comment`, `Comment`, `BlockObjectRequest`[]> | `Processor`<`void`, `DocType`, `DocType`, `BlockObjectRequest`[]> | `Processor`<`void`, `Element`, `Element`, `BlockObjectRequest`[]> | `Processor`<`void`, `Text`, `Text`, `BlockObjectRequest`[]> | - | +| `...settings` | [[`Options`](modules.md#options)] | [`void`] | [] | Configuration for plugin. Plugins typically receive one options object, but could receive other and more values. Users can also pass a boolean instead of settings: `true` (to turn a plugin on) or `false` (to turn a plugin off). When a plugin is turned off, it won’t be called. When creating your own plugins, please accept only a single object! It allows plugins to be reconfigured and it helps users to know that every plugin accepts one options object. | #### Returns @@ -166,9 +166,9 @@ default(this: Processor | Processor `Options` -Defined in: [src/lib/rehype-notion.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/notion/rehype-notion/src/lib/rehype-notion.ts#L29) +Defined in: [src/lib/rehype-notion.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/notion/rehype-notion/src/lib/rehype-notion.ts#L29) ##### `markdownToNotionOptions?` > `BlocksOptions` -Defined in: [src/lib/rehype-notion.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/notion/rehype-notion/src/lib/rehype-notion.ts#L31) +Defined in: [src/lib/rehype-notion.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/notion/rehype-notion/src/lib/rehype-notion.ts#L31) ##### `mdastToMarkdownOptions?` > `MdastToMarkdownOptions` -Defined in: [src/lib/rehype-notion.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/notion/rehype-notion/src/lib/rehype-notion.ts#L30) +Defined in: [src/lib/rehype-notion.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/notion/rehype-notion/src/lib/rehype-notion.ts#L30) -*** +--- ### `Block` > `AppendBlockChildrenParameters`[`"children"`][`number`] -Defined in: [src/lib/rehype-notion.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/notion/rehype-notion/src/lib/rehype-notion.ts#L13) +Defined in: [src/lib/rehype-notion.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/notion/rehype-notion/src/lib/rehype-notion.ts#L13) ## Security @@ -206,76 +206,46 @@ Use of `rehypeNotion` can open you up to a [cross-site scripting (XSS)][xss] att ## Related -* [html-to-notion-blocks][html-to-notion-blocks] - * Convert HTML to Notion blocks without constructing the procssing pipeline yourself -* [@tryfabric/martian](https://github.com/@tryfabric/martian) - * Convert Markdown to Notion blocks using a simple API -* [rehype-sanitize][rehype-sanitize] -* [rehype][rehype] - — HTML processor powered by plugins part of the [unified][unified] collective +- [html-to-notion-blocks][html-to-notion-blocks] + - Convert HTML to Notion blocks without constructing the procssing pipeline yourself +- [@tryfabric/martian](https://github.com/@tryfabric/martian) + - Convert Markdown to Notion blocks using a simple API +- [rehype-sanitize][rehype-sanitize] +- [rehype][rehype] + — HTML processor powered by plugins part of the [unified][unified] collective ## License [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-parse - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast - [rehype-notion]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/notion/rehype-notion - [html-to-notion-blocks]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/notion/html-to-notion-blocks - [rehype-sanitize]: https://github.com/rehypejs/rehype-sanitize diff --git a/libs/notion/rehype-notion/package.json b/libs/notion/rehype-notion/package.json index a18d08b5..dd51a271 100644 --- a/libs/notion/rehype-notion/package.json +++ b/libs/notion/rehype-notion/package.json @@ -32,5 +32,14 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "rehype-remark": "^9.1.2", + "unified": "^10.1.2", + "@tryfabric/martian": "^1.2.4", + "@notionhq/client": "^2.2.2", + "mdast-util-gfm": "^2.0.2", + "mdast-util-to-markdown": "^1.5.0", + "hast-util-to-mdast": "^9.0.0" + } } diff --git a/libs/notion/rehype-notion/project.json b/libs/notion/rehype-notion/project.json index 70c8ef67..43df9a77 100644 --- a/libs/notion/rehype-notion/project.json +++ b/libs/notion/rehype-notion/project.json @@ -29,10 +29,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/notion/rehype-notion/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ojs/ojs-client/README.md b/libs/ojs/ojs-client/README.md index eab015bf..139fd204 100755 --- a/libs/ojs/ojs-client/README.md +++ b/libs/ojs/ojs-client/README.md @@ -3,7 +3,7 @@ ## API -*** +--- ### `default` @@ -19,19 +19,19 @@ new default(«destructured»: object = {}): default; ##### `Parameters` -| Name | Type | -| :------ | :------ | -| `«destructured»` | `object` | -| › `cookie` | `undefined` | `string` | -| › `endpoint` | `undefined` | `string` | -| › `token` | `undefined` | `string` | -| › `version` | `undefined` | `string` | +| Name | Type | +| :--------------- | :---------- | -------- | +| `«destructured»` | `object` | +| › `cookie` | `undefined` | `string` | +| › `endpoint` | `undefined` | `string` | +| › `token` | `undefined` | `string` | +| › `version` | `undefined` | `string` | ##### `Returns` [`default`](modules.md#default) -Defined in: [lib/ojs-client.ts:83](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L83) +Defined in: [lib/ojs-client.ts:83](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L83) #### Properties @@ -41,42 +41,42 @@ Defined in: [lib/ojs-client.ts:83](https://github.com/TrialAndErrorOrg/parsers/ ###### Type declaration -*Signature\`* +_Signature\`_ ```ts ( - method: string, - path: string, - data?: false | Record, + method: string, + path: string, + data?: false | Record, query?: Record): Promise; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | -| `method` | `string` | -| `path` | `string` | -| `data?` | `false` | `Record`<`string`, `any`> | +| Name | Type | +| :------- | :------------------------ | ------------------------- | +| `method` | `string` | +| `path` | `string` | +| `data?` | `false` | `Record`<`string`, `any`> | | `query?` | `Record`<`string`, `any`> | -*Returns\`* +_Returns\`_ `Promise`<`any`> -Defined in: [lib/ojs-client.ts:77](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L77) +Defined in: [lib/ojs-client.ts:77](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L77) ##### `cookie` > `string` -Defined in: [lib/ojs-client.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L75) +Defined in: [lib/ojs-client.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L75) ##### `endpoint` > `string` -Defined in: [lib/ojs-client.ts:63](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L63) +Defined in: [lib/ojs-client.ts:63](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L63) ##### `headers` @@ -93,20 +93,20 @@ Defined in: [lib/ojs-client.ts:63](https://github.com/TrialAndErrorOrg/parsers/ ###### Type declaration -| Member | Type | -| :------ | :------ | -| `Accept` | `string` | -| `Content-Type` | `string` | -| `Cookie` | `string` | +| Member | Type | +| :--------------- | :------- | +| `Accept` | `string` | +| `Content-Type` | `string` | +| `Cookie` | `string` | | `accept-version` | `string` | -Defined in: [lib/ojs-client.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L67) +Defined in: [lib/ojs-client.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L67) ##### `token` > `string` -Defined in: [lib/ojs-client.ts:65](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L65) +Defined in: [lib/ojs-client.ts:65](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L65) #### Methods @@ -122,55 +122,55 @@ createFile(submissionId: string, body: object): Promise; ###### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `submissionId` | `string` | - | -| `body` | `object` | - | -| `body._href?` | `string` | Format: uri | -| `body.assocId?` | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `body.assocType?` | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `body.caption?` | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `body.copyrightOwner?` | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `body.createdAt?` | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `body.creator?` | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `body.credit?` | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `body.dateCreated?` | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `body.dependentFiles?` | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `body.description?` | `string` | - | -| `body.documentType?` | `string` | - | -| `body.file?` | `string` | Format: binary | -| `body.fileId` | `number` | - | -| `body.fileStage` | `number` | - | -| `body.genre?` | `object` | `Description` The genre of this file, such as Article Text or Data Set. | -| `body.genre.dependent?` | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `body.genre.id?` | `number` | - | -| `body.genre.name?` | `string` | - | -| `body.genre.supplementary?` | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `body.genreId?` | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `body.id?` | `number` | - | -| `body.language?` | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `body.locale?` | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `body.mimetype?` | `string` | - | -| `body.name` | { } | - | -| `body.path?` | `string` | - | -| `body.publisher?` | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `body.revisions?` | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `body.source?` | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `body.sourceSubmissionFileId?` | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `body.sponsor?` | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `body.subject?` | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `body.submissionId` | `number` | - | -| `body.terms?` | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `body.updatedAt?` | `string` | `Description` When this object was last updated. | -| `body.uploaderUserId` | `number` | - | -| `body.url?` | `string` | - | -| `body.viewable?` | `boolean` | - | +| Name | Type | Description | +| :----------------------------- | :---------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------- | --------------------------- | ---------------------------------- | ----------------------------- | ---------------------------------------------- | --------------- | --------------------------------------------------------------------------------------------------- | +| `submissionId` | `string` | - | +| `body` | `object` | - | +| `body._href?` | `string` | Format: uri | +| `body.assocId?` | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `body.assocType?` | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `body.caption?` | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `body.copyrightOwner?` | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `body.createdAt?` | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `body.creator?` | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `body.credit?` | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `body.dateCreated?` | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `body.dependentFiles?` | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `body.description?` | `string` | - | +| `body.documentType?` | `string` | - | +| `body.file?` | `string` | Format: binary | +| `body.fileId` | `number` | - | +| `body.fileStage` | `number` | - | +| `body.genre?` | `object` | `Description` The genre of this file, such as Article Text or Data Set. | +| `body.genre.dependent?` | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `body.genre.id?` | `number` | - | +| `body.genre.name?` | `string` | - | +| `body.genre.supplementary?` | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `body.genreId?` | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `body.id?` | `number` | - | +| `body.language?` | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `body.locale?` | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `body.mimetype?` | `string` | - | +| `body.name` | { } | - | +| `body.path?` | `string` | - | +| `body.publisher?` | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `body.revisions?` | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `body.source?` | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `body.sourceSubmissionFileId?` | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `body.sponsor?` | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `body.subject?` | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `body.submissionId` | `number` | - | +| `body.terms?` | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `body.updatedAt?` | `string` | `Description` When this object was last updated. | +| `body.uploaderUserId` | `number` | - | +| `body.url?` | `string` | - | +| `body.viewable?` | `boolean` | - | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L359) +Defined in: [lib/ojs-client.ts:359](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L359) ##### `createSubmission()` @@ -184,54 +184,54 @@ createSubmission(body: object): Promise; ###### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `body` | `object` | - | -| `body._href?` | `string` | Format: uri | -| `body.assocId?` | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `body.assocType?` | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `body.caption?` | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `body.copyrightOwner?` | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `body.createdAt?` | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `body.creator?` | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `body.credit?` | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `body.dateCreated?` | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `body.dependentFiles?` | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `body.description?` | `string` | - | -| `body.documentType?` | `string` | - | -| `body.file?` | `string` | Format: binary | -| `body.fileId` | `number` | - | -| `body.fileStage` | `number` | - | -| `body.genre?` | `object` | `Description` The genre of this file, such as Article Text or Data Set. | -| `body.genre.dependent?` | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `body.genre.id?` | `number` | - | -| `body.genre.name?` | `string` | - | -| `body.genre.supplementary?` | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `body.genreId?` | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `body.id?` | `number` | - | -| `body.language?` | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `body.locale?` | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `body.mimetype?` | `string` | - | -| `body.name` | { } | - | -| `body.path?` | `string` | - | -| `body.publisher?` | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `body.revisions?` | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `body.source?` | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `body.sourceSubmissionFileId?` | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `body.sponsor?` | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `body.subject?` | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `body.submissionId` | `number` | - | -| `body.terms?` | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `body.updatedAt?` | `string` | `Description` When this object was last updated. | -| `body.uploaderUserId` | `number` | - | -| `body.url?` | `string` | - | -| `body.viewable?` | `boolean` | - | +| Name | Type | Description | +| :----------------------------- | :---------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------- | --------------------------- | ---------------------------------- | ----------------------------- | ---------------------------------------------- | --------------- | --------------------------------------------------------------------------------------------------- | +| `body` | `object` | - | +| `body._href?` | `string` | Format: uri | +| `body.assocId?` | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `body.assocType?` | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `body.caption?` | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `body.copyrightOwner?` | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `body.createdAt?` | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `body.creator?` | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `body.credit?` | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `body.dateCreated?` | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `body.dependentFiles?` | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `body.description?` | `string` | - | +| `body.documentType?` | `string` | - | +| `body.file?` | `string` | Format: binary | +| `body.fileId` | `number` | - | +| `body.fileStage` | `number` | - | +| `body.genre?` | `object` | `Description` The genre of this file, such as Article Text or Data Set. | +| `body.genre.dependent?` | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `body.genre.id?` | `number` | - | +| `body.genre.name?` | `string` | - | +| `body.genre.supplementary?` | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `body.genreId?` | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `body.id?` | `number` | - | +| `body.language?` | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `body.locale?` | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `body.mimetype?` | `string` | - | +| `body.name` | { } | - | +| `body.path?` | `string` | - | +| `body.publisher?` | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `body.revisions?` | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `body.source?` | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `body.sourceSubmissionFileId?` | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `body.sponsor?` | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `body.subject?` | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `body.submissionId` | `number` | - | +| `body.terms?` | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `body.updatedAt?` | `string` | `Description` When this object was last updated. | +| `body.uploaderUserId` | `number` | - | +| `body.url?` | `string` | - | +| `body.viewable?` | `boolean` | - | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L224) +Defined in: [lib/ojs-client.ts:224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L224) ##### `delete()` @@ -243,16 +243,16 @@ delete(path: string, query: Record = {}): Promise; ###### Parameters -| Name | Type | -| :------ | :------ | -| `path` | `string` | +| Name | Type | +| :------ | :------------------------ | +| `path` | `string` | | `query` | `Record`<`string`, `any`> | ###### Returns `Promise`<`any`> -Defined in: [lib/ojs-client.ts:158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L158) +Defined in: [lib/ojs-client.ts:158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L158) ##### `deleteFile()` @@ -266,18 +266,18 @@ deleteFile(submissionId: string, submissionFileId: string, query: object): Promi ###### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `submissionId` | `string` | - | -| `submissionFileId` | `string` | - | -| `query` | `object` | - | -| `query.stageId` | `number` | The workflow stage id of the file to be edited. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. | +| Name | Type | Description | +| :----------------- | :------- | :------------------------------------------------------------------------------------------- | +| `submissionId` | `string` | - | +| `submissionFileId` | `string` | - | +| `query` | `object` | - | +| `query.stageId` | `number` | The workflow stage id of the file to be edited. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L387) +Defined in: [lib/ojs-client.ts:387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L387) ##### `deleteSubmission()` @@ -291,15 +291,15 @@ deleteSubmission(id: number): Promise; ###### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :--- | :------- | | `id` | `number` | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L257) +Defined in: [lib/ojs-client.ts:257](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L257) ##### `editFile()` @@ -309,66 +309,66 @@ Edit a file ```ts editFile( - submissionId: string, - submissionFileId: string, - body: object, + submissionId: string, + submissionFileId: string, + body: object, query: object): Promise; ``` ###### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `submissionId` | `string` | - | -| `submissionFileId` | `string` | - | -| `body` | `object` | - | -| `body._href?` | `string` | Format: uri | -| `body.assocId?` | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `body.assocType?` | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `body.caption?` | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `body.copyrightOwner?` | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `body.createdAt?` | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `body.creator?` | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `body.credit?` | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `body.dateCreated?` | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `body.dependentFiles?` | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `body.description?` | `string` | - | -| `body.documentType?` | `string` | - | -| `body.file?` | `string` | Format: binary | -| `body.fileId` | `number` | - | -| `body.fileStage` | `number` | - | -| `body.genre?` | `object` | `Description` The genre of this file, such as Article Text or Data Set. | -| `body.genre.dependent?` | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `body.genre.id?` | `number` | - | -| `body.genre.name?` | `string` | - | -| `body.genre.supplementary?` | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `body.genreId?` | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `body.id?` | `number` | - | -| `body.language?` | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `body.locale?` | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `body.mimetype?` | `string` | - | -| `body.name` | { } | - | -| `body.path?` | `string` | - | -| `body.publisher?` | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `body.revisions?` | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `body.source?` | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `body.sourceSubmissionFileId?` | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `body.sponsor?` | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `body.subject?` | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `body.submissionId` | `number` | - | -| `body.terms?` | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `body.updatedAt?` | `string` | `Description` When this object was last updated. | -| `body.uploaderUserId` | `number` | - | -| `body.url?` | `string` | - | -| `body.viewable?` | `boolean` | - | -| `query` | `object` | - | -| `query.stageId` | `number` | The workflow stage id of the file to be edited. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. | +| Name | Type | Description | +| :----------------------------- | :---------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------- | --------------------------- | ---------------------------------- | ----------------------------- | ---------------------------------------------- | --------------- | --------------------------------------------------------------------------------------------------- | +| `submissionId` | `string` | - | +| `submissionFileId` | `string` | - | +| `body` | `object` | - | +| `body._href?` | `string` | Format: uri | +| `body.assocId?` | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `body.assocType?` | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `body.caption?` | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `body.copyrightOwner?` | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `body.createdAt?` | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `body.creator?` | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `body.credit?` | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `body.dateCreated?` | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `body.dependentFiles?` | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `body.description?` | `string` | - | +| `body.documentType?` | `string` | - | +| `body.file?` | `string` | Format: binary | +| `body.fileId` | `number` | - | +| `body.fileStage` | `number` | - | +| `body.genre?` | `object` | `Description` The genre of this file, such as Article Text or Data Set. | +| `body.genre.dependent?` | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `body.genre.id?` | `number` | - | +| `body.genre.name?` | `string` | - | +| `body.genre.supplementary?` | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `body.genreId?` | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `body.id?` | `number` | - | +| `body.language?` | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `body.locale?` | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `body.mimetype?` | `string` | - | +| `body.name` | { } | - | +| `body.path?` | `string` | - | +| `body.publisher?` | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `body.revisions?` | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `body.source?` | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `body.sourceSubmissionFileId?` | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `body.sponsor?` | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `body.subject?` | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `body.submissionId` | `number` | - | +| `body.terms?` | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `body.updatedAt?` | `string` | `Description` When this object was last updated. | +| `body.uploaderUserId` | `number` | - | +| `body.url?` | `string` | - | +| `body.viewable?` | `boolean` | - | +| `query` | `object` | - | +| `query.stageId` | `number` | The workflow stage id of the file to be edited. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L370) +Defined in: [lib/ojs-client.ts:370](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L370) ##### `editPublication()` @@ -382,61 +382,61 @@ editPublication(submissionId: number, publicationId: number, body: object): Prom ###### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `submissionId` | `number` | - | -| `publicationId` | `number` | - | -| `body` | `object` | - | -| `body._href?` | `string` | Format: uri | -| `body.abstract?` | `string` | - | -| `body.authors?` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `body.authorsString?` | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `body.authorsStringIncludeInBrowse?` | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `body.authorsStringShort?` | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `body.categoryIds?` | `number`[] | - | -| `body.citations?` | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `body.citationsRaw?` | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `body.copyrightHolder?` | `string` | `Description` The copyright statement for this publication. | -| `body.copyrightYear?` | `number` | `Description` The copyright year for this publication. | -| `body.coverImage?` | `object` | - | -| `body.coverImage.altText?` | `string` | - | -| `body.coverImage.dateUploaded?` | `string` | - | -| `body.coverImage.temporaryFileId?` | `number` | - | -| `body.coverImage.uploadName?` | `string` | - | -| `body.coverage?` | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `body.datePublished?` | `string` | - | -| `body.disciplines?` | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `body.doiId?` | `number` | `Description` Reference to the DOI for this publication | -| `body.doiObject?` | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `body.fullTitle?` | `string` | `Description` The combined prefix, title and subtitle. | -| `body.id?` | `number` | - | -| `body.keywords?` | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `body.languages?` | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `body.lastModified?` | `string` | - | -| `body.licenseUrl?` | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `body.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `body.prefix?` | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `body.primaryContactId?` | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `body.pub-id::publisher-id?` | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `body.rights?` | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `body.seq?` | `number` | - | -| `body.source?` | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `body.status?` | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `body.subjects?` | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `body.submissionId` | `number` | - | -| `body.subtitle?` | { } | - | -| `body.supportingAgencies?` | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `body.title` | { } | - | -| `body.type?` | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `body.urlPath?` | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `body.urlPublished?` | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `body.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | +| Name | Type | Description | +| :----------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `submissionId` | `number` | - | +| `publicationId` | `number` | - | +| `body` | `object` | - | +| `body._href?` | `string` | Format: uri | +| `body.abstract?` | `string` | - | +| `body.authors?` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `body.authorsString?` | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `body.authorsStringIncludeInBrowse?` | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `body.authorsStringShort?` | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `body.categoryIds?` | `number`[] | - | +| `body.citations?` | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `body.citationsRaw?` | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `body.copyrightHolder?` | `string` | `Description` The copyright statement for this publication. | +| `body.copyrightYear?` | `number` | `Description` The copyright year for this publication. | +| `body.coverImage?` | `object` | - | +| `body.coverImage.altText?` | `string` | - | +| `body.coverImage.dateUploaded?` | `string` | - | +| `body.coverImage.temporaryFileId?` | `number` | - | +| `body.coverImage.uploadName?` | `string` | - | +| `body.coverage?` | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `body.datePublished?` | `string` | - | +| `body.disciplines?` | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `body.doiId?` | `number` | `Description` Reference to the DOI for this publication | +| `body.doiObject?` | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `body.fullTitle?` | `string` | `Description` The combined prefix, title and subtitle. | +| `body.id?` | `number` | - | +| `body.keywords?` | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `body.languages?` | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `body.lastModified?` | `string` | - | +| `body.licenseUrl?` | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `body.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `body.prefix?` | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `body.primaryContactId?` | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `body.pub-id::publisher-id?` | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `body.rights?` | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `body.seq?` | `number` | - | +| `body.source?` | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `body.status?` | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `body.subjects?` | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `body.submissionId` | `number` | - | +| `body.subtitle?` | { } | - | +| `body.supportingAgencies?` | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `body.title` | { } | - | +| `body.type?` | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `body.urlPath?` | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `body.urlPublished?` | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `body.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L312) +Defined in: [lib/ojs-client.ts:312](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L312) ##### `editSubmission()` @@ -450,55 +450,55 @@ editSubmission(id: number, body: object): Promise; ###### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `id` | `number` | - | -| `body` | `object` | - | -| `body._href?` | `string` | Format: uri | -| `body.assocId?` | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `body.assocType?` | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `body.caption?` | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `body.copyrightOwner?` | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `body.createdAt?` | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `body.creator?` | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `body.credit?` | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `body.dateCreated?` | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `body.dependentFiles?` | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `body.description?` | `string` | - | -| `body.documentType?` | `string` | - | -| `body.file?` | `string` | Format: binary | -| `body.fileId` | `number` | - | -| `body.fileStage` | `number` | - | -| `body.genre?` | `object` | `Description` The genre of this file, such as Article Text or Data Set. | -| `body.genre.dependent?` | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `body.genre.id?` | `number` | - | -| `body.genre.name?` | `string` | - | -| `body.genre.supplementary?` | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `body.genreId?` | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `body.id?` | `number` | - | -| `body.language?` | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `body.locale?` | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `body.mimetype?` | `string` | - | -| `body.name` | { } | - | -| `body.path?` | `string` | - | -| `body.publisher?` | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `body.revisions?` | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `body.source?` | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `body.sourceSubmissionFileId?` | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `body.sponsor?` | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `body.subject?` | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `body.submissionId` | `number` | - | -| `body.terms?` | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `body.updatedAt?` | `string` | `Description` When this object was last updated. | -| `body.uploaderUserId` | `number` | - | -| `body.url?` | `string` | - | -| `body.viewable?` | `boolean` | - | +| Name | Type | Description | +| :----------------------------- | :---------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------- | --------------------------- | ---------------------------------- | ----------------------------- | ---------------------------------------------- | --------------- | --------------------------------------------------------------------------------------------------- | +| `id` | `number` | - | +| `body` | `object` | - | +| `body._href?` | `string` | Format: uri | +| `body.assocId?` | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `body.assocType?` | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `body.caption?` | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `body.copyrightOwner?` | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `body.createdAt?` | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `body.creator?` | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `body.credit?` | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `body.dateCreated?` | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `body.dependentFiles?` | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `body.description?` | `string` | - | +| `body.documentType?` | `string` | - | +| `body.file?` | `string` | Format: binary | +| `body.fileId` | `number` | - | +| `body.fileStage` | `number` | - | +| `body.genre?` | `object` | `Description` The genre of this file, such as Article Text or Data Set. | +| `body.genre.dependent?` | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `body.genre.id?` | `number` | - | +| `body.genre.name?` | `string` | - | +| `body.genre.supplementary?` | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `body.genreId?` | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `body.id?` | `number` | - | +| `body.language?` | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `body.locale?` | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `body.mimetype?` | `string` | - | +| `body.name` | { } | - | +| `body.path?` | `string` | - | +| `body.publisher?` | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `body.revisions?` | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `body.source?` | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `body.sourceSubmissionFileId?` | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `body.sponsor?` | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `body.subject?` | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `body.submissionId` | `number` | - | +| `body.terms?` | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `body.updatedAt?` | `string` | `Description` When this object was last updated. | +| `body.uploaderUserId` | `number` | - | +| `body.url?` | `string` | - | +| `body.viewable?` | `boolean` | - | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L245) +Defined in: [lib/ojs-client.ts:245](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L245) ##### `file()` @@ -512,18 +512,18 @@ file(submissionId: string, submissionFileId: string, query?: object): Promise -Defined in: [lib/ojs-client.ts:342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L342) +Defined in: [lib/ojs-client.ts:342](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L342) ##### `files()` @@ -537,18 +537,18 @@ files(submissionId: string, query?: object): Promise; ###### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `submissionId` | `string` | - | -| `query?` | `object` | - | -| `query.fileStages?` | `number`[] | Filter results by those submission files assigned to one or more file stage. One of the `SUBMISSION_FILE_` constants. | -| `query.reviewRoundIds?` | `number`[] | Filter results by those submission files assigned to one or more review rounds. | +| Name | Type | Description | +| :---------------------- | :--------- | :-------------------------------------------------------------------------------------------------------------------- | +| `submissionId` | `string` | - | +| `query?` | `object` | - | +| `query.fileStages?` | `number`[] | Filter results by those submission files assigned to one or more file stage. One of the `SUBMISSION_FILE_` constants. | +| `query.reviewRoundIds?` | `number`[] | Filter results by those submission files assigned to one or more review rounds. | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L331) +Defined in: [lib/ojs-client.ts:331](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L331) ##### `get()` @@ -560,16 +560,16 @@ get(path: string, query: Record = {}): Promise; ###### Parameters -| Name | Type | -| :------ | :------ | -| `path` | `string` | +| Name | Type | +| :------ | :------------------------ | +| `path` | `string` | | `query` | `Record`<`string`, `any`> | ###### Returns `Promise`<`any`> -Defined in: [lib/ojs-client.ts:130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L130) +Defined in: [lib/ojs-client.ts:130](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L130) ##### `info()` @@ -581,15 +581,15 @@ info(query: object = {}): Promise; ###### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :------ | :------- | | `query` | `object` | ###### Returns `Promise`<`any`> -Defined in: [lib/ojs-client.ts:164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L164) +Defined in: [lib/ojs-client.ts:164](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L164) ##### `patch()` @@ -601,17 +601,17 @@ patch(path: string, data: Record, query: Record = {}): ###### Parameters -| Name | Type | -| :------ | :------ | -| `path` | `string` | -| `data` | `Record`<`string`, `any`> | +| Name | Type | +| :------ | :------------------------ | +| `path` | `string` | +| `data` | `Record`<`string`, `any`> | | `query` | `Record`<`string`, `any`> | ###### Returns `Promise`<`any`> -Defined in: [lib/ojs-client.ts:150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L150) +Defined in: [lib/ojs-client.ts:150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L150) ##### `post()` @@ -623,17 +623,17 @@ post(path: string, data: Record, query: Record = {}): ###### Parameters -| Name | Type | -| :------ | :------ | -| `path` | `string` | -| `data` | `Record`<`string`, `any`> | +| Name | Type | +| :------ | :------------------------ | +| `path` | `string` | +| `data` | `Record`<`string`, `any`> | | `query` | `Record`<`string`, `any`> | ###### Returns `Promise`<`any`> -Defined in: [lib/ojs-client.ts:134](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L134) +Defined in: [lib/ojs-client.ts:134](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L134) ##### `postPublication()` @@ -647,60 +647,60 @@ postPublication(submissionId: number, body: object): Promise; ###### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `submissionId` | `number` | - | -| `body` | `object` | - | -| `body._href?` | `string` | Format: uri | -| `body.abstract?` | `string` | - | -| `body.authors?` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `body.authorsString?` | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `body.authorsStringIncludeInBrowse?` | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `body.authorsStringShort?` | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `body.categoryIds?` | `number`[] | - | -| `body.citations?` | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `body.citationsRaw?` | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `body.copyrightHolder?` | `string` | `Description` The copyright statement for this publication. | -| `body.copyrightYear?` | `number` | `Description` The copyright year for this publication. | -| `body.coverImage?` | `object` | - | -| `body.coverImage.altText?` | `string` | - | -| `body.coverImage.dateUploaded?` | `string` | - | -| `body.coverImage.temporaryFileId?` | `number` | - | -| `body.coverImage.uploadName?` | `string` | - | -| `body.coverage?` | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `body.datePublished?` | `string` | - | -| `body.disciplines?` | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `body.doiId?` | `number` | `Description` Reference to the DOI for this publication | -| `body.doiObject?` | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `body.fullTitle?` | `string` | `Description` The combined prefix, title and subtitle. | -| `body.id?` | `number` | - | -| `body.keywords?` | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `body.languages?` | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `body.lastModified?` | `string` | - | -| `body.licenseUrl?` | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `body.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `body.prefix?` | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `body.primaryContactId?` | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `body.pub-id::publisher-id?` | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `body.rights?` | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `body.seq?` | `number` | - | -| `body.source?` | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `body.status?` | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `body.subjects?` | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `body.submissionId` | `number` | - | -| `body.subtitle?` | { } | - | -| `body.supportingAgencies?` | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `body.title` | { } | - | -| `body.type?` | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `body.urlPath?` | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `body.urlPublished?` | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `body.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | +| Name | Type | Description | +| :----------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `submissionId` | `number` | - | +| `body` | `object` | - | +| `body._href?` | `string` | Format: uri | +| `body.abstract?` | `string` | - | +| `body.authors?` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `body.authorsString?` | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `body.authorsStringIncludeInBrowse?` | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `body.authorsStringShort?` | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `body.categoryIds?` | `number`[] | - | +| `body.citations?` | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `body.citationsRaw?` | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `body.copyrightHolder?` | `string` | `Description` The copyright statement for this publication. | +| `body.copyrightYear?` | `number` | `Description` The copyright year for this publication. | +| `body.coverImage?` | `object` | - | +| `body.coverImage.altText?` | `string` | - | +| `body.coverImage.dateUploaded?` | `string` | - | +| `body.coverImage.temporaryFileId?` | `number` | - | +| `body.coverImage.uploadName?` | `string` | - | +| `body.coverage?` | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `body.datePublished?` | `string` | - | +| `body.disciplines?` | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `body.doiId?` | `number` | `Description` Reference to the DOI for this publication | +| `body.doiObject?` | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `body.fullTitle?` | `string` | `Description` The combined prefix, title and subtitle. | +| `body.id?` | `number` | - | +| `body.keywords?` | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `body.languages?` | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `body.lastModified?` | `string` | - | +| `body.licenseUrl?` | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `body.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `body.prefix?` | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `body.primaryContactId?` | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `body.pub-id::publisher-id?` | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `body.rights?` | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `body.seq?` | `number` | - | +| `body.source?` | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `body.status?` | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `body.subjects?` | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `body.submissionId` | `number` | - | +| `body.subtitle?` | { } | - | +| `body.supportingAgencies?` | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `body.title` | { } | - | +| `body.type?` | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `body.urlPath?` | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `body.urlPublished?` | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `body.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L268) +Defined in: [lib/ojs-client.ts:268](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L268) ##### `publication()` @@ -714,16 +714,16 @@ publication(submissionId: number, publicationId: number): Promise; ###### Parameters -| Name | Type | -| :------ | :------ | -| `submissionId` | `number` | +| Name | Type | +| :-------------- | :------- | +| `submissionId` | `number` | | `publicationId` | `number` | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L296) +Defined in: [lib/ojs-client.ts:296](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L296) ##### `publications()` @@ -737,15 +737,15 @@ publications(submissionId: number): Promise; ###### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :------------- | :------- | | `submissionId` | `number` | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L283) +Defined in: [lib/ojs-client.ts:283](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L283) ##### `put()` @@ -757,17 +757,17 @@ put(path: string, data: Record, query: Record = {}): P ###### Parameters -| Name | Type | -| :------ | :------ | -| `path` | `string` | -| `data` | `Record`<`string`, `any`> | +| Name | Type | +| :------ | :------------------------ | +| `path` | `string` | +| `data` | `Record`<`string`, `any`> | | `query` | `Record`<`string`, `any`> | ###### Returns `Promise`<`any`> -Defined in: [lib/ojs-client.ts:142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L142) +Defined in: [lib/ojs-client.ts:142](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L142) ##### `submission()` @@ -781,15 +781,15 @@ submission(id: number): Promise; ###### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :--- | :------- | | `id` | `number` | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L234) +Defined in: [lib/ojs-client.ts:234](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L234) ##### `submissions()` @@ -803,29 +803,29 @@ submissions(query: object = {}): Promise; ###### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `query` | `object` | - | -| `query.assignedTo?` | `number`[] | Filter results by those assigned to one or more user ids. All users except managers and admins are automatically restricted to assigned submissions and do not need to pass this parameter. | -| `query.count?` | `number` | How many results to return in a single request. Max is `100`. | -| `query.daysInactive?` | `number` | Filter the results by those which have not had activity for the last X days. | -| `query.isIncomplete?` | `boolean` | Filter the results by those for which the author has not yet completed the submission process. | -| `query.isOverdue?` | `boolean` | Filter the results by those for which a reviewer has missed a deadline. | -| `query.issueIds?` | `number`[] | Filter the results by those with one or more publications assigned to an issue. | -| `query.offset?` | `number` | Offset the results returned. Use this to receive subsequent pages of requests. A `count` of `10` and `offset` of `15` will return results `15` to `25`. | -| `query.orderBy?` | `"datePublished"` | `"dateSubmitted"` | `"lastActivity"` | `"lastModified"` | `"sequence"` | `"title"` | Order the results returned. | -| `query.orderDirection?` | `"ASC"` | `"DESC"` | Return the results in ascending or descending order. | -| `query.searchPhrase?` | `string` | Filter the results by a search phrase matched against the title and authors. | -| `query.sectionIds?` | `number`[] | Filter the results by those with one or more publications assigned to a section. | -| `query.status?` | (`1` | `3` | `4` | `5`)[] | Filter results by one or more submission statuses. Must match the value of one of the `PKPSubmission::STATUS_QUEUED`, `PKPSubmission::STATUS_SCHEDULED`, `PKPSubmission::STATUS_PUBLISHED` or `PKPSubmission::STATUS_DECLINED` constants. | +| Name | Type | Description | +| :---------------------- | :---------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------- | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------- | --------------------------- | +| `query` | `object` | - | +| `query.assignedTo?` | `number`[] | Filter results by those assigned to one or more user ids. All users except managers and admins are automatically restricted to assigned submissions and do not need to pass this parameter. | +| `query.count?` | `number` | How many results to return in a single request. Max is `100`. | +| `query.daysInactive?` | `number` | Filter the results by those which have not had activity for the last X days. | +| `query.isIncomplete?` | `boolean` | Filter the results by those for which the author has not yet completed the submission process. | +| `query.isOverdue?` | `boolean` | Filter the results by those for which a reviewer has missed a deadline. | +| `query.issueIds?` | `number`[] | Filter the results by those with one or more publications assigned to an issue. | +| `query.offset?` | `number` | Offset the results returned. Use this to receive subsequent pages of requests. A `count` of `10` and `offset` of `15` will return results `15` to `25`. | +| `query.orderBy?` | `"datePublished"` | `"dateSubmitted"` | `"lastActivity"` | `"lastModified"` | `"sequence"` | `"title"` | Order the results returned. | +| `query.orderDirection?` | `"ASC"` | `"DESC"` | Return the results in ascending or descending order. | +| `query.searchPhrase?` | `string` | Filter the results by a search phrase matched against the title and authors. | +| `query.sectionIds?` | `number`[] | Filter the results by those with one or more publications assigned to a section. | +| `query.status?` | (`1` | `3` | `4` | `5`)[] | Filter results by one or more submission statuses. Must match the value of one of the `PKPSubmission::STATUS_QUEUED`, `PKPSubmission::STATUS_SCHEDULED`, `PKPSubmission::STATUS_PUBLISHED` or `PKPSubmission::STATUS_DECLINED` constants. | ###### Returns `Promise`<`unknown`> -Defined in: [lib/ojs-client.ts:214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L214) +Defined in: [lib/ojs-client.ts:214](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/ojs-client.ts#L214) -*** +--- ### `definitions` @@ -859,21 +859,21 @@ An announcement or news item. ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `_href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | -| `assocId` | `number` | `Description` The journal, press or preprint server ID. | -| `assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | -| `dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | -| `datePosted`? | `string` | `Description` The date this announcement was posted. | -| `description`? | `string` | `Description` The full text of the announcement. | -| `descriptionShort`? | `string` | `Description` A summary of this announcement. | -| `id`? | `number` | - | -| `title` | `string` | - | -| `typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | -| `url`? | `string` | Format: uri `Description` The URL to the published announcement. | - -Defined in: [lib/swagger-types.ts:1859](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1859) +| Member | Type | Description | +| :------------------ | :------- | :----------------------------------------------------------------------------------------------------------------------------------------------------- | +| `_href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | +| `assocId` | `number` | `Description` The journal, press or preprint server ID. | +| `assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | +| `dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | +| `datePosted`? | `string` | `Description` The date this announcement was posted. | +| `description`? | `string` | `Description` The full text of the announcement. | +| `descriptionShort`? | `string` | `Description` A summary of this announcement. | +| `id`? | `number` | - | +| `title` | `string` | - | +| `typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | +| `url`? | `string` | Format: uri `Description` The URL to the published announcement. | + +Defined in: [lib/swagger-types.ts:1859](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1859) ##### `AnnouncementSummary` @@ -897,21 +897,21 @@ Defined in: [lib/swagger-types.ts:1859](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `_href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | -| `assocId` | `number` | `Description` The journal, press or preprint server ID. | -| `assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | -| `dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | -| `datePosted`? | `string` | `Description` The date this announcement was posted. | -| `description`? | `string` | `Description` The full text of the announcement. | -| `descriptionShort`? | `string` | `Description` A summary of this announcement. | -| `id`? | `number` | - | -| `title` | `string` | - | -| `typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | -| `url`? | `string` | Format: uri `Description` The URL to the published announcement. | - -Defined in: [lib/swagger-types.ts:1887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1887) +| Member | Type | Description | +| :------------------ | :------- | :----------------------------------------------------------------------------------------------------------------------------------------------------- | +| `_href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | +| `assocId` | `number` | `Description` The journal, press or preprint server ID. | +| `assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | +| `dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | +| `datePosted`? | `string` | `Description` The date this announcement was posted. | +| `description`? | `string` | `Description` The full text of the announcement. | +| `descriptionShort`? | `string` | `Description` A summary of this announcement. | +| `id`? | `number` | - | +| `title` | `string` | - | +| `typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | +| `url`? | `string` | Format: uri `Description` The URL to the published announcement. | + +Defined in: [lib/swagger-types.ts:1887](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1887) ##### `Author` @@ -947,27 +947,27 @@ An author of a publication. ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | -| `biography`? | `string` | `Description` An optional bio statement about this contributor. | -| `country`? | `string` | - | -| `email` | `string` | - | -| `familyName`? | `string` | - | -| `fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | -| `givenName` | `string` | - | -| `id`? | `number` | - | -| `includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | -| `orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | -| `preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | -| `publicationId` | `number` | - | -| `seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | -| `submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `url`? | `string` | `Description` An optional URL to this contributor's webpage. | -| `userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | -| `userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | - -Defined in: [lib/swagger-types.ts:1892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1892) +| Member | Type | Description | +| :--------------------- | :-------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | +| `biography`? | `string` | `Description` An optional bio statement about this contributor. | +| `country`? | `string` | - | +| `email` | `string` | - | +| `familyName`? | `string` | - | +| `fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | +| `givenName` | `string` | - | +| `id`? | `number` | - | +| `includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | +| `orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | +| `preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | +| `publicationId` | `number` | - | +| `seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | +| `submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `url`? | `string` | `Description` An optional URL to this contributor's webpage. | +| `userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | +| `userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | + +Defined in: [lib/swagger-types.ts:1892](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1892) ##### `Context` @@ -1115,132 +1115,132 @@ A journal or press. ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `_href`? | `string` | Format: uri | -| `about`? | `string` | - | -| `acronym`? | `string` | - | -| `additionalHomeContent`? | `string` | - | -| `agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `announcementsIntroduction`? | `string` | - | -| `authorGuidelines`? | `string` | - | -| `authorInformation`? | `string` | - | -| `automaticDoiDeposit`? | `boolean` | - | -| `citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `competingInterests`? | `string` | - | -| `contactAffiliation`? | `string` | - | -| `contactEmail`? | `string` | - | -| `contactName`? | `string` | - | -| `contactPhone`? | `string` | - | -| `copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | -| `copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | -| `copyrightHolderOther`? | `string` | - | -| `copyrightHolderType`? | `string` | - | -| `copyrightNotice`? | `string` | - | -| `country`? | `string` | - | -| `coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `currency`? | `string` | - | -| `customDoiSuffixType`? | `string` | - | -| `customHeaders`? | `string` | - | -| `dateFormatLong`? | `string` | - | -| `dateFormatShort`? | `string` | - | -| `datetimeFormatLong`? | `string` | - | -| `datetimeFormatShort`? | `string` | - | -| `defaultMetricType`? | `string` | - | -| `defaultReviewMode`? | `number` | `Default` 2 | -| `description`? | `string` | - | -| `disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | -| `disableSubmissions`? | `boolean` | - | -| `disableUserReg`? | `boolean` | - | -| `disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `doiPrefix`? | `string` | - | -| `doiPublicationSuffixPattern`? | `string` | - | -| `doiRepresentationSuffixPattern`? | `string` | - | -| `editorialTeam`? | `string` | - | -| `emailSignature`? | `string` | - | -| `enableAnnouncements`? | `boolean` | - | -| `enableClockss`? | `boolean` | - | -| `enableDois`? | `boolean` | - | -| `enableLockss`? | `boolean` | - | -| `enabled`? | `boolean` | - | -| `envelopeSender`? | `string` | - | -| `favicon`? | `object` | - | -| `favicon.altText`? | `string` | - | -| `favicon.dateUploaded`? | `string` | - | -| `favicon.height`? | `number` | - | -| `favicon.name`? | `string` | - | -| `favicon.temporaryFileId`? | `number` | - | -| `favicon.uploadName`? | `string` | - | -| `favicon.width`? | `number` | - | -| `homepageImage`? | `object` | - | -| `homepageImage.altText`? | `string` | - | -| `homepageImage.dateUploaded`? | `string` | - | -| `homepageImage.height`? | `number` | - | -| `homepageImage.name`? | `string` | - | -| `homepageImage.temporaryFileId`? | `number` | - | -| `homepageImage.uploadName`? | `string` | - | -| `homepageImage.width`? | `number` | - | -| `id`? | `number` | - | -| `itemsPerPage`? | `number` | `Default` 25 | -| `keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | -| `languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `librarianInformation`? | `string` | - | -| `licenseUrl`? | `string` | - | -| `mailingAddress`? | `string` | - | -| `name` | `string` | - | -| `notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | -| `numAnnouncementsHomepage`? | `number` | - | -| `numDaysBeforeInviteReminder`? | `number` | - | -| `numDaysBeforeSubmitReminder`? | `number` | - | -| `numPageLinks`? | `number` | `Default` 10 | -| `numWeeksPerResponse`? | `number` | `Default` 4 | -| `numWeeksPerReview`? | `number` | `Default` 4 | -| `openAccessPolicy`? | `string` | - | -| `pageFooter`? | `string` | - | -| `pageHeaderLogoImage`? | `object` | - | -| `pageHeaderLogoImage.altText`? | `string` | - | -| `pageHeaderLogoImage.dateUploaded`? | `string` | - | -| `pageHeaderLogoImage.height`? | `number` | - | -| `pageHeaderLogoImage.name`? | `string` | - | -| `pageHeaderLogoImage.temporaryFileId`? | `number` | - | -| `pageHeaderLogoImage.uploadName`? | `string` | - | -| `pageHeaderLogoImage.width`? | `number` | - | -| `paymentsEnabled`? | `boolean` | - | -| `primaryLocale` | `string` | - | -| `privacyStatement`? | `string` | - | -| `rateReviewerOnQuality`? | `boolean` | - | -| `readerInformation`? | `string` | - | -| `registrationAgency`? | `string` | `Default` none | -| `restrictReviewerFileAccess`? | `boolean` | - | -| `restrictSiteAccess`? | `boolean` | - | -| `reviewGuidelines`? | `string` | - | -| `reviewerAccessKeysEnabled`? | `boolean` | - | -| `rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `searchDescription`? | `string` | - | -| `seq`? | `number` | - | -| `showEnsuringLink`? | `boolean` | - | -| `sidebar`? | `string`[] | - | -| `source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `styleSheet`? | `object` | - | -| `styleSheet.dateUploaded`? | `string` | - | -| `styleSheet.name`? | `string` | - | -| `styleSheet.temporaryFileId`? | `number` | - | -| `styleSheet.uploadName`? | `string` | - | -| `subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | -| `supportEmail`? | `string` | - | -| `supportName`? | `string` | - | -| `supportPhone`? | `string` | - | -| `supportedFormLocales`? | `string`[] | - | -| `supportedLocales` | `string`[] | - | -| `supportedSubmissionLocales`? | `string`[] | - | -| `themePluginPath`? | `string` | `Default` default | -| `timeFormat`? | `string` | - | -| `type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `url`? | `string` | - | -| `urlPath` | `string` | - | - -Defined in: [lib/swagger-types.ts:1929](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1929) +| Member | Type | Description | +| :------------------------------------- | :---------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `_href`? | `string` | Format: uri | +| `about`? | `string` | - | +| `acronym`? | `string` | - | +| `additionalHomeContent`? | `string` | - | +| `agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `announcementsIntroduction`? | `string` | - | +| `authorGuidelines`? | `string` | - | +| `authorInformation`? | `string` | - | +| `automaticDoiDeposit`? | `boolean` | - | +| `citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `competingInterests`? | `string` | - | +| `contactAffiliation`? | `string` | - | +| `contactEmail`? | `string` | - | +| `contactName`? | `string` | - | +| `contactPhone`? | `string` | - | +| `copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | +| `copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | +| `copyrightHolderOther`? | `string` | - | +| `copyrightHolderType`? | `string` | - | +| `copyrightNotice`? | `string` | - | +| `country`? | `string` | - | +| `coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `currency`? | `string` | - | +| `customDoiSuffixType`? | `string` | - | +| `customHeaders`? | `string` | - | +| `dateFormatLong`? | `string` | - | +| `dateFormatShort`? | `string` | - | +| `datetimeFormatLong`? | `string` | - | +| `datetimeFormatShort`? | `string` | - | +| `defaultMetricType`? | `string` | - | +| `defaultReviewMode`? | `number` | `Default` 2 | +| `description`? | `string` | - | +| `disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | +| `disableSubmissions`? | `boolean` | - | +| `disableUserReg`? | `boolean` | - | +| `disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `doiPrefix`? | `string` | - | +| `doiPublicationSuffixPattern`? | `string` | - | +| `doiRepresentationSuffixPattern`? | `string` | - | +| `editorialTeam`? | `string` | - | +| `emailSignature`? | `string` | - | +| `enableAnnouncements`? | `boolean` | - | +| `enableClockss`? | `boolean` | - | +| `enableDois`? | `boolean` | - | +| `enableLockss`? | `boolean` | - | +| `enabled`? | `boolean` | - | +| `envelopeSender`? | `string` | - | +| `favicon`? | `object` | - | +| `favicon.altText`? | `string` | - | +| `favicon.dateUploaded`? | `string` | - | +| `favicon.height`? | `number` | - | +| `favicon.name`? | `string` | - | +| `favicon.temporaryFileId`? | `number` | - | +| `favicon.uploadName`? | `string` | - | +| `favicon.width`? | `number` | - | +| `homepageImage`? | `object` | - | +| `homepageImage.altText`? | `string` | - | +| `homepageImage.dateUploaded`? | `string` | - | +| `homepageImage.height`? | `number` | - | +| `homepageImage.name`? | `string` | - | +| `homepageImage.temporaryFileId`? | `number` | - | +| `homepageImage.uploadName`? | `string` | - | +| `homepageImage.width`? | `number` | - | +| `id`? | `number` | - | +| `itemsPerPage`? | `number` | `Default` 25 | +| `keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | +| `languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `librarianInformation`? | `string` | - | +| `licenseUrl`? | `string` | - | +| `mailingAddress`? | `string` | - | +| `name` | `string` | - | +| `notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | +| `numAnnouncementsHomepage`? | `number` | - | +| `numDaysBeforeInviteReminder`? | `number` | - | +| `numDaysBeforeSubmitReminder`? | `number` | - | +| `numPageLinks`? | `number` | `Default` 10 | +| `numWeeksPerResponse`? | `number` | `Default` 4 | +| `numWeeksPerReview`? | `number` | `Default` 4 | +| `openAccessPolicy`? | `string` | - | +| `pageFooter`? | `string` | - | +| `pageHeaderLogoImage`? | `object` | - | +| `pageHeaderLogoImage.altText`? | `string` | - | +| `pageHeaderLogoImage.dateUploaded`? | `string` | - | +| `pageHeaderLogoImage.height`? | `number` | - | +| `pageHeaderLogoImage.name`? | `string` | - | +| `pageHeaderLogoImage.temporaryFileId`? | `number` | - | +| `pageHeaderLogoImage.uploadName`? | `string` | - | +| `pageHeaderLogoImage.width`? | `number` | - | +| `paymentsEnabled`? | `boolean` | - | +| `primaryLocale` | `string` | - | +| `privacyStatement`? | `string` | - | +| `rateReviewerOnQuality`? | `boolean` | - | +| `readerInformation`? | `string` | - | +| `registrationAgency`? | `string` | `Default` none | +| `restrictReviewerFileAccess`? | `boolean` | - | +| `restrictSiteAccess`? | `boolean` | - | +| `reviewGuidelines`? | `string` | - | +| `reviewerAccessKeysEnabled`? | `boolean` | - | +| `rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `searchDescription`? | `string` | - | +| `seq`? | `number` | - | +| `showEnsuringLink`? | `boolean` | - | +| `sidebar`? | `string`[] | - | +| `source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `styleSheet`? | `object` | - | +| `styleSheet.dateUploaded`? | `string` | - | +| `styleSheet.name`? | `string` | - | +| `styleSheet.temporaryFileId`? | `number` | - | +| `styleSheet.uploadName`? | `string` | - | +| `subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | +| `supportEmail`? | `string` | - | +| `supportName`? | `string` | - | +| `supportPhone`? | `string` | - | +| `supportedFormLocales`? | `string`[] | - | +| `supportedLocales` | `string`[] | - | +| `supportedSubmissionLocales`? | `string`[] | - | +| `themePluginPath`? | `string` | `Default` default | +| `timeFormat`? | `string` | - | +| `type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `url`? | `string` | - | +| `urlPath` | `string` | - | + +Defined in: [lib/swagger-types.ts:1929](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1929) ##### `ContextSummary` @@ -1382,132 +1382,132 @@ Defined in: [lib/swagger-types.ts:1929](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `_href`? | `string` | Format: uri | -| `about`? | `string` | - | -| `acronym`? | `string` | - | -| `additionalHomeContent`? | `string` | - | -| `agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `announcementsIntroduction`? | `string` | - | -| `authorGuidelines`? | `string` | - | -| `authorInformation`? | `string` | - | -| `automaticDoiDeposit`? | `boolean` | - | -| `citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `competingInterests`? | `string` | - | -| `contactAffiliation`? | `string` | - | -| `contactEmail`? | `string` | - | -| `contactName`? | `string` | - | -| `contactPhone`? | `string` | - | -| `copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | -| `copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | -| `copyrightHolderOther`? | `string` | - | -| `copyrightHolderType`? | `string` | - | -| `copyrightNotice`? | `string` | - | -| `country`? | `string` | - | -| `coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `currency`? | `string` | - | -| `customDoiSuffixType`? | `string` | - | -| `customHeaders`? | `string` | - | -| `dateFormatLong`? | `string` | - | -| `dateFormatShort`? | `string` | - | -| `datetimeFormatLong`? | `string` | - | -| `datetimeFormatShort`? | `string` | - | -| `defaultMetricType`? | `string` | - | -| `defaultReviewMode`? | `number` | `Default` 2 | -| `description`? | `string` | - | -| `disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | -| `disableSubmissions`? | `boolean` | - | -| `disableUserReg`? | `boolean` | - | -| `disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `doiPrefix`? | `string` | - | -| `doiPublicationSuffixPattern`? | `string` | - | -| `doiRepresentationSuffixPattern`? | `string` | - | -| `editorialTeam`? | `string` | - | -| `emailSignature`? | `string` | - | -| `enableAnnouncements`? | `boolean` | - | -| `enableClockss`? | `boolean` | - | -| `enableDois`? | `boolean` | - | -| `enableLockss`? | `boolean` | - | -| `enabled`? | `boolean` | - | -| `envelopeSender`? | `string` | - | -| `favicon`? | `object` | - | -| `favicon.altText`? | `string` | - | -| `favicon.dateUploaded`? | `string` | - | -| `favicon.height`? | `number` | - | -| `favicon.name`? | `string` | - | -| `favicon.temporaryFileId`? | `number` | - | -| `favicon.uploadName`? | `string` | - | -| `favicon.width`? | `number` | - | -| `homepageImage`? | `object` | - | -| `homepageImage.altText`? | `string` | - | -| `homepageImage.dateUploaded`? | `string` | - | -| `homepageImage.height`? | `number` | - | -| `homepageImage.name`? | `string` | - | -| `homepageImage.temporaryFileId`? | `number` | - | -| `homepageImage.uploadName`? | `string` | - | -| `homepageImage.width`? | `number` | - | -| `id`? | `number` | - | -| `itemsPerPage`? | `number` | `Default` 25 | -| `keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | -| `languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `librarianInformation`? | `string` | - | -| `licenseUrl`? | `string` | - | -| `mailingAddress`? | `string` | - | -| `name` | `string` | - | -| `notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | -| `numAnnouncementsHomepage`? | `number` | - | -| `numDaysBeforeInviteReminder`? | `number` | - | -| `numDaysBeforeSubmitReminder`? | `number` | - | -| `numPageLinks`? | `number` | `Default` 10 | -| `numWeeksPerResponse`? | `number` | `Default` 4 | -| `numWeeksPerReview`? | `number` | `Default` 4 | -| `openAccessPolicy`? | `string` | - | -| `pageFooter`? | `string` | - | -| `pageHeaderLogoImage`? | `object` | - | -| `pageHeaderLogoImage.altText`? | `string` | - | -| `pageHeaderLogoImage.dateUploaded`? | `string` | - | -| `pageHeaderLogoImage.height`? | `number` | - | -| `pageHeaderLogoImage.name`? | `string` | - | -| `pageHeaderLogoImage.temporaryFileId`? | `number` | - | -| `pageHeaderLogoImage.uploadName`? | `string` | - | -| `pageHeaderLogoImage.width`? | `number` | - | -| `paymentsEnabled`? | `boolean` | - | -| `primaryLocale` | `string` | - | -| `privacyStatement`? | `string` | - | -| `rateReviewerOnQuality`? | `boolean` | - | -| `readerInformation`? | `string` | - | -| `registrationAgency`? | `string` | `Default` none | -| `restrictReviewerFileAccess`? | `boolean` | - | -| `restrictSiteAccess`? | `boolean` | - | -| `reviewGuidelines`? | `string` | - | -| `reviewerAccessKeysEnabled`? | `boolean` | - | -| `rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `searchDescription`? | `string` | - | -| `seq`? | `number` | - | -| `showEnsuringLink`? | `boolean` | - | -| `sidebar`? | `string`[] | - | -| `source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `styleSheet`? | `object` | - | -| `styleSheet.dateUploaded`? | `string` | - | -| `styleSheet.name`? | `string` | - | -| `styleSheet.temporaryFileId`? | `number` | - | -| `styleSheet.uploadName`? | `string` | - | -| `subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | -| `supportEmail`? | `string` | - | -| `supportName`? | `string` | - | -| `supportPhone`? | `string` | - | -| `supportedFormLocales`? | `string`[] | - | -| `supportedLocales` | `string`[] | - | -| `supportedSubmissionLocales`? | `string`[] | - | -| `themePluginPath`? | `string` | `Default` default | -| `timeFormat`? | `string` | - | -| `type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `url`? | `string` | - | -| `urlPath` | `string` | - | - -Defined in: [lib/swagger-types.ts:2089](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2089) +| Member | Type | Description | +| :------------------------------------- | :---------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `_href`? | `string` | Format: uri | +| `about`? | `string` | - | +| `acronym`? | `string` | - | +| `additionalHomeContent`? | `string` | - | +| `agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `announcementsIntroduction`? | `string` | - | +| `authorGuidelines`? | `string` | - | +| `authorInformation`? | `string` | - | +| `automaticDoiDeposit`? | `boolean` | - | +| `citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `competingInterests`? | `string` | - | +| `contactAffiliation`? | `string` | - | +| `contactEmail`? | `string` | - | +| `contactName`? | `string` | - | +| `contactPhone`? | `string` | - | +| `copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | +| `copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | +| `copyrightHolderOther`? | `string` | - | +| `copyrightHolderType`? | `string` | - | +| `copyrightNotice`? | `string` | - | +| `country`? | `string` | - | +| `coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `currency`? | `string` | - | +| `customDoiSuffixType`? | `string` | - | +| `customHeaders`? | `string` | - | +| `dateFormatLong`? | `string` | - | +| `dateFormatShort`? | `string` | - | +| `datetimeFormatLong`? | `string` | - | +| `datetimeFormatShort`? | `string` | - | +| `defaultMetricType`? | `string` | - | +| `defaultReviewMode`? | `number` | `Default` 2 | +| `description`? | `string` | - | +| `disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | +| `disableSubmissions`? | `boolean` | - | +| `disableUserReg`? | `boolean` | - | +| `disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `doiPrefix`? | `string` | - | +| `doiPublicationSuffixPattern`? | `string` | - | +| `doiRepresentationSuffixPattern`? | `string` | - | +| `editorialTeam`? | `string` | - | +| `emailSignature`? | `string` | - | +| `enableAnnouncements`? | `boolean` | - | +| `enableClockss`? | `boolean` | - | +| `enableDois`? | `boolean` | - | +| `enableLockss`? | `boolean` | - | +| `enabled`? | `boolean` | - | +| `envelopeSender`? | `string` | - | +| `favicon`? | `object` | - | +| `favicon.altText`? | `string` | - | +| `favicon.dateUploaded`? | `string` | - | +| `favicon.height`? | `number` | - | +| `favicon.name`? | `string` | - | +| `favicon.temporaryFileId`? | `number` | - | +| `favicon.uploadName`? | `string` | - | +| `favicon.width`? | `number` | - | +| `homepageImage`? | `object` | - | +| `homepageImage.altText`? | `string` | - | +| `homepageImage.dateUploaded`? | `string` | - | +| `homepageImage.height`? | `number` | - | +| `homepageImage.name`? | `string` | - | +| `homepageImage.temporaryFileId`? | `number` | - | +| `homepageImage.uploadName`? | `string` | - | +| `homepageImage.width`? | `number` | - | +| `id`? | `number` | - | +| `itemsPerPage`? | `number` | `Default` 25 | +| `keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | +| `languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `librarianInformation`? | `string` | - | +| `licenseUrl`? | `string` | - | +| `mailingAddress`? | `string` | - | +| `name` | `string` | - | +| `notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | +| `numAnnouncementsHomepage`? | `number` | - | +| `numDaysBeforeInviteReminder`? | `number` | - | +| `numDaysBeforeSubmitReminder`? | `number` | - | +| `numPageLinks`? | `number` | `Default` 10 | +| `numWeeksPerResponse`? | `number` | `Default` 4 | +| `numWeeksPerReview`? | `number` | `Default` 4 | +| `openAccessPolicy`? | `string` | - | +| `pageFooter`? | `string` | - | +| `pageHeaderLogoImage`? | `object` | - | +| `pageHeaderLogoImage.altText`? | `string` | - | +| `pageHeaderLogoImage.dateUploaded`? | `string` | - | +| `pageHeaderLogoImage.height`? | `number` | - | +| `pageHeaderLogoImage.name`? | `string` | - | +| `pageHeaderLogoImage.temporaryFileId`? | `number` | - | +| `pageHeaderLogoImage.uploadName`? | `string` | - | +| `pageHeaderLogoImage.width`? | `number` | - | +| `paymentsEnabled`? | `boolean` | - | +| `primaryLocale` | `string` | - | +| `privacyStatement`? | `string` | - | +| `rateReviewerOnQuality`? | `boolean` | - | +| `readerInformation`? | `string` | - | +| `registrationAgency`? | `string` | `Default` none | +| `restrictReviewerFileAccess`? | `boolean` | - | +| `restrictSiteAccess`? | `boolean` | - | +| `reviewGuidelines`? | `string` | - | +| `reviewerAccessKeysEnabled`? | `boolean` | - | +| `rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `searchDescription`? | `string` | - | +| `seq`? | `number` | - | +| `showEnsuringLink`? | `boolean` | - | +| `sidebar`? | `string`[] | - | +| `source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `styleSheet`? | `object` | - | +| `styleSheet.dateUploaded`? | `string` | - | +| `styleSheet.name`? | `string` | - | +| `styleSheet.temporaryFileId`? | `number` | - | +| `styleSheet.uploadName`? | `string` | - | +| `subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | +| `supportEmail`? | `string` | - | +| `supportName`? | `string` | - | +| `supportPhone`? | `string` | - | +| `supportedFormLocales`? | `string`[] | - | +| `supportedLocales` | `string`[] | - | +| `supportedSubmissionLocales`? | `string`[] | - | +| `themePluginPath`? | `string` | `Default` default | +| `timeFormat`? | `string` | - | +| `type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `url`? | `string` | - | +| `urlPath` | `string` | - | + +Defined in: [lib/swagger-types.ts:2089](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2089) ##### `Contributor` @@ -1543,27 +1543,27 @@ An author of a publication. ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | -| `biography`? | `string` | `Description` An optional bio statement about this contributor. | -| `country`? | `string` | - | -| `email` | `string` | - | -| `familyName`? | `string` | - | -| `fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | -| `givenName` | `string` | - | -| `id`? | `number` | - | -| `includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | -| `orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | -| `preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | -| `publicationId` | `number` | - | -| `seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | -| `submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `url`? | `string` | `Description` An optional URL to this contributor's webpage. | -| `userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | -| `userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | - -Defined in: [lib/swagger-types.ts:2263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2263) +| Member | Type | Description | +| :--------------------- | :-------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | +| `biography`? | `string` | `Description` An optional bio statement about this contributor. | +| `country`? | `string` | - | +| `email` | `string` | - | +| `familyName`? | `string` | - | +| `fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | +| `givenName` | `string` | - | +| `id`? | `number` | - | +| `includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | +| `orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | +| `preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | +| `publicationId` | `number` | - | +| `seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | +| `submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `url`? | `string` | `Description` An optional URL to this contributor's webpage. | +| `userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | +| `userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | + +Defined in: [lib/swagger-types.ts:2263](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2263) ##### `Doi` @@ -1587,15 +1587,15 @@ The Digital Object Identifier (DOI) is a persistent ID assigned to published ite ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `contextId` | `number` | `Description` Context id for DOI | -| `doi` | `string` | `Description` Persistent identifier | -| `id`? | `number` | - | -| `resolvingUrl`? | `string` | `Description` DOI URL that resolves to the indicated item | -| `status`? | `number` | `Description` Persistent identifier status `Default` 1 | +| Member | Type | Description | +| :-------------- | :------- | :-------------------------------------------------------- | +| `contextId` | `number` | `Description` Context id for DOI | +| `doi` | `string` | `Description` Persistent identifier | +| `id`? | `number` | - | +| `resolvingUrl`? | `string` | `Description` DOI URL that resolves to the indicated item | +| `status`? | `number` | `Description` Persistent identifier status `Default` 1 | -Defined in: [lib/swagger-types.ts:2094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2094) +Defined in: [lib/swagger-types.ts:2094](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2094) ##### `EmailTemplate` @@ -1627,29 +1627,29 @@ A saved email message that can be sent by the application during registration, s ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `_href`? | `string` | Format: uri | -| `body` | `string` | `Description` The email template to be used in the email's main body content. | -| `canDisable`? | `boolean` | `Description` Can this email template be disabled in the context settings area? Default is `true`. | -| `canEdit`? | `boolean` | `Description` Can this email template be edited in the context settings area? Default is `true`. | -| `contextId` | `number` | `Description` The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. | -| `description`? | `string` | `Description` A description of when this email template is used. | -| `enabled`? | `boolean` | `Description` Is this email template enabled? Default is `true`. | -| `fromRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will send this email. | -| `id`? | `number` | `Description` The email template ID. | -| `key` | `string` | `Description` A unique key for this email template. | -| `stageId`? | `number` | `Description` The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. | -| `subject` | `string` | `Description` The subject of the email to be used in the email's subject header. | -| `toRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will receive this email. | - -Defined in: [lib/swagger-types.ts:2117](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2117) +| Member | Type | Description | +| :------------- | :-------- | :------------------------------------------------------------------------------------------------------------------------------------- | +| `_href`? | `string` | Format: uri | +| `body` | `string` | `Description` The email template to be used in the email's main body content. | +| `canDisable`? | `boolean` | `Description` Can this email template be disabled in the context settings area? Default is `true`. | +| `canEdit`? | `boolean` | `Description` Can this email template be edited in the context settings area? Default is `true`. | +| `contextId` | `number` | `Description` The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. | +| `description`? | `string` | `Description` A description of when this email template is used. | +| `enabled`? | `boolean` | `Description` Is this email template enabled? Default is `true`. | +| `fromRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will send this email. | +| `id`? | `number` | `Description` The email template ID. | +| `key` | `string` | `Description` A unique key for this email template. | +| `stageId`? | `number` | `Description` The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. | +| `subject` | `string` | `Description` The subject of the email to be used in the email's subject header. | +| `toRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will receive this email. | + +Defined in: [lib/swagger-types.ts:2117](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2117) ##### `EmailTemplateSummary` > [`"EmailTemplate"`] -Defined in: [lib/swagger-types.ts:2145](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2145) +Defined in: [lib/swagger-types.ts:2145](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2145) ##### `ErrorResponse` @@ -1668,18 +1668,18 @@ A response object that will be returned when the request could not be fulfilled. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `error`? | `string` | +| Member | Type | +| :-------------- | :------- | +| `error`? | `string` | | `errorMessage`? | `string` | -Defined in: [lib/swagger-types.ts:2109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2109) +Defined in: [lib/swagger-types.ts:2109](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2109) ##### `Galley` > `unknown` -Defined in: [lib/swagger-types.ts:2146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2146) +Defined in: [lib/swagger-types.ts:2146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2146) ##### `InvalidParametersResponse` @@ -1701,19 +1701,19 @@ A response object that will be returned when there are validation errors for the ###### Type declaration -Defined in: [lib/swagger-types.ts:2151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2151) +Defined in: [lib/swagger-types.ts:2151](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2151) ##### `Issue` > `unknown` -Defined in: [lib/swagger-types.ts:2152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2152) +Defined in: [lib/swagger-types.ts:2152](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2152) ##### `IssueSummary` > `unknown` -Defined in: [lib/swagger-types.ts:2153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2153) +Defined in: [lib/swagger-types.ts:2153](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2153) ##### `LocaleObject` @@ -1735,7 +1735,7 @@ Key/value pairs containing data stored by locale key. ###### Type declaration -Defined in: [lib/swagger-types.ts:2158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2158) +Defined in: [lib/swagger-types.ts:2158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2158) ##### `Publication` @@ -1825,54 +1825,54 @@ A published version of a submission. ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `_href`? | `string` | Format: uri | -| `abstract`? | `string` | - | -| `authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `categoryIds`? | `number`[] | - | -| `citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | -| `copyrightYear`? | `number` | `Description` The copyright year for this publication. | -| `coverImage`? | `object` | - | -| `coverImage.altText`? | `string` | - | -| `coverImage.dateUploaded`? | `string` | - | -| `coverImage.temporaryFileId`? | `number` | - | -| `coverImage.uploadName`? | `string` | - | -| `coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `datePublished`? | `string` | - | -| `disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `doiId`? | `number` | `Description` Reference to the DOI for this publication | -| `doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | -| `id`? | `number` | - | -| `keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `lastModified`? | `string` | - | -| `licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `seq`? | `number` | - | -| `source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `submissionId` | `number` | - | -| `subtitle`? | { } | - | -| `supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `title` | { } | - | -| `type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | - -Defined in: [lib/swagger-types.ts:2163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2163) +| Member | Type | Description | +| :------------------------------ | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `_href`? | `string` | Format: uri | +| `abstract`? | `string` | - | +| `authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `categoryIds`? | `number`[] | - | +| `citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | +| `copyrightYear`? | `number` | `Description` The copyright year for this publication. | +| `coverImage`? | `object` | - | +| `coverImage.altText`? | `string` | - | +| `coverImage.dateUploaded`? | `string` | - | +| `coverImage.temporaryFileId`? | `number` | - | +| `coverImage.uploadName`? | `string` | - | +| `coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `datePublished`? | `string` | - | +| `disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `doiId`? | `number` | `Description` Reference to the DOI for this publication | +| `doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | +| `id`? | `number` | - | +| `keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `lastModified`? | `string` | - | +| `licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `seq`? | `number` | - | +| `source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `submissionId` | `number` | - | +| `subtitle`? | { } | - | +| `supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `title` | { } | - | +| `type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | + +Defined in: [lib/swagger-types.ts:2163](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2163) ##### `PublicationStats` @@ -1903,22 +1903,22 @@ The total abstract and galley views for a published submission. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `abstractViews`? | `number` | -| `galleyViews`? | `number` | -| `htmlViews`? | `number` | -| `otherViews`? | `number` | -| `pdfViews`? | `number` | -| `publication`? | `object` | -| `publication._href`? | `string` | -| `publication.fullTitle`? | { } | -| `publication.id`? | `number` | +| Member | Type | +| :------------------------------- | :------- | +| `abstractViews`? | `number` | +| `galleyViews`? | `number` | +| `htmlViews`? | `number` | +| `otherViews`? | `number` | +| `pdfViews`? | `number` | +| `publication`? | `object` | +| `publication._href`? | `string` | +| `publication.fullTitle`? | { } | +| `publication.id`? | `number` | | `publication.shortAuthorString`? | `string` | -| `publication.urlPublished`? | `string` | -| `publication.urlWorkflow`? | `string` | +| `publication.urlPublished`? | `string` | +| `publication.urlWorkflow`? | `string` | -Defined in: [lib/swagger-types.ts:2244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2244) +Defined in: [lib/swagger-types.ts:2244](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2244) ##### `ReviewRound` @@ -1942,15 +1942,15 @@ A round of review assignments in the review stage. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `number` | -| `round`? | `number` | -| `stageId`? | `number` | -| `status`? | `string` | +| Member | Type | +| :---------- | :------- | +| `id`? | `number` | +| `round`? | `number` | +| `stageId`? | `number` | +| `status`? | `string` | | `statusId`? | `number` | -Defined in: [lib/swagger-types.ts:2300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2300) +Defined in: [lib/swagger-types.ts:2300](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2300) ##### `ReviewerSummary` @@ -1997,31 +1997,31 @@ A special representation of a User assigned to a reviewer group. This model pres ###### Type declaration -| Member | Type | -| :------ | :------ | -| `_href`? | `string` | -| `affiliation`? | { } | -| `averageReviewCompletionDays`? | `number` | -| `dateLastReviewAssignment`? | `string` | -| `disabled`? | `boolean` | -| `fullName`? | `string` | -| `gossip`? | { } | -| `groups`? | { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[] | -| `id`? | `number` | -| `interests`? | { `id`?: `number`; `interest`?: `string`; }[] | -| `reviewsActive`? | `number` | -| `reviewsCancelled`? | `number` | -| `reviewsCompleted`? | `number` | -| `reviewsDeclined`? | `number` | -| `userName`? | `string` | - -Defined in: [lib/swagger-types.ts:2308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2308) +| Member | Type | +| :----------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `_href`? | `string` | +| `affiliation`? | { } | +| `averageReviewCompletionDays`? | `number` | +| `dateLastReviewAssignment`? | `string` | +| `disabled`? | `boolean` | +| `fullName`? | `string` | +| `gossip`? | { } | +| `groups`? | { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[] | +| `id`? | `number` | +| `interests`? | { `id`?: `number`; `interest`?: `string`; }[] | +| `reviewsActive`? | `number` | +| `reviewsCancelled`? | `number` | +| `reviewsCompleted`? | `number` | +| `reviewsDeclined`? | `number` | +| `userName`? | `string` | + +Defined in: [lib/swagger-types.ts:2308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2308) ##### `Section` > `unknown` -Defined in: [lib/swagger-types.ts:2325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2325) +Defined in: [lib/swagger-types.ts:2325](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2325) ##### `Site` @@ -2069,37 +2069,37 @@ The overall site hosting one or more contexts (journals/presses). ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `about`? | `string` | - | -| `contactEmail` | `string` | - | -| `contactName` | `string` | - | -| `enableBulkEmails`? | `number`[] | `Description` Which hosted journals, presses or preprint servers are allowed to send bulk emails. | -| `installedLocales`? | `string`[] | - | -| `minPasswordLength`? | `number` | - | -| `pageFooter`? | `string` | - | -| `pageHeaderTitleImage`? | `object` | - | -| `pageHeaderTitleImage.altText`? | `string` | - | -| `pageHeaderTitleImage.dateUploaded`? | `string` | - | -| `pageHeaderTitleImage.height`? | `number` | - | -| `pageHeaderTitleImage.name`? | `string` | - | -| `pageHeaderTitleImage.temporaryFileId`? | `number` | - | -| `pageHeaderTitleImage.uploadName`? | `string` | - | -| `pageHeaderTitleImage.width`? | `number` | - | -| `primaryLocale`? | `string` | - | -| `privacyStatement`? | `string` | - | -| `redirect`? | `number` | - | -| `sidebar`? | `string`[] | - | -| `styleSheet`? | `object` | - | -| `styleSheet.dateUploaded`? | `string` | - | -| `styleSheet.name`? | `string` | - | -| `styleSheet.temporaryFileId`? | `number` | - | -| `styleSheet.uploadName`? | `string` | - | -| `supportedLocales`? | `string`[] | - | -| `themePluginPath`? | `string` | `Default` default | -| `title` | `string` | - | - -Defined in: [lib/swagger-types.ts:2330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2330) +| Member | Type | Description | +| :-------------------------------------- | :--------- | :------------------------------------------------------------------------------------------------ | +| `about`? | `string` | - | +| `contactEmail` | `string` | - | +| `contactName` | `string` | - | +| `enableBulkEmails`? | `number`[] | `Description` Which hosted journals, presses or preprint servers are allowed to send bulk emails. | +| `installedLocales`? | `string`[] | - | +| `minPasswordLength`? | `number` | - | +| `pageFooter`? | `string` | - | +| `pageHeaderTitleImage`? | `object` | - | +| `pageHeaderTitleImage.altText`? | `string` | - | +| `pageHeaderTitleImage.dateUploaded`? | `string` | - | +| `pageHeaderTitleImage.height`? | `number` | - | +| `pageHeaderTitleImage.name`? | `string` | - | +| `pageHeaderTitleImage.temporaryFileId`? | `number` | - | +| `pageHeaderTitleImage.uploadName`? | `string` | - | +| `pageHeaderTitleImage.width`? | `number` | - | +| `primaryLocale`? | `string` | - | +| `privacyStatement`? | `string` | - | +| `redirect`? | `number` | - | +| `sidebar`? | `string`[] | - | +| `styleSheet`? | `object` | - | +| `styleSheet.dateUploaded`? | `string` | - | +| `styleSheet.name`? | `string` | - | +| `styleSheet.temporaryFileId`? | `number` | - | +| `styleSheet.uploadName`? | `string` | - | +| `supportedLocales`? | `string`[] | - | +| `themePluginPath`? | `string` | `Default` default | +| `title` | `string` | - | + +Defined in: [lib/swagger-types.ts:2330](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2330) ##### `Submission` @@ -2237,31 +2237,31 @@ A submission to the journal or press. ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `_href`? | `string` | - | -| `contextId` | `number` | - | -| `currentPublicationId`? | `number` | `Description` Which publication is the latest published version. | -| `dateLastActivity`? | `string` | `Description` The last time activity was recorded related to this submission. | -| `dateSubmitted`? | `string` | - | -| `id`? | `number` | - | -| `lastModified`? | `string` | `Description` The last time a modification was made to this submission or any of its associated objects. | -| `locale`? | `string` | `Description` The primary language of this submission. | -| `publications`? | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | `Description` A list of publications that have been created for this submission. | -| `reviewAssignments`? | { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[] | `Description` Information about pending and completed review assignments. | -| `reviewRounds`? | { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[] | `Description` A list of review rounds that have been opened for this submission. | -| `sectionId` | `number` | `Description` The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the `sectionId`. | -| `stageId`? | `number` | `Description` The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. `Default` 1 | -| `stages`? | { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[] | `Description` Key data about the status, files and discussions of each stage. | -| `status`? | `number` | `Description` Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `statusLabel`? | `string` | `Description` A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. | -| `submissionProgress`? | `number` | `Description` This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. `Default` 1 | -| `urlAuthorWorkflow`? | `string` | `Description` A URL to the author's editorial workflow. | -| `urlEditorialWorkflow`? | `string` | `Description` A URL to the editors' and assistants' editorial workflow. | -| `urlPublished`? | `string` | `Description` A URL to the current publication or where it will be published. | -| `urlWorkflow`? | `string` | `Description` A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or \`urlEditorialWorkflow. | - -Defined in: [lib/swagger-types.ts:2367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2367) +| Member | Type | Description | +| :---------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `_href`? | `string` | - | +| `contextId` | `number` | - | +| `currentPublicationId`? | `number` | `Description` Which publication is the latest published version. | +| `dateLastActivity`? | `string` | `Description` The last time activity was recorded related to this submission. | +| `dateSubmitted`? | `string` | - | +| `id`? | `number` | - | +| `lastModified`? | `string` | `Description` The last time a modification was made to this submission or any of its associated objects. | +| `locale`? | `string` | `Description` The primary language of this submission. | +| `publications`? | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | `Description` A list of publications that have been created for this submission. | +| `reviewAssignments`? | { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[] | `Description` Information about pending and completed review assignments. | +| `reviewRounds`? | { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[] | `Description` A list of review rounds that have been opened for this submission. | +| `sectionId` | `number` | `Description` The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the `sectionId`. | +| `stageId`? | `number` | `Description` The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. `Default` 1 | +| `stages`? | { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[] | `Description` Key data about the status, files and discussions of each stage. | +| `status`? | `number` | `Description` Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `statusLabel`? | `string` | `Description` A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. | +| `submissionProgress`? | `number` | `Description` This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. `Default` 1 | +| `urlAuthorWorkflow`? | `string` | `Description` A URL to the author's editorial workflow. | +| `urlEditorialWorkflow`? | `string` | `Description` A URL to the editors' and assistants' editorial workflow. | +| `urlPublished`? | `string` | `Description` A URL to the current publication or where it will be published. | +| `urlWorkflow`? | `string` | `Description` A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or \`urlEditorialWorkflow. | + +Defined in: [lib/swagger-types.ts:2367](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2367) ##### `SubmissionFile` @@ -2327,49 +2327,49 @@ A submission file including associated metadata. ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `_href`? | `string` | Format: uri | -| `assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `dependentFiles`? | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `description`? | `string` | - | -| `documentType`? | `string` | - | -| `file`? | `string` | Format: binary | -| `fileId` | `number` | - | -| `fileStage` | `number` | - | -| `genre`? | `object` | `Description` The genre of this file, such as Article Text or Data Set. | -| `genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `genre.id`? | `number` | - | -| `genre.name`? | `string` | - | -| `genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `id`? | `number` | - | -| `language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `mimetype`? | `string` | - | -| `name` | { } | - | -| `path`? | `string` | - | -| `publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `submissionId` | `number` | - | -| `terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `updatedAt`? | `string` | `Description` When this object was last updated. | -| `uploaderUserId` | `number` | - | -| `url`? | `string` | - | -| `viewable`? | `boolean` | - | - -Defined in: [lib/swagger-types.ts:2440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2440) +| Member | Type | Description | +| :------------------------ | :---------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------- | --------------------------- | ---------------------------------- | ----------------------------- | ---------------------------------------------- | --------------- | --------------------------------------------------------------------------------------------------- | +| `_href`? | `string` | Format: uri | +| `assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `dependentFiles`? | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `description`? | `string` | - | +| `documentType`? | `string` | - | +| `file`? | `string` | Format: binary | +| `fileId` | `number` | - | +| `fileStage` | `number` | - | +| `genre`? | `object` | `Description` The genre of this file, such as Article Text or Data Set. | +| `genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `genre.id`? | `number` | - | +| `genre.name`? | `string` | - | +| `genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `id`? | `number` | - | +| `language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `mimetype`? | `string` | - | +| `name` | { } | - | +| `path`? | `string` | - | +| `publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `submissionId` | `number` | - | +| `terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `updatedAt`? | `string` | `Description` When this object was last updated. | +| `uploaderUserId` | `number` | - | +| `url`? | `string` | - | +| `viewable`? | `boolean` | - | + +Defined in: [lib/swagger-types.ts:2440](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2440) ##### `ThemeOptions` @@ -2388,12 +2388,12 @@ A theme with values for any of its theme options. The theme is provided in the ` ###### Type declaration -| Member | Type | -| :------ | :------ | -| `...`? | `string` | +| Member | Type | +| :----------------- | :------- | +| `...`? | `string` | | `themePluginPath`? | `string` | -Defined in: [lib/swagger-types.ts:2514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2514) +Defined in: [lib/swagger-types.ts:2514](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2514) ##### `TimelineInterval` @@ -2409,13 +2409,13 @@ Defined in: [lib/swagger-types.ts:2514](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | -| :------ | :------ | -| `date`? | `string` | +| Member | Type | +| :------- | :------- | +| `date`? | `string` | | `label`? | `string` | | `value`? | `number` | -Defined in: [lib/swagger-types.ts:2518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2518) +Defined in: [lib/swagger-types.ts:2518](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2518) ##### `User` @@ -2488,50 +2488,50 @@ A registered user. ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `_href`? | `string` | - | -| `affiliation`? | `string` | - | -| `apiKey`? | `string` | - | -| `apiKeyEnabled`? | `boolean` | - | -| `authId`? | `number` | - | -| `authStr`? | `string` | - | -| `billingAddress`? | `string` | - | -| `biography`? | `string` | - | -| `country`? | `string` | - | -| `dateLastEmail`? | `string` | - | -| `dateLastLogin`? | `string` | - | -| `dateRegistered`? | `string` | - | -| `dateValidated`? | `string` | - | -| `disabled`? | `boolean` | - | -| `disabledReason`? | `string` | - | -| `email`? | `string` | - | -| `familyName`? | `string` | - | -| `fullName`? | `string` | - | -| `givenName`? | `string` | - | -| `gossip`? | `string` | - | -| `groups`? | { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[] | - | -| `id`? | `number` | - | -| `inlineHelp`? | `boolean` | - | -| `interests`? | { `id`?: `number`; `interest`?: `string`; }[] | - | -| `locales`? | `string`[] | - | -| `mailingAddress`? | `string` | - | -| `mustChangePassword`? | `boolean` | - | -| `orcid`? | `string` | - | -| `password`? | `string` | - | -| `phone`? | `string` | - | -| `preferredPublicName`? | `string` | `Description` An optional field for users to specify how they prefer to be identified. | -| `profileImage`? | `object` | - | -| `profileImage.dateUploaded`? | `string` | - | -| `profileImage.height`? | `number` | - | -| `profileImage.name`? | `string` | - | -| `profileImage.uploadName`? | `string` | - | -| `profileImage.width`? | `number` | - | -| `signature`? | `string` | - | -| `url`? | `string` | - | -| `userName`? | `string` | - | - -Defined in: [lib/swagger-types.ts:2527](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2527) +| Member | Type | Description | +| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------- | +| `_href`? | `string` | - | +| `affiliation`? | `string` | - | +| `apiKey`? | `string` | - | +| `apiKeyEnabled`? | `boolean` | - | +| `authId`? | `number` | - | +| `authStr`? | `string` | - | +| `billingAddress`? | `string` | - | +| `biography`? | `string` | - | +| `country`? | `string` | - | +| `dateLastEmail`? | `string` | - | +| `dateLastLogin`? | `string` | - | +| `dateRegistered`? | `string` | - | +| `dateValidated`? | `string` | - | +| `disabled`? | `boolean` | - | +| `disabledReason`? | `string` | - | +| `email`? | `string` | - | +| `familyName`? | `string` | - | +| `fullName`? | `string` | - | +| `givenName`? | `string` | - | +| `gossip`? | `string` | - | +| `groups`? | { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[] | - | +| `id`? | `number` | - | +| `inlineHelp`? | `boolean` | - | +| `interests`? | { `id`?: `number`; `interest`?: `string`; }[] | - | +| `locales`? | `string`[] | - | +| `mailingAddress`? | `string` | - | +| `mustChangePassword`? | `boolean` | - | +| `orcid`? | `string` | - | +| `password`? | `string` | - | +| `phone`? | `string` | - | +| `preferredPublicName`? | `string` | `Description` An optional field for users to specify how they prefer to be identified. | +| `profileImage`? | `object` | - | +| `profileImage.dateUploaded`? | `string` | - | +| `profileImage.height`? | `number` | - | +| `profileImage.name`? | `string` | - | +| `profileImage.uploadName`? | `string` | - | +| `profileImage.width`? | `number` | - | +| `signature`? | `string` | - | +| `url`? | `string` | - | +| `userName`? | `string` | - | + +Defined in: [lib/swagger-types.ts:2527](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2527) ##### `UserGroup` @@ -2559,17 +2559,17 @@ A user group assigned to one of the allowed roles. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `abbrev`? | { } | -| `id`? | `number` | -| `name`? | { } | +| Member | Type | +| :------------------------ | :-------- | +| `abbrev`? | { } | +| `id`? | `number` | +| `name`? | { } | | `permitSelfRegistration`? | `boolean` | -| `recommendOnly`? | `boolean` | -| `roleId`? | `number` | -| `showTitle`? | `boolean` | +| `recommendOnly`? | `boolean` | +| `roleId`? | `number` | +| `showTitle`? | `boolean` | -Defined in: [lib/swagger-types.ts:2576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2576) +Defined in: [lib/swagger-types.ts:2576](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2576) ##### `UserInterest` @@ -2588,12 +2588,12 @@ A user's review interests. ###### Type declaration -| Member | Type | -| :------ | :------ | -| `id`? | `number` | +| Member | Type | +| :---------- | :------- | +| `id`? | `number` | | `interest`? | `string` | -Defined in: [lib/swagger-types.ts:2586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2586) +Defined in: [lib/swagger-types.ts:2586](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2586) ##### `UserSummary` @@ -2660,60 +2660,60 @@ Defined in: [lib/swagger-types.ts:2586](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `_href`? | `string` | - | -| `affiliation`? | `string` | - | -| `apiKey`? | `string` | - | -| `apiKeyEnabled`? | `boolean` | - | -| `authId`? | `number` | - | -| `authStr`? | `string` | - | -| `billingAddress`? | `string` | - | -| `biography`? | `string` | - | -| `country`? | `string` | - | -| `dateLastEmail`? | `string` | - | -| `dateLastLogin`? | `string` | - | -| `dateRegistered`? | `string` | - | -| `dateValidated`? | `string` | - | -| `disabled`? | `boolean` | - | -| `disabledReason`? | `string` | - | -| `email`? | `string` | - | -| `familyName`? | `string` | - | -| `fullName`? | `string` | - | -| `givenName`? | `string` | - | -| `gossip`? | `string` | - | -| `groups`? | { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[] | - | -| `id`? | `number` | - | -| `inlineHelp`? | `boolean` | - | -| `interests`? | { `id`?: `number`; `interest`?: `string`; }[] | - | -| `locales`? | `string`[] | - | -| `mailingAddress`? | `string` | - | -| `mustChangePassword`? | `boolean` | - | -| `orcid`? | `string` | - | -| `password`? | `string` | - | -| `phone`? | `string` | - | -| `preferredPublicName`? | `string` | `Description` An optional field for users to specify how they prefer to be identified. | -| `profileImage`? | `object` | - | -| `profileImage.dateUploaded`? | `string` | - | -| `profileImage.height`? | `number` | - | -| `profileImage.name`? | `string` | - | -| `profileImage.uploadName`? | `string` | - | -| `profileImage.width`? | `number` | - | -| `signature`? | `string` | - | -| `url`? | `string` | - | -| `userName`? | `string` | - | - -Defined in: [lib/swagger-types.ts:2571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2571) - -*** +| Member | Type | Description | +| :--------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------- | +| `_href`? | `string` | - | +| `affiliation`? | `string` | - | +| `apiKey`? | `string` | - | +| `apiKeyEnabled`? | `boolean` | - | +| `authId`? | `number` | - | +| `authStr`? | `string` | - | +| `billingAddress`? | `string` | - | +| `biography`? | `string` | - | +| `country`? | `string` | - | +| `dateLastEmail`? | `string` | - | +| `dateLastLogin`? | `string` | - | +| `dateRegistered`? | `string` | - | +| `dateValidated`? | `string` | - | +| `disabled`? | `boolean` | - | +| `disabledReason`? | `string` | - | +| `email`? | `string` | - | +| `familyName`? | `string` | - | +| `fullName`? | `string` | - | +| `givenName`? | `string` | - | +| `gossip`? | `string` | - | +| `groups`? | { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[] | - | +| `id`? | `number` | - | +| `inlineHelp`? | `boolean` | - | +| `interests`? | { `id`?: `number`; `interest`?: `string`; }[] | - | +| `locales`? | `string`[] | - | +| `mailingAddress`? | `string` | - | +| `mustChangePassword`? | `boolean` | - | +| `orcid`? | `string` | - | +| `password`? | `string` | - | +| `phone`? | `string` | - | +| `preferredPublicName`? | `string` | `Description` An optional field for users to specify how they prefer to be identified. | +| `profileImage`? | `object` | - | +| `profileImage.dateUploaded`? | `string` | - | +| `profileImage.height`? | `number` | - | +| `profileImage.name`? | `string` | - | +| `profileImage.uploadName`? | `string` | - | +| `profileImage.width`? | `number` | - | +| `signature`? | `string` | - | +| `url`? | `string` | - | +| `userName`? | `string` | - | + +Defined in: [lib/swagger-types.ts:2571](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L2571) + +--- ### `external` -*** +--- ### `operations` -*** +--- ### `paths` @@ -2743,16 +2743,16 @@ Do not make direct changes to the file. ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `put` | `object` | This endpoint is used on the settings page to save payment plugin settings alongside the general journal settings for enabling payments and setting the currency. | -| `put.parameters` | {} | - | -| `put.responses` | { `200`: `unknown`; `400`: { `schema`: { }; }; } | - | -| `put.responses.200` | `unknown` | The parameters you submitted | -| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `put.responses.400.schema` | { } | - | +| Member | Type | Description | +| :------------------------- | :----------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `put` | `object` | This endpoint is used on the settings page to save payment plugin settings alongside the general journal settings for enabling payments and setting the currency. | +| `put.parameters` | {} | - | +| `put.responses` | { `200`: `unknown`; `400`: { `schema`: { }; }; } | - | +| `put.responses.200` | `unknown` | The parameters you submitted | +| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `put.responses.400.schema` | { } | - | -Defined in: [lib/swagger-types.ts:1772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1772) +Defined in: [lib/swagger-types.ts:1772](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1772) ##### `/\_submissions` @@ -2771,14 +2771,14 @@ Defined in: [lib/swagger-types.ts:1772](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | This endpoint delivers a little bit of extra information about each submission that is used in the submissions list. This private endpoint saves a few extra HTTP requests, but it is more database-intensive for each query. | -| `get.parameters` | {} | - | -| `get.responses` | { `200`: `unknown`; } | - | -| `get.responses.200` | `unknown` | List of submissions. | +| Member | Type | Description | +| :------------------ | :-------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | This endpoint delivers a little bit of extra information about each submission that is used in the submissions list. This private endpoint saves a few extra HTTP requests, but it is more database-intensive for each query. | +| `get.parameters` | {} | - | +| `get.responses` | { `200`: `unknown`; } | - | +| `get.responses.200` | `unknown` | List of submissions. | -Defined in: [lib/swagger-types.ts:1842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1842) +Defined in: [lib/swagger-types.ts:1842](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1842) ##### `/\_uploadPublicFile` @@ -2840,41 +2840,41 @@ Defined in: [lib/swagger-types.ts:1842](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `options` | `object` | Responds with the appopriate headers to indicate file uploads maybe be sent, required by some file upload utilities which send a preflight request. | -| `options.responses` | { `200`: `unknown`; } | - | -| `options.responses.200` | `unknown` | An empty response body. | -| `post` | `object` | The user's public file directory supports files uploaded through the TinyMCE rich text editor. This is commonly used in context settings but is also available to all registered users through their profile biography. | -| `post.parameters` | { `body`: { `file`?: `unknown`; }; } | - | -| `post.parameters.body` | { `file`?: `unknown`; } | - | -| `post.parameters.body.file`? | `unknown` | Use the `file` key to upload your file. | -| `post.responses` | { `200`: { `schema`: { `url`?: `string`; }; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `409`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `413`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `500`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `post.responses.200` | { `schema`: { `url`?: `string`; }; } | An object containing the URL to the uploaded file. | -| `post.responses.200.schema` | { `url`?: `string`; } | - | -| `post.responses.200.schema.url`? | `string` | - | -| `post.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | One of the following errors occurred. \* No uploaded file could be found. \* This file type is not supported. \* The file you uploaded identifies itself as an image but it is not a valid image. \* The mime-type did not match the file extension. \* The file is too large. \* The server configuration could not support this file upload because there is no temporary directory, it doesn't have permission to write to the directory, or a PHP extension stopped the file upload. The error message will contain further details. | -| `post.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.400.schema.error`? | `string` | - | -| `post.responses.400.schema.errorMessage`? | `string` | - | -| `post.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to upload this public file. | -| `post.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.403.schema.error`? | `string` | - | -| `post.responses.403.schema.errorMessage`? | `string` | - | -| `post.responses.409` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The upload failed for an unknown reason. | -| `post.responses.409.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.409.schema.error`? | `string` | - | -| `post.responses.409.schema.errorMessage`? | `string` | - | -| `post.responses.413` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your user file directory is full. | -| `post.responses.413.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.413.schema.error`? | `string` | - | -| `post.responses.413.schema.errorMessage`? | `string` | - | -| `post.responses.500` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The server is unable to read or write to the public files directory. | -| `post.responses.500.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.500.schema.error`? | `string` | - | -| `post.responses.500.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1786) +| Member | Type | Description | +| :---------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `options` | `object` | Responds with the appopriate headers to indicate file uploads maybe be sent, required by some file upload utilities which send a preflight request. | +| `options.responses` | { `200`: `unknown`; } | - | +| `options.responses.200` | `unknown` | An empty response body. | +| `post` | `object` | The user's public file directory supports files uploaded through the TinyMCE rich text editor. This is commonly used in context settings but is also available to all registered users through their profile biography. | +| `post.parameters` | { `body`: { `file`?: `unknown`; }; } | - | +| `post.parameters.body` | { `file`?: `unknown`; } | - | +| `post.parameters.body.file`? | `unknown` | Use the `file` key to upload your file. | +| `post.responses` | { `200`: { `schema`: { `url`?: `string`; }; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `409`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `413`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `500`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `post.responses.200` | { `schema`: { `url`?: `string`; }; } | An object containing the URL to the uploaded file. | +| `post.responses.200.schema` | { `url`?: `string`; } | - | +| `post.responses.200.schema.url`? | `string` | - | +| `post.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | One of the following errors occurred. \* No uploaded file could be found. \* This file type is not supported. \* The file you uploaded identifies itself as an image but it is not a valid image. \* The mime-type did not match the file extension. \* The file is too large. \* The server configuration could not support this file upload because there is no temporary directory, it doesn't have permission to write to the directory, or a PHP extension stopped the file upload. The error message will contain further details. | +| `post.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.400.schema.error`? | `string` | - | +| `post.responses.400.schema.errorMessage`? | `string` | - | +| `post.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to upload this public file. | +| `post.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.403.schema.error`? | `string` | - | +| `post.responses.403.schema.errorMessage`? | `string` | - | +| `post.responses.409` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The upload failed for an unknown reason. | +| `post.responses.409.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.409.schema.error`? | `string` | - | +| `post.responses.409.schema.errorMessage`? | `string` | - | +| `post.responses.413` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your user file directory is full. | +| `post.responses.413.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.413.schema.error`? | `string` | - | +| `post.responses.413.schema.errorMessage`? | `string` | - | +| `post.responses.500` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The server is unable to read or write to the public files directory. | +| `post.responses.500.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.500.schema.error`? | `string` | - | +| `post.responses.500.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1786](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1786) ##### `/announcements` @@ -2947,44 +2947,44 @@ Defined in: [lib/swagger-types.ts:1786](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | - | -| `get.parameters` | { `query`: { `count`?: `unknown`; `offset`?: `number`; `searchPhrase`?: `string`; `typeIds`?: `number`[]; }; } | - | -| `get.parameters.query` | { `count`?: `unknown`; `offset`?: `number`; `searchPhrase`?: `string`; `typeIds`?: `number`[]; } | - | -| `get.parameters.query.count`? | `unknown` | How many results to return in a single request. | -| `get.parameters.query.offset`? | `number` | Offset the results returned. Use this to receive subsequent pages of requests. | -| `get.parameters.query.searchPhrase`? | `string` | Filter results by a search phrase matched against the `title`, `descriptionShort`, and `description`. | -| `get.parameters.query.typeIds`? | `number`[] | Filter results by announcements of these announcement types. | -| `get.responses` | { `200`: { `schema`: { `items`?: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }[]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `items`?: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }[]; `itemsMax`?: `number`; }; } | List of announcements. | -| `get.responses.200.schema` | { `items`?: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }[]; `itemsMax`?: `number`; } | - | -| `get.responses.200.schema.items`? | { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }[] | - | -| `get.responses.200.schema.itemsMax`? | `number` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view announcements in this context. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `post` | `object` | Create and publish a new announcement in this context. | -| `post.parameters` | {} | - | -| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; }; `400`: { `schema`: { }; }; } | - | -| `post.responses.200` | { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; } | Details of the announcement that was just added. | -| `post.responses.200.schema` | { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; } | - | -| `post.responses.200.schema._href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | -| `post.responses.200.schema.assocId` | `number` | `Description` The journal, press or preprint server ID. | -| `post.responses.200.schema.assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | -| `post.responses.200.schema.dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | -| `post.responses.200.schema.datePosted`? | `string` | `Description` The date this announcement was posted. | -| `post.responses.200.schema.description`? | `string` | `Description` The full text of the announcement. | -| `post.responses.200.schema.descriptionShort`? | `string` | `Description` A summary of this announcement. | -| `post.responses.200.schema.id`? | `number` | - | -| `post.responses.200.schema.title` | `string` | - | -| `post.responses.200.schema.typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | -| `post.responses.200.schema.url`? | `string` | Format: uri `Description` The URL to the published announcement. | -| `post.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `post.responses.400.schema` | { } | - | - -Defined in: [lib/swagger-types.ts:1150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1150) +| Member | Type | Description | +| :-------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | - | +| `get.parameters` | { `query`: { `count`?: `unknown`; `offset`?: `number`; `searchPhrase`?: `string`; `typeIds`?: `number`[]; }; } | - | +| `get.parameters.query` | { `count`?: `unknown`; `offset`?: `number`; `searchPhrase`?: `string`; `typeIds`?: `number`[]; } | - | +| `get.parameters.query.count`? | `unknown` | How many results to return in a single request. | +| `get.parameters.query.offset`? | `number` | Offset the results returned. Use this to receive subsequent pages of requests. | +| `get.parameters.query.searchPhrase`? | `string` | Filter results by a search phrase matched against the `title`, `descriptionShort`, and `description`. | +| `get.parameters.query.typeIds`? | `number`[] | Filter results by announcements of these announcement types. | +| `get.responses` | { `200`: { `schema`: { `items`?: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }[]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `items`?: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }[]; `itemsMax`?: `number`; }; } | List of announcements. | +| `get.responses.200.schema` | { `items`?: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }[]; `itemsMax`?: `number`; } | - | +| `get.responses.200.schema.items`? | { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }[] | - | +| `get.responses.200.schema.itemsMax`? | `number` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view announcements in this context. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `post` | `object` | Create and publish a new announcement in this context. | +| `post.parameters` | {} | - | +| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; }; `400`: { `schema`: { }; }; } | - | +| `post.responses.200` | { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; } | Details of the announcement that was just added. | +| `post.responses.200.schema` | { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; } | - | +| `post.responses.200.schema._href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | +| `post.responses.200.schema.assocId` | `number` | `Description` The journal, press or preprint server ID. | +| `post.responses.200.schema.assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | +| `post.responses.200.schema.dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | +| `post.responses.200.schema.datePosted`? | `string` | `Description` The date this announcement was posted. | +| `post.responses.200.schema.description`? | `string` | `Description` The full text of the announcement. | +| `post.responses.200.schema.descriptionShort`? | `string` | `Description` A summary of this announcement. | +| `post.responses.200.schema.id`? | `number` | - | +| `post.responses.200.schema.title` | `string` | - | +| `post.responses.200.schema.typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | +| `post.responses.200.schema.url`? | `string` | Format: uri `Description` The URL to the published announcement. | +| `post.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `post.responses.400.schema` | { } | - | + +Defined in: [lib/swagger-types.ts:1150](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1150) ##### `/announcements/\{announcementId}` @@ -3109,90 +3109,90 @@ Defined in: [lib/swagger-types.ts:1150](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `delete` | `object` | Delete an announcement. | -| `delete.parameters` | { `path`: { `announcementId`: `number`; }; } | - | -| `delete.parameters.path` | { `announcementId`: `number`; } | - | -| `delete.parameters.path.announcementId` | `number` | Announcement ID | -| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `delete.responses.200` | { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; } | Details of the announcement that was just deleted. | -| `delete.responses.200.schema` | { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; } | - | -| `delete.responses.200.schema._href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | -| `delete.responses.200.schema.assocId` | `number` | `Description` The journal, press or preprint server ID. | -| `delete.responses.200.schema.assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | -| `delete.responses.200.schema.dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | -| `delete.responses.200.schema.datePosted`? | `string` | `Description` The date this announcement was posted. | -| `delete.responses.200.schema.description`? | `string` | `Description` The full text of the announcement. | -| `delete.responses.200.schema.descriptionShort`? | `string` | `Description` A summary of this announcement. | -| `delete.responses.200.schema.id`? | `number` | - | -| `delete.responses.200.schema.title` | `string` | - | -| `delete.responses.200.schema.typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | -| `delete.responses.200.schema.url`? | `string` | Format: uri `Description` The URL to the published announcement. | -| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to delete this announcement. | -| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.403.schema.error`? | `string` | - | -| `delete.responses.403.schema.errorMessage`? | `string` | - | -| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested announcement could not be found. | -| `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.404.schema.error`? | `string` | - | -| `delete.responses.404.schema.errorMessage`? | `string` | - | -| `get` | `object` | - | -| `get.parameters` | { `path`: { `announcementId`: `number`; }; } | - | -| `get.parameters.path` | { `announcementId`: `number`; } | - | -| `get.parameters.path.announcementId` | `number` | Announcement ID | -| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; } | Announcement details. | -| `get.responses.200.schema` | { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; } | - | -| `get.responses.200.schema._href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | -| `get.responses.200.schema.assocId` | `number` | `Description` The journal, press or preprint server ID. | -| `get.responses.200.schema.assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | -| `get.responses.200.schema.dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | -| `get.responses.200.schema.datePosted`? | `string` | `Description` The date this announcement was posted. | -| `get.responses.200.schema.description`? | `string` | `Description` The full text of the announcement. | -| `get.responses.200.schema.descriptionShort`? | `string` | `Description` A summary of this announcement. | -| `get.responses.200.schema.id`? | `number` | - | -| `get.responses.200.schema.title` | `string` | - | -| `get.responses.200.schema.typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | -| `get.responses.200.schema.url`? | `string` | Format: uri `Description` The URL to the published announcement. | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view this announcement. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested announcement could not be found. Or you requested an announcement that is not part of this context. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | -| `put` | `object` | Edit an announcement. | -| `put.parameters` | { `path`: { `announcementId`: `number`; }; } | - | -| `put.parameters.path` | { `announcementId`: `number`; } | - | -| `put.parameters.path.announcementId` | `number` | Announcement ID | -| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `put.responses.200` | { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; } | The announcement that was just edited with the current values after the edit has occurred. | -| `put.responses.200.schema` | { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; } | - | -| `put.responses.200.schema._href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | -| `put.responses.200.schema.assocId` | `number` | `Description` The journal, press or preprint server ID. | -| `put.responses.200.schema.assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | -| `put.responses.200.schema.dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | -| `put.responses.200.schema.datePosted`? | `string` | `Description` The date this announcement was posted. | -| `put.responses.200.schema.description`? | `string` | `Description` The full text of the announcement. | -| `put.responses.200.schema.descriptionShort`? | `string` | `Description` A summary of this announcement. | -| `put.responses.200.schema.id`? | `number` | - | -| `put.responses.200.schema.title` | `string` | - | -| `put.responses.200.schema.typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | -| `put.responses.200.schema.url`? | `string` | Format: uri `Description` The URL to the published announcement. | -| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `put.responses.400.schema` | { } | - | -| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to edit this announcement. | -| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.403.schema.error`? | `string` | - | -| `put.responses.403.schema.errorMessage`? | `string` | - | -| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested announcement could not be found. | -| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.404.schema.error`? | `string` | - | -| `put.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1193](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1193) +| Member | Type | Description | +| :---------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :----------------------------------------------------------------------------------------------------------------------------------------------------- | +| `delete` | `object` | Delete an announcement. | +| `delete.parameters` | { `path`: { `announcementId`: `number`; }; } | - | +| `delete.parameters.path` | { `announcementId`: `number`; } | - | +| `delete.parameters.path.announcementId` | `number` | Announcement ID | +| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `delete.responses.200` | { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; } | Details of the announcement that was just deleted. | +| `delete.responses.200.schema` | { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; } | - | +| `delete.responses.200.schema._href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | +| `delete.responses.200.schema.assocId` | `number` | `Description` The journal, press or preprint server ID. | +| `delete.responses.200.schema.assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | +| `delete.responses.200.schema.dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | +| `delete.responses.200.schema.datePosted`? | `string` | `Description` The date this announcement was posted. | +| `delete.responses.200.schema.description`? | `string` | `Description` The full text of the announcement. | +| `delete.responses.200.schema.descriptionShort`? | `string` | `Description` A summary of this announcement. | +| `delete.responses.200.schema.id`? | `number` | - | +| `delete.responses.200.schema.title` | `string` | - | +| `delete.responses.200.schema.typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | +| `delete.responses.200.schema.url`? | `string` | Format: uri `Description` The URL to the published announcement. | +| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to delete this announcement. | +| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.403.schema.error`? | `string` | - | +| `delete.responses.403.schema.errorMessage`? | `string` | - | +| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested announcement could not be found. | +| `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.404.schema.error`? | `string` | - | +| `delete.responses.404.schema.errorMessage`? | `string` | - | +| `get` | `object` | - | +| `get.parameters` | { `path`: { `announcementId`: `number`; }; } | - | +| `get.parameters.path` | { `announcementId`: `number`; } | - | +| `get.parameters.path.announcementId` | `number` | Announcement ID | +| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; } | Announcement details. | +| `get.responses.200.schema` | { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; } | - | +| `get.responses.200.schema._href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | +| `get.responses.200.schema.assocId` | `number` | `Description` The journal, press or preprint server ID. | +| `get.responses.200.schema.assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | +| `get.responses.200.schema.dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | +| `get.responses.200.schema.datePosted`? | `string` | `Description` The date this announcement was posted. | +| `get.responses.200.schema.description`? | `string` | `Description` The full text of the announcement. | +| `get.responses.200.schema.descriptionShort`? | `string` | `Description` A summary of this announcement. | +| `get.responses.200.schema.id`? | `number` | - | +| `get.responses.200.schema.title` | `string` | - | +| `get.responses.200.schema.typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | +| `get.responses.200.schema.url`? | `string` | Format: uri `Description` The URL to the published announcement. | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view this announcement. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested announcement could not be found. Or you requested an announcement that is not part of this context. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | +| `put` | `object` | Edit an announcement. | +| `put.parameters` | { `path`: { `announcementId`: `number`; }; } | - | +| `put.parameters.path` | { `announcementId`: `number`; } | - | +| `put.parameters.path.announcementId` | `number` | Announcement ID | +| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `put.responses.200` | { `schema`: { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; }; } | The announcement that was just edited with the current values after the edit has occurred. | +| `put.responses.200.schema` | { `_href`?: `string`; `assocId`: `number`; `assocType`: `number`; `dateExpire`?: `string`; `datePosted`?: `string`; `description`?: `string`; `descriptionShort`?: `string`; `id`?: `number`; `title`: `string`; `typeId`?: `number`; `url`?: `string`; } | - | +| `put.responses.200.schema._href`? | `string` | Format: uri `Description` The URL to this announcement in the REST API. | +| `put.responses.200.schema.assocId` | `number` | `Description` The journal, press or preprint server ID. | +| `put.responses.200.schema.assocType` | `number` | `Description` The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS). | +| `put.responses.200.schema.dateExpire`? | `string` | `Description` (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. | +| `put.responses.200.schema.datePosted`? | `string` | `Description` The date this announcement was posted. | +| `put.responses.200.schema.description`? | `string` | `Description` The full text of the announcement. | +| `put.responses.200.schema.descriptionShort`? | `string` | `Description` A summary of this announcement. | +| `put.responses.200.schema.id`? | `number` | - | +| `put.responses.200.schema.title` | `string` | - | +| `put.responses.200.schema.typeId`? | `number` | `Description` (Optional) One of the announcement type ids. | +| `put.responses.200.schema.url`? | `string` | Format: uri `Description` The URL to the published announcement. | +| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `put.responses.400.schema` | { } | - | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to edit this announcement. | +| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.403.schema.error`? | `string` | - | +| `put.responses.403.schema.errorMessage`? | `string` | - | +| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested announcement could not be found. | +| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.404.schema.error`? | `string` | - | +| `put.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1193](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1193) ##### `/contexts` @@ -3501,155 +3501,155 @@ Defined in: [lib/swagger-types.ts:1193](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Get an array of the journals (OJS), presses (OMP) or preprint servers (OPS) hosted on this site. | -| `get.parameters` | { `query`: { `count`?: `unknown`; `isEnabled`?: `string`; `offset`?: `number`; `searchPhrase`?: `string`; }; } | - | -| `get.parameters.query` | { `count`?: `unknown`; `isEnabled`?: `string`; `offset`?: `number`; `searchPhrase`?: `string`; } | - | -| `get.parameters.query.count`? | `unknown` | How many results to return in a single request. Max is `100`. | -| `get.parameters.query.isEnabled`? | `string` | Filter results by enabled/disabled contexts. Any truthy or falsey value will get enabled/disabled contexts. Leave this parameter out to get all contexts. | -| `get.parameters.query.offset`? | `number` | Offset the results returned. Use this to receive subsequent pages of requests. | -| `get.parameters.query.searchPhrase`? | `string` | Filter results by a search phrase matched against the `name`, `description`, `acronym`, or `abbreviation`. | -| `get.responses` | { `200`: { `schema`: { `items`?: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }[]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `items`?: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }[]; `itemsMax`?: `number`; }; } | List of contexts. | -| `get.responses.200.schema` | { `items`?: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }[]; `itemsMax`?: `number`; } | - | -| `get.responses.200.schema.items`? | { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }[] | - | -| `get.responses.200.schema.itemsMax`? | `number` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view disabled contexts. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `post` | `object` | Create a new journal (OJS), press (OMP) or preprint server (OPS). | -| `post.parameters` | {} | - | -| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; }; `400`: { `schema`: { }; }; } | - | -| `post.responses.200` | { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; } | Details of the context that was just added. | -| `post.responses.200.schema` | { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; } | - | -| `post.responses.200.schema._href`? | `string` | Format: uri | -| `post.responses.200.schema.about`? | `string` | - | -| `post.responses.200.schema.acronym`? | `string` | - | -| `post.responses.200.schema.additionalHomeContent`? | `string` | - | -| `post.responses.200.schema.agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `post.responses.200.schema.announcementsIntroduction`? | `string` | - | -| `post.responses.200.schema.authorGuidelines`? | `string` | - | -| `post.responses.200.schema.authorInformation`? | `string` | - | -| `post.responses.200.schema.automaticDoiDeposit`? | `boolean` | - | -| `post.responses.200.schema.citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `post.responses.200.schema.competingInterests`? | `string` | - | -| `post.responses.200.schema.contactAffiliation`? | `string` | - | -| `post.responses.200.schema.contactEmail`? | `string` | - | -| `post.responses.200.schema.contactName`? | `string` | - | -| `post.responses.200.schema.contactPhone`? | `string` | - | -| `post.responses.200.schema.copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | -| `post.responses.200.schema.copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | -| `post.responses.200.schema.copyrightHolderOther`? | `string` | - | -| `post.responses.200.schema.copyrightHolderType`? | `string` | - | -| `post.responses.200.schema.copyrightNotice`? | `string` | - | -| `post.responses.200.schema.country`? | `string` | - | -| `post.responses.200.schema.coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `post.responses.200.schema.currency`? | `string` | - | -| `post.responses.200.schema.customDoiSuffixType`? | `string` | - | -| `post.responses.200.schema.customHeaders`? | `string` | - | -| `post.responses.200.schema.dateFormatLong`? | `string` | - | -| `post.responses.200.schema.dateFormatShort`? | `string` | - | -| `post.responses.200.schema.datetimeFormatLong`? | `string` | - | -| `post.responses.200.schema.datetimeFormatShort`? | `string` | - | -| `post.responses.200.schema.defaultMetricType`? | `string` | - | -| `post.responses.200.schema.defaultReviewMode`? | `number` | `Default` 2 | -| `post.responses.200.schema.description`? | `string` | - | -| `post.responses.200.schema.disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | -| `post.responses.200.schema.disableSubmissions`? | `boolean` | - | -| `post.responses.200.schema.disableUserReg`? | `boolean` | - | -| `post.responses.200.schema.disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `post.responses.200.schema.doiPrefix`? | `string` | - | -| `post.responses.200.schema.doiPublicationSuffixPattern`? | `string` | - | -| `post.responses.200.schema.doiRepresentationSuffixPattern`? | `string` | - | -| `post.responses.200.schema.editorialTeam`? | `string` | - | -| `post.responses.200.schema.emailSignature`? | `string` | - | -| `post.responses.200.schema.enableAnnouncements`? | `boolean` | - | -| `post.responses.200.schema.enableClockss`? | `boolean` | - | -| `post.responses.200.schema.enableDois`? | `boolean` | - | -| `post.responses.200.schema.enableLockss`? | `boolean` | - | -| `post.responses.200.schema.enabled`? | `boolean` | - | -| `post.responses.200.schema.envelopeSender`? | `string` | - | -| `post.responses.200.schema.favicon`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `post.responses.200.schema.favicon.altText`? | `string` | - | -| `post.responses.200.schema.favicon.dateUploaded`? | `string` | - | -| `post.responses.200.schema.favicon.height`? | `number` | - | -| `post.responses.200.schema.favicon.name`? | `string` | - | -| `post.responses.200.schema.favicon.temporaryFileId`? | `number` | - | -| `post.responses.200.schema.favicon.uploadName`? | `string` | - | -| `post.responses.200.schema.favicon.width`? | `number` | - | -| `post.responses.200.schema.homepageImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `post.responses.200.schema.homepageImage.altText`? | `string` | - | -| `post.responses.200.schema.homepageImage.dateUploaded`? | `string` | - | -| `post.responses.200.schema.homepageImage.height`? | `number` | - | -| `post.responses.200.schema.homepageImage.name`? | `string` | - | -| `post.responses.200.schema.homepageImage.temporaryFileId`? | `number` | - | -| `post.responses.200.schema.homepageImage.uploadName`? | `string` | - | -| `post.responses.200.schema.homepageImage.width`? | `number` | - | -| `post.responses.200.schema.id`? | `number` | - | -| `post.responses.200.schema.itemsPerPage`? | `number` | `Default` 25 | -| `post.responses.200.schema.keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | -| `post.responses.200.schema.languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `post.responses.200.schema.librarianInformation`? | `string` | - | -| `post.responses.200.schema.licenseUrl`? | `string` | - | -| `post.responses.200.schema.mailingAddress`? | `string` | - | -| `post.responses.200.schema.name` | `string` | - | -| `post.responses.200.schema.notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | -| `post.responses.200.schema.numAnnouncementsHomepage`? | `number` | - | -| `post.responses.200.schema.numDaysBeforeInviteReminder`? | `number` | - | -| `post.responses.200.schema.numDaysBeforeSubmitReminder`? | `number` | - | -| `post.responses.200.schema.numPageLinks`? | `number` | `Default` 10 | -| `post.responses.200.schema.numWeeksPerResponse`? | `number` | `Default` 4 | -| `post.responses.200.schema.numWeeksPerReview`? | `number` | `Default` 4 | -| `post.responses.200.schema.openAccessPolicy`? | `string` | - | -| `post.responses.200.schema.pageFooter`? | `string` | - | -| `post.responses.200.schema.pageHeaderLogoImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `post.responses.200.schema.pageHeaderLogoImage.altText`? | `string` | - | -| `post.responses.200.schema.pageHeaderLogoImage.dateUploaded`? | `string` | - | -| `post.responses.200.schema.pageHeaderLogoImage.height`? | `number` | - | -| `post.responses.200.schema.pageHeaderLogoImage.name`? | `string` | - | -| `post.responses.200.schema.pageHeaderLogoImage.temporaryFileId`? | `number` | - | -| `post.responses.200.schema.pageHeaderLogoImage.uploadName`? | `string` | - | -| `post.responses.200.schema.pageHeaderLogoImage.width`? | `number` | - | -| `post.responses.200.schema.paymentsEnabled`? | `boolean` | - | -| `post.responses.200.schema.primaryLocale` | `string` | - | -| `post.responses.200.schema.privacyStatement`? | `string` | - | -| `post.responses.200.schema.rateReviewerOnQuality`? | `boolean` | - | -| `post.responses.200.schema.readerInformation`? | `string` | - | -| `post.responses.200.schema.registrationAgency`? | `string` | `Default` none | -| `post.responses.200.schema.restrictReviewerFileAccess`? | `boolean` | - | -| `post.responses.200.schema.restrictSiteAccess`? | `boolean` | - | -| `post.responses.200.schema.reviewGuidelines`? | `string` | - | -| `post.responses.200.schema.reviewerAccessKeysEnabled`? | `boolean` | - | -| `post.responses.200.schema.rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `post.responses.200.schema.searchDescription`? | `string` | - | -| `post.responses.200.schema.seq`? | `number` | - | -| `post.responses.200.schema.showEnsuringLink`? | `boolean` | - | -| `post.responses.200.schema.sidebar`? | `string`[] | - | -| `post.responses.200.schema.source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `post.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `post.responses.200.schema.styleSheet.dateUploaded`? | `string` | - | -| `post.responses.200.schema.styleSheet.name`? | `string` | - | -| `post.responses.200.schema.styleSheet.temporaryFileId`? | `number` | - | -| `post.responses.200.schema.styleSheet.uploadName`? | `string` | - | -| `post.responses.200.schema.subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `post.responses.200.schema.submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | -| `post.responses.200.schema.supportEmail`? | `string` | - | -| `post.responses.200.schema.supportName`? | `string` | - | -| `post.responses.200.schema.supportPhone`? | `string` | - | -| `post.responses.200.schema.supportedFormLocales`? | `string`[] | - | -| `post.responses.200.schema.supportedLocales` | `string`[] | - | -| `post.responses.200.schema.supportedSubmissionLocales`? | `string`[] | - | -| `post.responses.200.schema.themePluginPath`? | `string` | `Default` default | -| `post.responses.200.schema.timeFormat`? | `string` | - | -| `post.responses.200.schema.type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `post.responses.200.schema.url`? | `string` | - | -| `post.responses.200.schema.urlPath` | `string` | - | -| `post.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `post.responses.400.schema` | { } | - | - -Defined in: [lib/swagger-types.ts:928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L928) +| Member | Type | Description | +| :--------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | Get an array of the journals (OJS), presses (OMP) or preprint servers (OPS) hosted on this site. | +| `get.parameters` | { `query`: { `count`?: `unknown`; `isEnabled`?: `string`; `offset`?: `number`; `searchPhrase`?: `string`; }; } | - | +| `get.parameters.query` | { `count`?: `unknown`; `isEnabled`?: `string`; `offset`?: `number`; `searchPhrase`?: `string`; } | - | +| `get.parameters.query.count`? | `unknown` | How many results to return in a single request. Max is `100`. | +| `get.parameters.query.isEnabled`? | `string` | Filter results by enabled/disabled contexts. Any truthy or falsey value will get enabled/disabled contexts. Leave this parameter out to get all contexts. | +| `get.parameters.query.offset`? | `number` | Offset the results returned. Use this to receive subsequent pages of requests. | +| `get.parameters.query.searchPhrase`? | `string` | Filter results by a search phrase matched against the `name`, `description`, `acronym`, or `abbreviation`. | +| `get.responses` | { `200`: { `schema`: { `items`?: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }[]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `items`?: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }[]; `itemsMax`?: `number`; }; } | List of contexts. | +| `get.responses.200.schema` | { `items`?: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }[]; `itemsMax`?: `number`; } | - | +| `get.responses.200.schema.items`? | { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }[] | - | +| `get.responses.200.schema.itemsMax`? | `number` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view disabled contexts. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `post` | `object` | Create a new journal (OJS), press (OMP) or preprint server (OPS). | +| `post.parameters` | {} | - | +| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; }; `400`: { `schema`: { }; }; } | - | +| `post.responses.200` | { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; } | Details of the context that was just added. | +| `post.responses.200.schema` | { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; } | - | +| `post.responses.200.schema._href`? | `string` | Format: uri | +| `post.responses.200.schema.about`? | `string` | - | +| `post.responses.200.schema.acronym`? | `string` | - | +| `post.responses.200.schema.additionalHomeContent`? | `string` | - | +| `post.responses.200.schema.agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `post.responses.200.schema.announcementsIntroduction`? | `string` | - | +| `post.responses.200.schema.authorGuidelines`? | `string` | - | +| `post.responses.200.schema.authorInformation`? | `string` | - | +| `post.responses.200.schema.automaticDoiDeposit`? | `boolean` | - | +| `post.responses.200.schema.citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `post.responses.200.schema.competingInterests`? | `string` | - | +| `post.responses.200.schema.contactAffiliation`? | `string` | - | +| `post.responses.200.schema.contactEmail`? | `string` | - | +| `post.responses.200.schema.contactName`? | `string` | - | +| `post.responses.200.schema.contactPhone`? | `string` | - | +| `post.responses.200.schema.copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | +| `post.responses.200.schema.copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | +| `post.responses.200.schema.copyrightHolderOther`? | `string` | - | +| `post.responses.200.schema.copyrightHolderType`? | `string` | - | +| `post.responses.200.schema.copyrightNotice`? | `string` | - | +| `post.responses.200.schema.country`? | `string` | - | +| `post.responses.200.schema.coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `post.responses.200.schema.currency`? | `string` | - | +| `post.responses.200.schema.customDoiSuffixType`? | `string` | - | +| `post.responses.200.schema.customHeaders`? | `string` | - | +| `post.responses.200.schema.dateFormatLong`? | `string` | - | +| `post.responses.200.schema.dateFormatShort`? | `string` | - | +| `post.responses.200.schema.datetimeFormatLong`? | `string` | - | +| `post.responses.200.schema.datetimeFormatShort`? | `string` | - | +| `post.responses.200.schema.defaultMetricType`? | `string` | - | +| `post.responses.200.schema.defaultReviewMode`? | `number` | `Default` 2 | +| `post.responses.200.schema.description`? | `string` | - | +| `post.responses.200.schema.disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | +| `post.responses.200.schema.disableSubmissions`? | `boolean` | - | +| `post.responses.200.schema.disableUserReg`? | `boolean` | - | +| `post.responses.200.schema.disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `post.responses.200.schema.doiPrefix`? | `string` | - | +| `post.responses.200.schema.doiPublicationSuffixPattern`? | `string` | - | +| `post.responses.200.schema.doiRepresentationSuffixPattern`? | `string` | - | +| `post.responses.200.schema.editorialTeam`? | `string` | - | +| `post.responses.200.schema.emailSignature`? | `string` | - | +| `post.responses.200.schema.enableAnnouncements`? | `boolean` | - | +| `post.responses.200.schema.enableClockss`? | `boolean` | - | +| `post.responses.200.schema.enableDois`? | `boolean` | - | +| `post.responses.200.schema.enableLockss`? | `boolean` | - | +| `post.responses.200.schema.enabled`? | `boolean` | - | +| `post.responses.200.schema.envelopeSender`? | `string` | - | +| `post.responses.200.schema.favicon`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `post.responses.200.schema.favicon.altText`? | `string` | - | +| `post.responses.200.schema.favicon.dateUploaded`? | `string` | - | +| `post.responses.200.schema.favicon.height`? | `number` | - | +| `post.responses.200.schema.favicon.name`? | `string` | - | +| `post.responses.200.schema.favicon.temporaryFileId`? | `number` | - | +| `post.responses.200.schema.favicon.uploadName`? | `string` | - | +| `post.responses.200.schema.favicon.width`? | `number` | - | +| `post.responses.200.schema.homepageImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `post.responses.200.schema.homepageImage.altText`? | `string` | - | +| `post.responses.200.schema.homepageImage.dateUploaded`? | `string` | - | +| `post.responses.200.schema.homepageImage.height`? | `number` | - | +| `post.responses.200.schema.homepageImage.name`? | `string` | - | +| `post.responses.200.schema.homepageImage.temporaryFileId`? | `number` | - | +| `post.responses.200.schema.homepageImage.uploadName`? | `string` | - | +| `post.responses.200.schema.homepageImage.width`? | `number` | - | +| `post.responses.200.schema.id`? | `number` | - | +| `post.responses.200.schema.itemsPerPage`? | `number` | `Default` 25 | +| `post.responses.200.schema.keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | +| `post.responses.200.schema.languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `post.responses.200.schema.librarianInformation`? | `string` | - | +| `post.responses.200.schema.licenseUrl`? | `string` | - | +| `post.responses.200.schema.mailingAddress`? | `string` | - | +| `post.responses.200.schema.name` | `string` | - | +| `post.responses.200.schema.notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | +| `post.responses.200.schema.numAnnouncementsHomepage`? | `number` | - | +| `post.responses.200.schema.numDaysBeforeInviteReminder`? | `number` | - | +| `post.responses.200.schema.numDaysBeforeSubmitReminder`? | `number` | - | +| `post.responses.200.schema.numPageLinks`? | `number` | `Default` 10 | +| `post.responses.200.schema.numWeeksPerResponse`? | `number` | `Default` 4 | +| `post.responses.200.schema.numWeeksPerReview`? | `number` | `Default` 4 | +| `post.responses.200.schema.openAccessPolicy`? | `string` | - | +| `post.responses.200.schema.pageFooter`? | `string` | - | +| `post.responses.200.schema.pageHeaderLogoImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `post.responses.200.schema.pageHeaderLogoImage.altText`? | `string` | - | +| `post.responses.200.schema.pageHeaderLogoImage.dateUploaded`? | `string` | - | +| `post.responses.200.schema.pageHeaderLogoImage.height`? | `number` | - | +| `post.responses.200.schema.pageHeaderLogoImage.name`? | `string` | - | +| `post.responses.200.schema.pageHeaderLogoImage.temporaryFileId`? | `number` | - | +| `post.responses.200.schema.pageHeaderLogoImage.uploadName`? | `string` | - | +| `post.responses.200.schema.pageHeaderLogoImage.width`? | `number` | - | +| `post.responses.200.schema.paymentsEnabled`? | `boolean` | - | +| `post.responses.200.schema.primaryLocale` | `string` | - | +| `post.responses.200.schema.privacyStatement`? | `string` | - | +| `post.responses.200.schema.rateReviewerOnQuality`? | `boolean` | - | +| `post.responses.200.schema.readerInformation`? | `string` | - | +| `post.responses.200.schema.registrationAgency`? | `string` | `Default` none | +| `post.responses.200.schema.restrictReviewerFileAccess`? | `boolean` | - | +| `post.responses.200.schema.restrictSiteAccess`? | `boolean` | - | +| `post.responses.200.schema.reviewGuidelines`? | `string` | - | +| `post.responses.200.schema.reviewerAccessKeysEnabled`? | `boolean` | - | +| `post.responses.200.schema.rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `post.responses.200.schema.searchDescription`? | `string` | - | +| `post.responses.200.schema.seq`? | `number` | - | +| `post.responses.200.schema.showEnsuringLink`? | `boolean` | - | +| `post.responses.200.schema.sidebar`? | `string`[] | - | +| `post.responses.200.schema.source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `post.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `post.responses.200.schema.styleSheet.dateUploaded`? | `string` | - | +| `post.responses.200.schema.styleSheet.name`? | `string` | - | +| `post.responses.200.schema.styleSheet.temporaryFileId`? | `number` | - | +| `post.responses.200.schema.styleSheet.uploadName`? | `string` | - | +| `post.responses.200.schema.subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `post.responses.200.schema.submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | +| `post.responses.200.schema.supportEmail`? | `string` | - | +| `post.responses.200.schema.supportName`? | `string` | - | +| `post.responses.200.schema.supportPhone`? | `string` | - | +| `post.responses.200.schema.supportedFormLocales`? | `string`[] | - | +| `post.responses.200.schema.supportedLocales` | `string`[] | - | +| `post.responses.200.schema.supportedSubmissionLocales`? | `string`[] | - | +| `post.responses.200.schema.themePluginPath`? | `string` | `Default` default | +| `post.responses.200.schema.timeFormat`? | `string` | - | +| `post.responses.200.schema.type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `post.responses.200.schema.url`? | `string` | - | +| `post.responses.200.schema.urlPath` | `string` | - | +| `post.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `post.responses.400.schema` | { } | - | + +Defined in: [lib/swagger-types.ts:928](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L928) ##### `/contexts/\{contextId}` @@ -4128,423 +4128,423 @@ Defined in: [lib/swagger-types.ts:928](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `delete` | `object` | Delete a journal (OJS), press (OMP) or preprint server (OPS). | -| `delete.parameters` | { `path`: { `contextId`: `number`; }; } | - | -| `delete.parameters.path` | { `contextId`: `number`; } | - | -| `delete.parameters.path.contextId` | `number` | Context ID | -| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `delete.responses.200` | { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; } | Details of the context that was just deleted. | -| `delete.responses.200.schema` | { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; } | - | -| `delete.responses.200.schema._href`? | `string` | Format: uri | -| `delete.responses.200.schema.about`? | `string` | - | -| `delete.responses.200.schema.acronym`? | `string` | - | -| `delete.responses.200.schema.additionalHomeContent`? | `string` | - | -| `delete.responses.200.schema.agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `delete.responses.200.schema.announcementsIntroduction`? | `string` | - | -| `delete.responses.200.schema.authorGuidelines`? | `string` | - | -| `delete.responses.200.schema.authorInformation`? | `string` | - | -| `delete.responses.200.schema.automaticDoiDeposit`? | `boolean` | - | -| `delete.responses.200.schema.citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `delete.responses.200.schema.competingInterests`? | `string` | - | -| `delete.responses.200.schema.contactAffiliation`? | `string` | - | -| `delete.responses.200.schema.contactEmail`? | `string` | - | -| `delete.responses.200.schema.contactName`? | `string` | - | -| `delete.responses.200.schema.contactPhone`? | `string` | - | -| `delete.responses.200.schema.copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | -| `delete.responses.200.schema.copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | -| `delete.responses.200.schema.copyrightHolderOther`? | `string` | - | -| `delete.responses.200.schema.copyrightHolderType`? | `string` | - | -| `delete.responses.200.schema.copyrightNotice`? | `string` | - | -| `delete.responses.200.schema.country`? | `string` | - | -| `delete.responses.200.schema.coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `delete.responses.200.schema.currency`? | `string` | - | -| `delete.responses.200.schema.customDoiSuffixType`? | `string` | - | -| `delete.responses.200.schema.customHeaders`? | `string` | - | -| `delete.responses.200.schema.dateFormatLong`? | `string` | - | -| `delete.responses.200.schema.dateFormatShort`? | `string` | - | -| `delete.responses.200.schema.datetimeFormatLong`? | `string` | - | -| `delete.responses.200.schema.datetimeFormatShort`? | `string` | - | -| `delete.responses.200.schema.defaultMetricType`? | `string` | - | -| `delete.responses.200.schema.defaultReviewMode`? | `number` | `Default` 2 | -| `delete.responses.200.schema.description`? | `string` | - | -| `delete.responses.200.schema.disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | -| `delete.responses.200.schema.disableSubmissions`? | `boolean` | - | -| `delete.responses.200.schema.disableUserReg`? | `boolean` | - | -| `delete.responses.200.schema.disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `delete.responses.200.schema.doiPrefix`? | `string` | - | -| `delete.responses.200.schema.doiPublicationSuffixPattern`? | `string` | - | -| `delete.responses.200.schema.doiRepresentationSuffixPattern`? | `string` | - | -| `delete.responses.200.schema.editorialTeam`? | `string` | - | -| `delete.responses.200.schema.emailSignature`? | `string` | - | -| `delete.responses.200.schema.enableAnnouncements`? | `boolean` | - | -| `delete.responses.200.schema.enableClockss`? | `boolean` | - | -| `delete.responses.200.schema.enableDois`? | `boolean` | - | -| `delete.responses.200.schema.enableLockss`? | `boolean` | - | -| `delete.responses.200.schema.enabled`? | `boolean` | - | -| `delete.responses.200.schema.envelopeSender`? | `string` | - | -| `delete.responses.200.schema.favicon`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `delete.responses.200.schema.favicon.altText`? | `string` | - | -| `delete.responses.200.schema.favicon.dateUploaded`? | `string` | - | -| `delete.responses.200.schema.favicon.height`? | `number` | - | -| `delete.responses.200.schema.favicon.name`? | `string` | - | -| `delete.responses.200.schema.favicon.temporaryFileId`? | `number` | - | -| `delete.responses.200.schema.favicon.uploadName`? | `string` | - | -| `delete.responses.200.schema.favicon.width`? | `number` | - | -| `delete.responses.200.schema.homepageImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `delete.responses.200.schema.homepageImage.altText`? | `string` | - | -| `delete.responses.200.schema.homepageImage.dateUploaded`? | `string` | - | -| `delete.responses.200.schema.homepageImage.height`? | `number` | - | -| `delete.responses.200.schema.homepageImage.name`? | `string` | - | -| `delete.responses.200.schema.homepageImage.temporaryFileId`? | `number` | - | -| `delete.responses.200.schema.homepageImage.uploadName`? | `string` | - | -| `delete.responses.200.schema.homepageImage.width`? | `number` | - | -| `delete.responses.200.schema.id`? | `number` | - | -| `delete.responses.200.schema.itemsPerPage`? | `number` | `Default` 25 | -| `delete.responses.200.schema.keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | -| `delete.responses.200.schema.languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `delete.responses.200.schema.librarianInformation`? | `string` | - | -| `delete.responses.200.schema.licenseUrl`? | `string` | - | -| `delete.responses.200.schema.mailingAddress`? | `string` | - | -| `delete.responses.200.schema.name` | `string` | - | -| `delete.responses.200.schema.notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | -| `delete.responses.200.schema.numAnnouncementsHomepage`? | `number` | - | -| `delete.responses.200.schema.numDaysBeforeInviteReminder`? | `number` | - | -| `delete.responses.200.schema.numDaysBeforeSubmitReminder`? | `number` | - | -| `delete.responses.200.schema.numPageLinks`? | `number` | `Default` 10 | -| `delete.responses.200.schema.numWeeksPerResponse`? | `number` | `Default` 4 | -| `delete.responses.200.schema.numWeeksPerReview`? | `number` | `Default` 4 | -| `delete.responses.200.schema.openAccessPolicy`? | `string` | - | -| `delete.responses.200.schema.pageFooter`? | `string` | - | -| `delete.responses.200.schema.pageHeaderLogoImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `delete.responses.200.schema.pageHeaderLogoImage.altText`? | `string` | - | -| `delete.responses.200.schema.pageHeaderLogoImage.dateUploaded`? | `string` | - | -| `delete.responses.200.schema.pageHeaderLogoImage.height`? | `number` | - | -| `delete.responses.200.schema.pageHeaderLogoImage.name`? | `string` | - | -| `delete.responses.200.schema.pageHeaderLogoImage.temporaryFileId`? | `number` | - | -| `delete.responses.200.schema.pageHeaderLogoImage.uploadName`? | `string` | - | -| `delete.responses.200.schema.pageHeaderLogoImage.width`? | `number` | - | -| `delete.responses.200.schema.paymentsEnabled`? | `boolean` | - | -| `delete.responses.200.schema.primaryLocale` | `string` | - | -| `delete.responses.200.schema.privacyStatement`? | `string` | - | -| `delete.responses.200.schema.rateReviewerOnQuality`? | `boolean` | - | -| `delete.responses.200.schema.readerInformation`? | `string` | - | -| `delete.responses.200.schema.registrationAgency`? | `string` | `Default` none | -| `delete.responses.200.schema.restrictReviewerFileAccess`? | `boolean` | - | -| `delete.responses.200.schema.restrictSiteAccess`? | `boolean` | - | -| `delete.responses.200.schema.reviewGuidelines`? | `string` | - | -| `delete.responses.200.schema.reviewerAccessKeysEnabled`? | `boolean` | - | -| `delete.responses.200.schema.rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `delete.responses.200.schema.searchDescription`? | `string` | - | -| `delete.responses.200.schema.seq`? | `number` | - | -| `delete.responses.200.schema.showEnsuringLink`? | `boolean` | - | -| `delete.responses.200.schema.sidebar`? | `string`[] | - | -| `delete.responses.200.schema.source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `delete.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `delete.responses.200.schema.styleSheet.dateUploaded`? | `string` | - | -| `delete.responses.200.schema.styleSheet.name`? | `string` | - | -| `delete.responses.200.schema.styleSheet.temporaryFileId`? | `number` | - | -| `delete.responses.200.schema.styleSheet.uploadName`? | `string` | - | -| `delete.responses.200.schema.subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `delete.responses.200.schema.submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | -| `delete.responses.200.schema.supportEmail`? | `string` | - | -| `delete.responses.200.schema.supportName`? | `string` | - | -| `delete.responses.200.schema.supportPhone`? | `string` | - | -| `delete.responses.200.schema.supportedFormLocales`? | `string`[] | - | -| `delete.responses.200.schema.supportedLocales` | `string`[] | - | -| `delete.responses.200.schema.supportedSubmissionLocales`? | `string`[] | - | -| `delete.responses.200.schema.themePluginPath`? | `string` | `Default` default | -| `delete.responses.200.schema.timeFormat`? | `string` | - | -| `delete.responses.200.schema.type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `delete.responses.200.schema.url`? | `string` | - | -| `delete.responses.200.schema.urlPath` | `string` | - | -| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to delete this context. | -| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.403.schema.error`? | `string` | - | -| `delete.responses.403.schema.errorMessage`? | `string` | - | -| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested context could not be found. | -| `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.404.schema.error`? | `string` | - | -| `delete.responses.404.schema.errorMessage`? | `string` | - | -| `get` | `object` | - | -| `get.parameters` | { `path`: { `contextId`: `number`; }; } | - | -| `get.parameters.path` | { `contextId`: `number`; } | - | -| `get.parameters.path.contextId` | `number` | Context ID | -| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; } | Context details. Some details may be withheld if you are not a site admin or manager of that context. | -| `get.responses.200.schema` | { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; } | - | -| `get.responses.200.schema._href`? | `string` | Format: uri | -| `get.responses.200.schema.about`? | `string` | - | -| `get.responses.200.schema.acronym`? | `string` | - | -| `get.responses.200.schema.additionalHomeContent`? | `string` | - | -| `get.responses.200.schema.agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `get.responses.200.schema.announcementsIntroduction`? | `string` | - | -| `get.responses.200.schema.authorGuidelines`? | `string` | - | -| `get.responses.200.schema.authorInformation`? | `string` | - | -| `get.responses.200.schema.automaticDoiDeposit`? | `boolean` | - | -| `get.responses.200.schema.citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `get.responses.200.schema.competingInterests`? | `string` | - | -| `get.responses.200.schema.contactAffiliation`? | `string` | - | -| `get.responses.200.schema.contactEmail`? | `string` | - | -| `get.responses.200.schema.contactName`? | `string` | - | -| `get.responses.200.schema.contactPhone`? | `string` | - | -| `get.responses.200.schema.copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | -| `get.responses.200.schema.copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | -| `get.responses.200.schema.copyrightHolderOther`? | `string` | - | -| `get.responses.200.schema.copyrightHolderType`? | `string` | - | -| `get.responses.200.schema.copyrightNotice`? | `string` | - | -| `get.responses.200.schema.country`? | `string` | - | -| `get.responses.200.schema.coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `get.responses.200.schema.currency`? | `string` | - | -| `get.responses.200.schema.customDoiSuffixType`? | `string` | - | -| `get.responses.200.schema.customHeaders`? | `string` | - | -| `get.responses.200.schema.dateFormatLong`? | `string` | - | -| `get.responses.200.schema.dateFormatShort`? | `string` | - | -| `get.responses.200.schema.datetimeFormatLong`? | `string` | - | -| `get.responses.200.schema.datetimeFormatShort`? | `string` | - | -| `get.responses.200.schema.defaultMetricType`? | `string` | - | -| `get.responses.200.schema.defaultReviewMode`? | `number` | `Default` 2 | -| `get.responses.200.schema.description`? | `string` | - | -| `get.responses.200.schema.disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | -| `get.responses.200.schema.disableSubmissions`? | `boolean` | - | -| `get.responses.200.schema.disableUserReg`? | `boolean` | - | -| `get.responses.200.schema.disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `get.responses.200.schema.doiPrefix`? | `string` | - | -| `get.responses.200.schema.doiPublicationSuffixPattern`? | `string` | - | -| `get.responses.200.schema.doiRepresentationSuffixPattern`? | `string` | - | -| `get.responses.200.schema.editorialTeam`? | `string` | - | -| `get.responses.200.schema.emailSignature`? | `string` | - | -| `get.responses.200.schema.enableAnnouncements`? | `boolean` | - | -| `get.responses.200.schema.enableClockss`? | `boolean` | - | -| `get.responses.200.schema.enableDois`? | `boolean` | - | -| `get.responses.200.schema.enableLockss`? | `boolean` | - | -| `get.responses.200.schema.enabled`? | `boolean` | - | -| `get.responses.200.schema.envelopeSender`? | `string` | - | -| `get.responses.200.schema.favicon`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `get.responses.200.schema.favicon.altText`? | `string` | - | -| `get.responses.200.schema.favicon.dateUploaded`? | `string` | - | -| `get.responses.200.schema.favicon.height`? | `number` | - | -| `get.responses.200.schema.favicon.name`? | `string` | - | -| `get.responses.200.schema.favicon.temporaryFileId`? | `number` | - | -| `get.responses.200.schema.favicon.uploadName`? | `string` | - | -| `get.responses.200.schema.favicon.width`? | `number` | - | -| `get.responses.200.schema.homepageImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `get.responses.200.schema.homepageImage.altText`? | `string` | - | -| `get.responses.200.schema.homepageImage.dateUploaded`? | `string` | - | -| `get.responses.200.schema.homepageImage.height`? | `number` | - | -| `get.responses.200.schema.homepageImage.name`? | `string` | - | -| `get.responses.200.schema.homepageImage.temporaryFileId`? | `number` | - | -| `get.responses.200.schema.homepageImage.uploadName`? | `string` | - | -| `get.responses.200.schema.homepageImage.width`? | `number` | - | -| `get.responses.200.schema.id`? | `number` | - | -| `get.responses.200.schema.itemsPerPage`? | `number` | `Default` 25 | -| `get.responses.200.schema.keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | -| `get.responses.200.schema.languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `get.responses.200.schema.librarianInformation`? | `string` | - | -| `get.responses.200.schema.licenseUrl`? | `string` | - | -| `get.responses.200.schema.mailingAddress`? | `string` | - | -| `get.responses.200.schema.name` | `string` | - | -| `get.responses.200.schema.notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | -| `get.responses.200.schema.numAnnouncementsHomepage`? | `number` | - | -| `get.responses.200.schema.numDaysBeforeInviteReminder`? | `number` | - | -| `get.responses.200.schema.numDaysBeforeSubmitReminder`? | `number` | - | -| `get.responses.200.schema.numPageLinks`? | `number` | `Default` 10 | -| `get.responses.200.schema.numWeeksPerResponse`? | `number` | `Default` 4 | -| `get.responses.200.schema.numWeeksPerReview`? | `number` | `Default` 4 | -| `get.responses.200.schema.openAccessPolicy`? | `string` | - | -| `get.responses.200.schema.pageFooter`? | `string` | - | -| `get.responses.200.schema.pageHeaderLogoImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `get.responses.200.schema.pageHeaderLogoImage.altText`? | `string` | - | -| `get.responses.200.schema.pageHeaderLogoImage.dateUploaded`? | `string` | - | -| `get.responses.200.schema.pageHeaderLogoImage.height`? | `number` | - | -| `get.responses.200.schema.pageHeaderLogoImage.name`? | `string` | - | -| `get.responses.200.schema.pageHeaderLogoImage.temporaryFileId`? | `number` | - | -| `get.responses.200.schema.pageHeaderLogoImage.uploadName`? | `string` | - | -| `get.responses.200.schema.pageHeaderLogoImage.width`? | `number` | - | -| `get.responses.200.schema.paymentsEnabled`? | `boolean` | - | -| `get.responses.200.schema.primaryLocale` | `string` | - | -| `get.responses.200.schema.privacyStatement`? | `string` | - | -| `get.responses.200.schema.rateReviewerOnQuality`? | `boolean` | - | -| `get.responses.200.schema.readerInformation`? | `string` | - | -| `get.responses.200.schema.registrationAgency`? | `string` | `Default` none | -| `get.responses.200.schema.restrictReviewerFileAccess`? | `boolean` | - | -| `get.responses.200.schema.restrictSiteAccess`? | `boolean` | - | -| `get.responses.200.schema.reviewGuidelines`? | `string` | - | -| `get.responses.200.schema.reviewerAccessKeysEnabled`? | `boolean` | - | -| `get.responses.200.schema.rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `get.responses.200.schema.searchDescription`? | `string` | - | -| `get.responses.200.schema.seq`? | `number` | - | -| `get.responses.200.schema.showEnsuringLink`? | `boolean` | - | -| `get.responses.200.schema.sidebar`? | `string`[] | - | -| `get.responses.200.schema.source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `get.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `get.responses.200.schema.styleSheet.dateUploaded`? | `string` | - | -| `get.responses.200.schema.styleSheet.name`? | `string` | - | -| `get.responses.200.schema.styleSheet.temporaryFileId`? | `number` | - | -| `get.responses.200.schema.styleSheet.uploadName`? | `string` | - | -| `get.responses.200.schema.subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `get.responses.200.schema.submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | -| `get.responses.200.schema.supportEmail`? | `string` | - | -| `get.responses.200.schema.supportName`? | `string` | - | -| `get.responses.200.schema.supportPhone`? | `string` | - | -| `get.responses.200.schema.supportedFormLocales`? | `string`[] | - | -| `get.responses.200.schema.supportedLocales` | `string`[] | - | -| `get.responses.200.schema.supportedSubmissionLocales`? | `string`[] | - | -| `get.responses.200.schema.themePluginPath`? | `string` | `Default` default | -| `get.responses.200.schema.timeFormat`? | `string` | - | -| `get.responses.200.schema.type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `get.responses.200.schema.url`? | `string` | - | -| `get.responses.200.schema.urlPath` | `string` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view this context. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested context could not be found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | -| `put` | `object` | Edit a journal (OJS), press (OMP) or preprint server (OPS). | -| `put.parameters` | { `path`: { `contextId`: `number`; }; } | - | -| `put.parameters.path` | { `contextId`: `number`; } | - | -| `put.parameters.path.contextId` | `number` | Context ID | -| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `put.responses.200` | { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; } | The context that was just edited with the current values after the edit has occurred. | -| `put.responses.200.schema` | { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; } | - | -| `put.responses.200.schema._href`? | `string` | Format: uri | -| `put.responses.200.schema.about`? | `string` | - | -| `put.responses.200.schema.acronym`? | `string` | - | -| `put.responses.200.schema.additionalHomeContent`? | `string` | - | -| `put.responses.200.schema.agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `put.responses.200.schema.announcementsIntroduction`? | `string` | - | -| `put.responses.200.schema.authorGuidelines`? | `string` | - | -| `put.responses.200.schema.authorInformation`? | `string` | - | -| `put.responses.200.schema.automaticDoiDeposit`? | `boolean` | - | -| `put.responses.200.schema.citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `put.responses.200.schema.competingInterests`? | `string` | - | -| `put.responses.200.schema.contactAffiliation`? | `string` | - | -| `put.responses.200.schema.contactEmail`? | `string` | - | -| `put.responses.200.schema.contactName`? | `string` | - | -| `put.responses.200.schema.contactPhone`? | `string` | - | -| `put.responses.200.schema.copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | -| `put.responses.200.schema.copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | -| `put.responses.200.schema.copyrightHolderOther`? | `string` | - | -| `put.responses.200.schema.copyrightHolderType`? | `string` | - | -| `put.responses.200.schema.copyrightNotice`? | `string` | - | -| `put.responses.200.schema.country`? | `string` | - | -| `put.responses.200.schema.coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `put.responses.200.schema.currency`? | `string` | - | -| `put.responses.200.schema.customDoiSuffixType`? | `string` | - | -| `put.responses.200.schema.customHeaders`? | `string` | - | -| `put.responses.200.schema.dateFormatLong`? | `string` | - | -| `put.responses.200.schema.dateFormatShort`? | `string` | - | -| `put.responses.200.schema.datetimeFormatLong`? | `string` | - | -| `put.responses.200.schema.datetimeFormatShort`? | `string` | - | -| `put.responses.200.schema.defaultMetricType`? | `string` | - | -| `put.responses.200.schema.defaultReviewMode`? | `number` | `Default` 2 | -| `put.responses.200.schema.description`? | `string` | - | -| `put.responses.200.schema.disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | -| `put.responses.200.schema.disableSubmissions`? | `boolean` | - | -| `put.responses.200.schema.disableUserReg`? | `boolean` | - | -| `put.responses.200.schema.disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `put.responses.200.schema.doiPrefix`? | `string` | - | -| `put.responses.200.schema.doiPublicationSuffixPattern`? | `string` | - | -| `put.responses.200.schema.doiRepresentationSuffixPattern`? | `string` | - | -| `put.responses.200.schema.editorialTeam`? | `string` | - | -| `put.responses.200.schema.emailSignature`? | `string` | - | -| `put.responses.200.schema.enableAnnouncements`? | `boolean` | - | -| `put.responses.200.schema.enableClockss`? | `boolean` | - | -| `put.responses.200.schema.enableDois`? | `boolean` | - | -| `put.responses.200.schema.enableLockss`? | `boolean` | - | -| `put.responses.200.schema.enabled`? | `boolean` | - | -| `put.responses.200.schema.envelopeSender`? | `string` | - | -| `put.responses.200.schema.favicon`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `put.responses.200.schema.favicon.altText`? | `string` | - | -| `put.responses.200.schema.favicon.dateUploaded`? | `string` | - | -| `put.responses.200.schema.favicon.height`? | `number` | - | -| `put.responses.200.schema.favicon.name`? | `string` | - | -| `put.responses.200.schema.favicon.temporaryFileId`? | `number` | - | -| `put.responses.200.schema.favicon.uploadName`? | `string` | - | -| `put.responses.200.schema.favicon.width`? | `number` | - | -| `put.responses.200.schema.homepageImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `put.responses.200.schema.homepageImage.altText`? | `string` | - | -| `put.responses.200.schema.homepageImage.dateUploaded`? | `string` | - | -| `put.responses.200.schema.homepageImage.height`? | `number` | - | -| `put.responses.200.schema.homepageImage.name`? | `string` | - | -| `put.responses.200.schema.homepageImage.temporaryFileId`? | `number` | - | -| `put.responses.200.schema.homepageImage.uploadName`? | `string` | - | -| `put.responses.200.schema.homepageImage.width`? | `number` | - | -| `put.responses.200.schema.id`? | `number` | - | -| `put.responses.200.schema.itemsPerPage`? | `number` | `Default` 25 | -| `put.responses.200.schema.keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | -| `put.responses.200.schema.languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `put.responses.200.schema.librarianInformation`? | `string` | - | -| `put.responses.200.schema.licenseUrl`? | `string` | - | -| `put.responses.200.schema.mailingAddress`? | `string` | - | -| `put.responses.200.schema.name` | `string` | - | -| `put.responses.200.schema.notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | -| `put.responses.200.schema.numAnnouncementsHomepage`? | `number` | - | -| `put.responses.200.schema.numDaysBeforeInviteReminder`? | `number` | - | -| `put.responses.200.schema.numDaysBeforeSubmitReminder`? | `number` | - | -| `put.responses.200.schema.numPageLinks`? | `number` | `Default` 10 | -| `put.responses.200.schema.numWeeksPerResponse`? | `number` | `Default` 4 | -| `put.responses.200.schema.numWeeksPerReview`? | `number` | `Default` 4 | -| `put.responses.200.schema.openAccessPolicy`? | `string` | - | -| `put.responses.200.schema.pageFooter`? | `string` | - | -| `put.responses.200.schema.pageHeaderLogoImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | -| `put.responses.200.schema.pageHeaderLogoImage.altText`? | `string` | - | -| `put.responses.200.schema.pageHeaderLogoImage.dateUploaded`? | `string` | - | -| `put.responses.200.schema.pageHeaderLogoImage.height`? | `number` | - | -| `put.responses.200.schema.pageHeaderLogoImage.name`? | `string` | - | -| `put.responses.200.schema.pageHeaderLogoImage.temporaryFileId`? | `number` | - | -| `put.responses.200.schema.pageHeaderLogoImage.uploadName`? | `string` | - | -| `put.responses.200.schema.pageHeaderLogoImage.width`? | `number` | - | -| `put.responses.200.schema.paymentsEnabled`? | `boolean` | - | -| `put.responses.200.schema.primaryLocale` | `string` | - | -| `put.responses.200.schema.privacyStatement`? | `string` | - | -| `put.responses.200.schema.rateReviewerOnQuality`? | `boolean` | - | -| `put.responses.200.schema.readerInformation`? | `string` | - | -| `put.responses.200.schema.registrationAgency`? | `string` | `Default` none | -| `put.responses.200.schema.restrictReviewerFileAccess`? | `boolean` | - | -| `put.responses.200.schema.restrictSiteAccess`? | `boolean` | - | -| `put.responses.200.schema.reviewGuidelines`? | `string` | - | -| `put.responses.200.schema.reviewerAccessKeysEnabled`? | `boolean` | - | -| `put.responses.200.schema.rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `put.responses.200.schema.searchDescription`? | `string` | - | -| `put.responses.200.schema.seq`? | `number` | - | -| `put.responses.200.schema.showEnsuringLink`? | `boolean` | - | -| `put.responses.200.schema.sidebar`? | `string`[] | - | -| `put.responses.200.schema.source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `put.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `put.responses.200.schema.styleSheet.dateUploaded`? | `string` | - | -| `put.responses.200.schema.styleSheet.name`? | `string` | - | -| `put.responses.200.schema.styleSheet.temporaryFileId`? | `number` | - | -| `put.responses.200.schema.styleSheet.uploadName`? | `string` | - | -| `put.responses.200.schema.subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `put.responses.200.schema.submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | -| `put.responses.200.schema.supportEmail`? | `string` | - | -| `put.responses.200.schema.supportName`? | `string` | - | -| `put.responses.200.schema.supportPhone`? | `string` | - | -| `put.responses.200.schema.supportedFormLocales`? | `string`[] | - | -| `put.responses.200.schema.supportedLocales` | `string`[] | - | -| `put.responses.200.schema.supportedSubmissionLocales`? | `string`[] | - | -| `put.responses.200.schema.themePluginPath`? | `string` | `Default` default | -| `put.responses.200.schema.timeFormat`? | `string` | - | -| `put.responses.200.schema.type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | -| `put.responses.200.schema.url`? | `string` | - | -| `put.responses.200.schema.urlPath` | `string` | - | -| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `put.responses.400.schema` | { } | - | -| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | There are two possible conditions that will result in a `403` response. 1. You do not have permission to edit this context. 2. You submitted changes for one context from the API endpoint of another context. To edit a context, you must make a request to that context's API endpoint or the site-wide API endpoint. | -| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.403.schema.error`? | `string` | - | -| `put.responses.403.schema.errorMessage`? | `string` | - | -| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested context could not be found. | -| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.404.schema.error`? | `string` | - | -| `put.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:972](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L972) +| Member | Type | Description | +| :----------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `delete` | `object` | Delete a journal (OJS), press (OMP) or preprint server (OPS). | +| `delete.parameters` | { `path`: { `contextId`: `number`; }; } | - | +| `delete.parameters.path` | { `contextId`: `number`; } | - | +| `delete.parameters.path.contextId` | `number` | Context ID | +| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `delete.responses.200` | { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; } | Details of the context that was just deleted. | +| `delete.responses.200.schema` | { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; } | - | +| `delete.responses.200.schema._href`? | `string` | Format: uri | +| `delete.responses.200.schema.about`? | `string` | - | +| `delete.responses.200.schema.acronym`? | `string` | - | +| `delete.responses.200.schema.additionalHomeContent`? | `string` | - | +| `delete.responses.200.schema.agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `delete.responses.200.schema.announcementsIntroduction`? | `string` | - | +| `delete.responses.200.schema.authorGuidelines`? | `string` | - | +| `delete.responses.200.schema.authorInformation`? | `string` | - | +| `delete.responses.200.schema.automaticDoiDeposit`? | `boolean` | - | +| `delete.responses.200.schema.citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `delete.responses.200.schema.competingInterests`? | `string` | - | +| `delete.responses.200.schema.contactAffiliation`? | `string` | - | +| `delete.responses.200.schema.contactEmail`? | `string` | - | +| `delete.responses.200.schema.contactName`? | `string` | - | +| `delete.responses.200.schema.contactPhone`? | `string` | - | +| `delete.responses.200.schema.copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | +| `delete.responses.200.schema.copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | +| `delete.responses.200.schema.copyrightHolderOther`? | `string` | - | +| `delete.responses.200.schema.copyrightHolderType`? | `string` | - | +| `delete.responses.200.schema.copyrightNotice`? | `string` | - | +| `delete.responses.200.schema.country`? | `string` | - | +| `delete.responses.200.schema.coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `delete.responses.200.schema.currency`? | `string` | - | +| `delete.responses.200.schema.customDoiSuffixType`? | `string` | - | +| `delete.responses.200.schema.customHeaders`? | `string` | - | +| `delete.responses.200.schema.dateFormatLong`? | `string` | - | +| `delete.responses.200.schema.dateFormatShort`? | `string` | - | +| `delete.responses.200.schema.datetimeFormatLong`? | `string` | - | +| `delete.responses.200.schema.datetimeFormatShort`? | `string` | - | +| `delete.responses.200.schema.defaultMetricType`? | `string` | - | +| `delete.responses.200.schema.defaultReviewMode`? | `number` | `Default` 2 | +| `delete.responses.200.schema.description`? | `string` | - | +| `delete.responses.200.schema.disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | +| `delete.responses.200.schema.disableSubmissions`? | `boolean` | - | +| `delete.responses.200.schema.disableUserReg`? | `boolean` | - | +| `delete.responses.200.schema.disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `delete.responses.200.schema.doiPrefix`? | `string` | - | +| `delete.responses.200.schema.doiPublicationSuffixPattern`? | `string` | - | +| `delete.responses.200.schema.doiRepresentationSuffixPattern`? | `string` | - | +| `delete.responses.200.schema.editorialTeam`? | `string` | - | +| `delete.responses.200.schema.emailSignature`? | `string` | - | +| `delete.responses.200.schema.enableAnnouncements`? | `boolean` | - | +| `delete.responses.200.schema.enableClockss`? | `boolean` | - | +| `delete.responses.200.schema.enableDois`? | `boolean` | - | +| `delete.responses.200.schema.enableLockss`? | `boolean` | - | +| `delete.responses.200.schema.enabled`? | `boolean` | - | +| `delete.responses.200.schema.envelopeSender`? | `string` | - | +| `delete.responses.200.schema.favicon`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `delete.responses.200.schema.favicon.altText`? | `string` | - | +| `delete.responses.200.schema.favicon.dateUploaded`? | `string` | - | +| `delete.responses.200.schema.favicon.height`? | `number` | - | +| `delete.responses.200.schema.favicon.name`? | `string` | - | +| `delete.responses.200.schema.favicon.temporaryFileId`? | `number` | - | +| `delete.responses.200.schema.favicon.uploadName`? | `string` | - | +| `delete.responses.200.schema.favicon.width`? | `number` | - | +| `delete.responses.200.schema.homepageImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `delete.responses.200.schema.homepageImage.altText`? | `string` | - | +| `delete.responses.200.schema.homepageImage.dateUploaded`? | `string` | - | +| `delete.responses.200.schema.homepageImage.height`? | `number` | - | +| `delete.responses.200.schema.homepageImage.name`? | `string` | - | +| `delete.responses.200.schema.homepageImage.temporaryFileId`? | `number` | - | +| `delete.responses.200.schema.homepageImage.uploadName`? | `string` | - | +| `delete.responses.200.schema.homepageImage.width`? | `number` | - | +| `delete.responses.200.schema.id`? | `number` | - | +| `delete.responses.200.schema.itemsPerPage`? | `number` | `Default` 25 | +| `delete.responses.200.schema.keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | +| `delete.responses.200.schema.languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `delete.responses.200.schema.librarianInformation`? | `string` | - | +| `delete.responses.200.schema.licenseUrl`? | `string` | - | +| `delete.responses.200.schema.mailingAddress`? | `string` | - | +| `delete.responses.200.schema.name` | `string` | - | +| `delete.responses.200.schema.notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | +| `delete.responses.200.schema.numAnnouncementsHomepage`? | `number` | - | +| `delete.responses.200.schema.numDaysBeforeInviteReminder`? | `number` | - | +| `delete.responses.200.schema.numDaysBeforeSubmitReminder`? | `number` | - | +| `delete.responses.200.schema.numPageLinks`? | `number` | `Default` 10 | +| `delete.responses.200.schema.numWeeksPerResponse`? | `number` | `Default` 4 | +| `delete.responses.200.schema.numWeeksPerReview`? | `number` | `Default` 4 | +| `delete.responses.200.schema.openAccessPolicy`? | `string` | - | +| `delete.responses.200.schema.pageFooter`? | `string` | - | +| `delete.responses.200.schema.pageHeaderLogoImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `delete.responses.200.schema.pageHeaderLogoImage.altText`? | `string` | - | +| `delete.responses.200.schema.pageHeaderLogoImage.dateUploaded`? | `string` | - | +| `delete.responses.200.schema.pageHeaderLogoImage.height`? | `number` | - | +| `delete.responses.200.schema.pageHeaderLogoImage.name`? | `string` | - | +| `delete.responses.200.schema.pageHeaderLogoImage.temporaryFileId`? | `number` | - | +| `delete.responses.200.schema.pageHeaderLogoImage.uploadName`? | `string` | - | +| `delete.responses.200.schema.pageHeaderLogoImage.width`? | `number` | - | +| `delete.responses.200.schema.paymentsEnabled`? | `boolean` | - | +| `delete.responses.200.schema.primaryLocale` | `string` | - | +| `delete.responses.200.schema.privacyStatement`? | `string` | - | +| `delete.responses.200.schema.rateReviewerOnQuality`? | `boolean` | - | +| `delete.responses.200.schema.readerInformation`? | `string` | - | +| `delete.responses.200.schema.registrationAgency`? | `string` | `Default` none | +| `delete.responses.200.schema.restrictReviewerFileAccess`? | `boolean` | - | +| `delete.responses.200.schema.restrictSiteAccess`? | `boolean` | - | +| `delete.responses.200.schema.reviewGuidelines`? | `string` | - | +| `delete.responses.200.schema.reviewerAccessKeysEnabled`? | `boolean` | - | +| `delete.responses.200.schema.rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `delete.responses.200.schema.searchDescription`? | `string` | - | +| `delete.responses.200.schema.seq`? | `number` | - | +| `delete.responses.200.schema.showEnsuringLink`? | `boolean` | - | +| `delete.responses.200.schema.sidebar`? | `string`[] | - | +| `delete.responses.200.schema.source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `delete.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `delete.responses.200.schema.styleSheet.dateUploaded`? | `string` | - | +| `delete.responses.200.schema.styleSheet.name`? | `string` | - | +| `delete.responses.200.schema.styleSheet.temporaryFileId`? | `number` | - | +| `delete.responses.200.schema.styleSheet.uploadName`? | `string` | - | +| `delete.responses.200.schema.subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `delete.responses.200.schema.submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | +| `delete.responses.200.schema.supportEmail`? | `string` | - | +| `delete.responses.200.schema.supportName`? | `string` | - | +| `delete.responses.200.schema.supportPhone`? | `string` | - | +| `delete.responses.200.schema.supportedFormLocales`? | `string`[] | - | +| `delete.responses.200.schema.supportedLocales` | `string`[] | - | +| `delete.responses.200.schema.supportedSubmissionLocales`? | `string`[] | - | +| `delete.responses.200.schema.themePluginPath`? | `string` | `Default` default | +| `delete.responses.200.schema.timeFormat`? | `string` | - | +| `delete.responses.200.schema.type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `delete.responses.200.schema.url`? | `string` | - | +| `delete.responses.200.schema.urlPath` | `string` | - | +| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to delete this context. | +| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.403.schema.error`? | `string` | - | +| `delete.responses.403.schema.errorMessage`? | `string` | - | +| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested context could not be found. | +| `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.404.schema.error`? | `string` | - | +| `delete.responses.404.schema.errorMessage`? | `string` | - | +| `get` | `object` | - | +| `get.parameters` | { `path`: { `contextId`: `number`; }; } | - | +| `get.parameters.path` | { `contextId`: `number`; } | - | +| `get.parameters.path.contextId` | `number` | Context ID | +| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; } | Context details. Some details may be withheld if you are not a site admin or manager of that context. | +| `get.responses.200.schema` | { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; } | - | +| `get.responses.200.schema._href`? | `string` | Format: uri | +| `get.responses.200.schema.about`? | `string` | - | +| `get.responses.200.schema.acronym`? | `string` | - | +| `get.responses.200.schema.additionalHomeContent`? | `string` | - | +| `get.responses.200.schema.agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `get.responses.200.schema.announcementsIntroduction`? | `string` | - | +| `get.responses.200.schema.authorGuidelines`? | `string` | - | +| `get.responses.200.schema.authorInformation`? | `string` | - | +| `get.responses.200.schema.automaticDoiDeposit`? | `boolean` | - | +| `get.responses.200.schema.citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `get.responses.200.schema.competingInterests`? | `string` | - | +| `get.responses.200.schema.contactAffiliation`? | `string` | - | +| `get.responses.200.schema.contactEmail`? | `string` | - | +| `get.responses.200.schema.contactName`? | `string` | - | +| `get.responses.200.schema.contactPhone`? | `string` | - | +| `get.responses.200.schema.copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | +| `get.responses.200.schema.copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | +| `get.responses.200.schema.copyrightHolderOther`? | `string` | - | +| `get.responses.200.schema.copyrightHolderType`? | `string` | - | +| `get.responses.200.schema.copyrightNotice`? | `string` | - | +| `get.responses.200.schema.country`? | `string` | - | +| `get.responses.200.schema.coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `get.responses.200.schema.currency`? | `string` | - | +| `get.responses.200.schema.customDoiSuffixType`? | `string` | - | +| `get.responses.200.schema.customHeaders`? | `string` | - | +| `get.responses.200.schema.dateFormatLong`? | `string` | - | +| `get.responses.200.schema.dateFormatShort`? | `string` | - | +| `get.responses.200.schema.datetimeFormatLong`? | `string` | - | +| `get.responses.200.schema.datetimeFormatShort`? | `string` | - | +| `get.responses.200.schema.defaultMetricType`? | `string` | - | +| `get.responses.200.schema.defaultReviewMode`? | `number` | `Default` 2 | +| `get.responses.200.schema.description`? | `string` | - | +| `get.responses.200.schema.disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | +| `get.responses.200.schema.disableSubmissions`? | `boolean` | - | +| `get.responses.200.schema.disableUserReg`? | `boolean` | - | +| `get.responses.200.schema.disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `get.responses.200.schema.doiPrefix`? | `string` | - | +| `get.responses.200.schema.doiPublicationSuffixPattern`? | `string` | - | +| `get.responses.200.schema.doiRepresentationSuffixPattern`? | `string` | - | +| `get.responses.200.schema.editorialTeam`? | `string` | - | +| `get.responses.200.schema.emailSignature`? | `string` | - | +| `get.responses.200.schema.enableAnnouncements`? | `boolean` | - | +| `get.responses.200.schema.enableClockss`? | `boolean` | - | +| `get.responses.200.schema.enableDois`? | `boolean` | - | +| `get.responses.200.schema.enableLockss`? | `boolean` | - | +| `get.responses.200.schema.enabled`? | `boolean` | - | +| `get.responses.200.schema.envelopeSender`? | `string` | - | +| `get.responses.200.schema.favicon`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `get.responses.200.schema.favicon.altText`? | `string` | - | +| `get.responses.200.schema.favicon.dateUploaded`? | `string` | - | +| `get.responses.200.schema.favicon.height`? | `number` | - | +| `get.responses.200.schema.favicon.name`? | `string` | - | +| `get.responses.200.schema.favicon.temporaryFileId`? | `number` | - | +| `get.responses.200.schema.favicon.uploadName`? | `string` | - | +| `get.responses.200.schema.favicon.width`? | `number` | - | +| `get.responses.200.schema.homepageImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `get.responses.200.schema.homepageImage.altText`? | `string` | - | +| `get.responses.200.schema.homepageImage.dateUploaded`? | `string` | - | +| `get.responses.200.schema.homepageImage.height`? | `number` | - | +| `get.responses.200.schema.homepageImage.name`? | `string` | - | +| `get.responses.200.schema.homepageImage.temporaryFileId`? | `number` | - | +| `get.responses.200.schema.homepageImage.uploadName`? | `string` | - | +| `get.responses.200.schema.homepageImage.width`? | `number` | - | +| `get.responses.200.schema.id`? | `number` | - | +| `get.responses.200.schema.itemsPerPage`? | `number` | `Default` 25 | +| `get.responses.200.schema.keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | +| `get.responses.200.schema.languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `get.responses.200.schema.librarianInformation`? | `string` | - | +| `get.responses.200.schema.licenseUrl`? | `string` | - | +| `get.responses.200.schema.mailingAddress`? | `string` | - | +| `get.responses.200.schema.name` | `string` | - | +| `get.responses.200.schema.notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | +| `get.responses.200.schema.numAnnouncementsHomepage`? | `number` | - | +| `get.responses.200.schema.numDaysBeforeInviteReminder`? | `number` | - | +| `get.responses.200.schema.numDaysBeforeSubmitReminder`? | `number` | - | +| `get.responses.200.schema.numPageLinks`? | `number` | `Default` 10 | +| `get.responses.200.schema.numWeeksPerResponse`? | `number` | `Default` 4 | +| `get.responses.200.schema.numWeeksPerReview`? | `number` | `Default` 4 | +| `get.responses.200.schema.openAccessPolicy`? | `string` | - | +| `get.responses.200.schema.pageFooter`? | `string` | - | +| `get.responses.200.schema.pageHeaderLogoImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `get.responses.200.schema.pageHeaderLogoImage.altText`? | `string` | - | +| `get.responses.200.schema.pageHeaderLogoImage.dateUploaded`? | `string` | - | +| `get.responses.200.schema.pageHeaderLogoImage.height`? | `number` | - | +| `get.responses.200.schema.pageHeaderLogoImage.name`? | `string` | - | +| `get.responses.200.schema.pageHeaderLogoImage.temporaryFileId`? | `number` | - | +| `get.responses.200.schema.pageHeaderLogoImage.uploadName`? | `string` | - | +| `get.responses.200.schema.pageHeaderLogoImage.width`? | `number` | - | +| `get.responses.200.schema.paymentsEnabled`? | `boolean` | - | +| `get.responses.200.schema.primaryLocale` | `string` | - | +| `get.responses.200.schema.privacyStatement`? | `string` | - | +| `get.responses.200.schema.rateReviewerOnQuality`? | `boolean` | - | +| `get.responses.200.schema.readerInformation`? | `string` | - | +| `get.responses.200.schema.registrationAgency`? | `string` | `Default` none | +| `get.responses.200.schema.restrictReviewerFileAccess`? | `boolean` | - | +| `get.responses.200.schema.restrictSiteAccess`? | `boolean` | - | +| `get.responses.200.schema.reviewGuidelines`? | `string` | - | +| `get.responses.200.schema.reviewerAccessKeysEnabled`? | `boolean` | - | +| `get.responses.200.schema.rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `get.responses.200.schema.searchDescription`? | `string` | - | +| `get.responses.200.schema.seq`? | `number` | - | +| `get.responses.200.schema.showEnsuringLink`? | `boolean` | - | +| `get.responses.200.schema.sidebar`? | `string`[] | - | +| `get.responses.200.schema.source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `get.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `get.responses.200.schema.styleSheet.dateUploaded`? | `string` | - | +| `get.responses.200.schema.styleSheet.name`? | `string` | - | +| `get.responses.200.schema.styleSheet.temporaryFileId`? | `number` | - | +| `get.responses.200.schema.styleSheet.uploadName`? | `string` | - | +| `get.responses.200.schema.subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `get.responses.200.schema.submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | +| `get.responses.200.schema.supportEmail`? | `string` | - | +| `get.responses.200.schema.supportName`? | `string` | - | +| `get.responses.200.schema.supportPhone`? | `string` | - | +| `get.responses.200.schema.supportedFormLocales`? | `string`[] | - | +| `get.responses.200.schema.supportedLocales` | `string`[] | - | +| `get.responses.200.schema.supportedSubmissionLocales`? | `string`[] | - | +| `get.responses.200.schema.themePluginPath`? | `string` | `Default` default | +| `get.responses.200.schema.timeFormat`? | `string` | - | +| `get.responses.200.schema.type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `get.responses.200.schema.url`? | `string` | - | +| `get.responses.200.schema.urlPath` | `string` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view this context. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested context could not be found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | +| `put` | `object` | Edit a journal (OJS), press (OMP) or preprint server (OPS). | +| `put.parameters` | { `path`: { `contextId`: `number`; }; } | - | +| `put.parameters.path` | { `contextId`: `number`; } | - | +| `put.parameters.path.contextId` | `number` | Context ID | +| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `put.responses.200` | { `schema`: { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; }; } | The context that was just edited with the current values after the edit has occurred. | +| `put.responses.200.schema` | { `_href`?: `string`; `about`?: `string`; `acronym`?: `string`; `additionalHomeContent`?: `string`; `agencies`?: `string`; `announcementsIntroduction`?: `string`; `authorGuidelines`?: `string`; `authorInformation`?: `string`; `automaticDoiDeposit`?: `boolean`; `citations`?: `string`; `competingInterests`?: `string`; `contactAffiliation`?: `string`; `contactEmail`?: `string`; `contactName`?: `string`; `contactPhone`?: `string`; `copySubmissionAckAddress`?: `string`; `copySubmissionAckPrimaryContact`?: `boolean`; `copyrightHolderOther`?: `string`; `copyrightHolderType`?: `string`; `copyrightNotice`?: `string`; `country`?: `string`; `coverage`?: `string`; `currency`?: `string`; `customDoiSuffixType`?: `string`; `customHeaders`?: `string`; `dateFormatLong`?: `string`; `dateFormatShort`?: `string`; `datetimeFormatLong`?: `string`; `datetimeFormatShort`?: `string`; `defaultMetricType`?: `string`; `defaultReviewMode`?: `number`; `description`?: `string`; `disableBulkEmailUserGroups`?: `number`[]; `disableSubmissions`?: `boolean`; `disableUserReg`?: `boolean`; `disciplines`?: `string`; `doiPrefix`?: `string`; `doiPublicationSuffixPattern`?: `string`; `doiRepresentationSuffixPattern`?: `string`; `editorialTeam`?: `string`; `emailSignature`?: `string`; `enableAnnouncements`?: `boolean`; `enableClockss`?: `boolean`; `enableDois`?: `boolean`; `enableLockss`?: `boolean`; `enabled`?: `boolean`; `envelopeSender`?: `string`; `favicon`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `homepageImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `id`?: `number`; `itemsPerPage`?: `number`; `keywords`?: `string`; `languages`?: `string`; `librarianInformation`?: `string`; `licenseUrl`?: `string`; `mailingAddress`?: `string`; `name`: `string`; `notifyAllAuthors`?: `boolean`; `numAnnouncementsHomepage`?: `number`; `numDaysBeforeInviteReminder`?: `number`; `numDaysBeforeSubmitReminder`?: `number`; `numPageLinks`?: `number`; `numWeeksPerResponse`?: `number`; `numWeeksPerReview`?: `number`; `openAccessPolicy`?: `string`; `pageFooter`?: `string`; `pageHeaderLogoImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `paymentsEnabled`?: `boolean`; `primaryLocale`: `string`; `privacyStatement`?: `string`; `rateReviewerOnQuality`?: `boolean`; `readerInformation`?: `string`; `registrationAgency`?: `string`; `restrictReviewerFileAccess`?: `boolean`; `restrictSiteAccess`?: `boolean`; `reviewGuidelines`?: `string`; `reviewerAccessKeysEnabled`?: `boolean`; `rights`?: `string`; `searchDescription`?: `string`; `seq`?: `number`; `showEnsuringLink`?: `boolean`; `sidebar`?: `string`[]; `source`?: `string`; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `subjects`?: `string`; `submissionChecklist`?: { `content`?: `string`; `order`?: `number`; }[]; `supportEmail`?: `string`; `supportName`?: `string`; `supportPhone`?: `string`; `supportedFormLocales`?: `string`[]; `supportedLocales`: `string`[]; `supportedSubmissionLocales`?: `string`[]; `themePluginPath`?: `string`; `timeFormat`?: `string`; `type`?: `string`; `url`?: `string`; `urlPath`: `string`; } | - | +| `put.responses.200.schema._href`? | `string` | Format: uri | +| `put.responses.200.schema.about`? | `string` | - | +| `put.responses.200.schema.acronym`? | `string` | - | +| `put.responses.200.schema.additionalHomeContent`? | `string` | - | +| `put.responses.200.schema.agencies`? | `string` | `Description` Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `put.responses.200.schema.announcementsIntroduction`? | `string` | - | +| `put.responses.200.schema.authorGuidelines`? | `string` | - | +| `put.responses.200.schema.authorInformation`? | `string` | - | +| `put.responses.200.schema.automaticDoiDeposit`? | `boolean` | - | +| `put.responses.200.schema.citations`? | `string` | `Description` Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `put.responses.200.schema.competingInterests`? | `string` | - | +| `put.responses.200.schema.contactAffiliation`? | `string` | - | +| `put.responses.200.schema.contactEmail`? | `string` | - | +| `put.responses.200.schema.contactName`? | `string` | - | +| `put.responses.200.schema.contactPhone`? | `string` | - | +| `put.responses.200.schema.copySubmissionAckAddress`? | `string` | `Description` A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one\@example.com,two\@example.com | +| `put.responses.200.schema.copySubmissionAckPrimaryContact`? | `boolean` | `Description` A copy of the submission acknowledgement email will be sent to this context's primary contact when true. | +| `put.responses.200.schema.copyrightHolderOther`? | `string` | - | +| `put.responses.200.schema.copyrightHolderType`? | `string` | - | +| `put.responses.200.schema.copyrightNotice`? | `string` | - | +| `put.responses.200.schema.country`? | `string` | - | +| `put.responses.200.schema.coverage`? | `string` | `Description` Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `put.responses.200.schema.currency`? | `string` | - | +| `put.responses.200.schema.customDoiSuffixType`? | `string` | - | +| `put.responses.200.schema.customHeaders`? | `string` | - | +| `put.responses.200.schema.dateFormatLong`? | `string` | - | +| `put.responses.200.schema.dateFormatShort`? | `string` | - | +| `put.responses.200.schema.datetimeFormatLong`? | `string` | - | +| `put.responses.200.schema.datetimeFormatShort`? | `string` | - | +| `put.responses.200.schema.defaultMetricType`? | `string` | - | +| `put.responses.200.schema.defaultReviewMode`? | `number` | `Default` 2 | +| `put.responses.200.schema.description`? | `string` | - | +| `put.responses.200.schema.disableBulkEmailUserGroups`? | `number`[] | `Description` User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. | +| `put.responses.200.schema.disableSubmissions`? | `boolean` | - | +| `put.responses.200.schema.disableUserReg`? | `boolean` | - | +| `put.responses.200.schema.disciplines`? | `string` | `Description` Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `put.responses.200.schema.doiPrefix`? | `string` | - | +| `put.responses.200.schema.doiPublicationSuffixPattern`? | `string` | - | +| `put.responses.200.schema.doiRepresentationSuffixPattern`? | `string` | - | +| `put.responses.200.schema.editorialTeam`? | `string` | - | +| `put.responses.200.schema.emailSignature`? | `string` | - | +| `put.responses.200.schema.enableAnnouncements`? | `boolean` | - | +| `put.responses.200.schema.enableClockss`? | `boolean` | - | +| `put.responses.200.schema.enableDois`? | `boolean` | - | +| `put.responses.200.schema.enableLockss`? | `boolean` | - | +| `put.responses.200.schema.enabled`? | `boolean` | - | +| `put.responses.200.schema.envelopeSender`? | `string` | - | +| `put.responses.200.schema.favicon`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `put.responses.200.schema.favicon.altText`? | `string` | - | +| `put.responses.200.schema.favicon.dateUploaded`? | `string` | - | +| `put.responses.200.schema.favicon.height`? | `number` | - | +| `put.responses.200.schema.favicon.name`? | `string` | - | +| `put.responses.200.schema.favicon.temporaryFileId`? | `number` | - | +| `put.responses.200.schema.favicon.uploadName`? | `string` | - | +| `put.responses.200.schema.favicon.width`? | `number` | - | +| `put.responses.200.schema.homepageImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `put.responses.200.schema.homepageImage.altText`? | `string` | - | +| `put.responses.200.schema.homepageImage.dateUploaded`? | `string` | - | +| `put.responses.200.schema.homepageImage.height`? | `number` | - | +| `put.responses.200.schema.homepageImage.name`? | `string` | - | +| `put.responses.200.schema.homepageImage.temporaryFileId`? | `number` | - | +| `put.responses.200.schema.homepageImage.uploadName`? | `string` | - | +| `put.responses.200.schema.homepageImage.width`? | `number` | - | +| `put.responses.200.schema.id`? | `number` | - | +| `put.responses.200.schema.itemsPerPage`? | `number` | `Default` 25 | +| `put.responses.200.schema.keywords`? | `string` | `Description` Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. `Default` request | +| `put.responses.200.schema.languages`? | `string` | `Description` Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `put.responses.200.schema.librarianInformation`? | `string` | - | +| `put.responses.200.schema.licenseUrl`? | `string` | - | +| `put.responses.200.schema.mailingAddress`? | `string` | - | +| `put.responses.200.schema.name` | `string` | - | +| `put.responses.200.schema.notifyAllAuthors`? | `boolean` | `Description` When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. `Default` true | +| `put.responses.200.schema.numAnnouncementsHomepage`? | `number` | - | +| `put.responses.200.schema.numDaysBeforeInviteReminder`? | `number` | - | +| `put.responses.200.schema.numDaysBeforeSubmitReminder`? | `number` | - | +| `put.responses.200.schema.numPageLinks`? | `number` | `Default` 10 | +| `put.responses.200.schema.numWeeksPerResponse`? | `number` | `Default` 4 | +| `put.responses.200.schema.numWeeksPerReview`? | `number` | `Default` 4 | +| `put.responses.200.schema.openAccessPolicy`? | `string` | - | +| `put.responses.200.schema.pageFooter`? | `string` | - | +| `put.responses.200.schema.pageHeaderLogoImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | - | +| `put.responses.200.schema.pageHeaderLogoImage.altText`? | `string` | - | +| `put.responses.200.schema.pageHeaderLogoImage.dateUploaded`? | `string` | - | +| `put.responses.200.schema.pageHeaderLogoImage.height`? | `number` | - | +| `put.responses.200.schema.pageHeaderLogoImage.name`? | `string` | - | +| `put.responses.200.schema.pageHeaderLogoImage.temporaryFileId`? | `number` | - | +| `put.responses.200.schema.pageHeaderLogoImage.uploadName`? | `string` | - | +| `put.responses.200.schema.pageHeaderLogoImage.width`? | `number` | - | +| `put.responses.200.schema.paymentsEnabled`? | `boolean` | - | +| `put.responses.200.schema.primaryLocale` | `string` | - | +| `put.responses.200.schema.privacyStatement`? | `string` | - | +| `put.responses.200.schema.rateReviewerOnQuality`? | `boolean` | - | +| `put.responses.200.schema.readerInformation`? | `string` | - | +| `put.responses.200.schema.registrationAgency`? | `string` | `Default` none | +| `put.responses.200.schema.restrictReviewerFileAccess`? | `boolean` | - | +| `put.responses.200.schema.restrictSiteAccess`? | `boolean` | - | +| `put.responses.200.schema.reviewGuidelines`? | `string` | - | +| `put.responses.200.schema.reviewerAccessKeysEnabled`? | `boolean` | - | +| `put.responses.200.schema.rights`? | `string` | `Description` Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `put.responses.200.schema.searchDescription`? | `string` | - | +| `put.responses.200.schema.seq`? | `number` | - | +| `put.responses.200.schema.showEnsuringLink`? | `boolean` | - | +| `put.responses.200.schema.sidebar`? | `string`[] | - | +| `put.responses.200.schema.source`? | `string` | `Description` Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `put.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `put.responses.200.schema.styleSheet.dateUploaded`? | `string` | - | +| `put.responses.200.schema.styleSheet.name`? | `string` | - | +| `put.responses.200.schema.styleSheet.temporaryFileId`? | `number` | - | +| `put.responses.200.schema.styleSheet.uploadName`? | `string` | - | +| `put.responses.200.schema.subjects`? | `string` | `Description` Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `put.responses.200.schema.submissionChecklist`? | { `content`?: `string`; `order`?: `number`; }[] | `Default` [object Object],[object Object],[object Object],[object Object],[object Object] | +| `put.responses.200.schema.supportEmail`? | `string` | - | +| `put.responses.200.schema.supportName`? | `string` | - | +| `put.responses.200.schema.supportPhone`? | `string` | - | +| `put.responses.200.schema.supportedFormLocales`? | `string`[] | - | +| `put.responses.200.schema.supportedLocales` | `string`[] | - | +| `put.responses.200.schema.supportedSubmissionLocales`? | `string`[] | - | +| `put.responses.200.schema.themePluginPath`? | `string` | `Default` default | +| `put.responses.200.schema.timeFormat`? | `string` | - | +| `put.responses.200.schema.type`? | `string` | `Description` Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission. | +| `put.responses.200.schema.url`? | `string` | - | +| `put.responses.200.schema.urlPath` | `string` | - | +| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `put.responses.400.schema` | { } | - | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | There are two possible conditions that will result in a `403` response. 1. You do not have permission to edit this context. 2. You submitted changes for one context from the API endpoint of another context. To edit a context, you must make a request to that context's API endpoint or the site-wide API endpoint. | +| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.403.schema.error`? | `string` | - | +| `put.responses.403.schema.errorMessage`? | `string` | - | +| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested context could not be found. | +| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.404.schema.error`? | `string` | - | +| `put.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:972](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L972) ##### `/contexts/\{contextId}/theme` @@ -4615,46 +4615,46 @@ Defined in: [lib/swagger-types.ts:972](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Get the active theme and theme options for any journal (OJS), press (OMP) or preprint server (OPS). | -| `get.parameters` | { `path`: { `contextId`: `number`; }; } | - | -| `get.parameters.path` | { `contextId`: `number`; } | - | -| `get.parameters.path.contextId` | `number` | Context ID | -| `get.responses` | { `200`: { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; } | The response will include the theme plugin directory in `themePluginPath`. Any theme options will be provided in additional keys based on the option name. | -| `get.responses.200.schema` | { `...`?: `string`; `themePluginPath`?: `string`; } | - | -| `get.responses.200.schema....`? | `string` | - | -| `get.responses.200.schema.themePluginPath`? | `string` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view this context. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested context could not be found. A 404 may also be returned when a context has no active theme, or the active theme plugin has not been installed or enabled. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | -| `put` | `object` | Edit the active theme and theme options for any journal (OJS), press (OMP) or preprint server (OPS). | -| `put.parameters` | { `path`: { `contextId`: `number`; }; } | - | -| `put.parameters.path` | { `contextId`: `number`; } | - | -| `put.parameters.path.contextId` | `number` | Context ID | -| `put.responses` | { `200`: { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `put.responses.200` | { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; } | The new theme and values for any of its theme options. | -| `put.responses.200.schema` | { `...`?: `string`; `themePluginPath`?: `string`; } | - | -| `put.responses.200.schema....`? | `string` | - | -| `put.responses.200.schema.themePluginPath`? | `string` | - | -| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `put.responses.400.schema` | { } | - | -| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | There are two possible conditions that will result in a `403` response. 1. You do not have permission to edit this context. 2. You submitted changes for one context from the API endpoint of another context. To edit a context, you must make a request to that context's API endpoint or the site-wide API endpoint. | -| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.403.schema.error`? | `string` | - | -| `put.responses.403.schema.errorMessage`? | `string` | - | -| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested context could not be found. | -| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.404.schema.error`? | `string` | - | -| `put.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1046) +| Member | Type | Description | +| :------------------------------------------ | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | Get the active theme and theme options for any journal (OJS), press (OMP) or preprint server (OPS). | +| `get.parameters` | { `path`: { `contextId`: `number`; }; } | - | +| `get.parameters.path` | { `contextId`: `number`; } | - | +| `get.parameters.path.contextId` | `number` | Context ID | +| `get.responses` | { `200`: { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; } | The response will include the theme plugin directory in `themePluginPath`. Any theme options will be provided in additional keys based on the option name. | +| `get.responses.200.schema` | { `...`?: `string`; `themePluginPath`?: `string`; } | - | +| `get.responses.200.schema....`? | `string` | - | +| `get.responses.200.schema.themePluginPath`? | `string` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view this context. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested context could not be found. A 404 may also be returned when a context has no active theme, or the active theme plugin has not been installed or enabled. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | +| `put` | `object` | Edit the active theme and theme options for any journal (OJS), press (OMP) or preprint server (OPS). | +| `put.parameters` | { `path`: { `contextId`: `number`; }; } | - | +| `put.parameters.path` | { `contextId`: `number`; } | - | +| `put.parameters.path.contextId` | `number` | Context ID | +| `put.responses` | { `200`: { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `put.responses.200` | { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; } | The new theme and values for any of its theme options. | +| `put.responses.200.schema` | { `...`?: `string`; `themePluginPath`?: `string`; } | - | +| `put.responses.200.schema....`? | `string` | - | +| `put.responses.200.schema.themePluginPath`? | `string` | - | +| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `put.responses.400.schema` | { } | - | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | There are two possible conditions that will result in a `403` response. 1. You do not have permission to edit this context. 2. You submitted changes for one context from the API endpoint of another context. To edit a context, you must make a request to that context's API endpoint or the site-wide API endpoint. | +| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.403.schema.error`? | `string` | - | +| `put.responses.403.schema.errorMessage`? | `string` | - | +| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested context could not be found. | +| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.404.schema.error`? | `string` | - | +| `put.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1046](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1046) ##### `/emailTemplates` @@ -4719,48 +4719,48 @@ Defined in: [lib/swagger-types.ts:1046](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | -| :------ | :------ | -| `get` | `object` | -| `get.parameters` | { `query`: { `fromRoleIds`?: `number`[]; `isCustom`?: `string`; `isEnabled`?: `string`; `searchPhrase`?: `string`; `stageIds`?: `number`[]; `toRoleIds`?: `number`[]; }; } | -| `get.parameters.query` | { `fromRoleIds`?: `number`[]; `isCustom`?: `string`; `isEnabled`?: `string`; `searchPhrase`?: `string`; `stageIds`?: `number`[]; `toRoleIds`?: `number`[]; } | -| `get.parameters.query.fromRoleIds`? | `number`[] | -| `get.parameters.query.isCustom`? | `string` | -| `get.parameters.query.isEnabled`? | `string` | -| `get.parameters.query.searchPhrase`? | `string` | -| `get.parameters.query.stageIds`? | `number`[] | -| `get.parameters.query.toRoleIds`? | `number`[] | -| `get.responses` | { `200`: { `schema`: { `items`?: [`"EmailTemplate"`][]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | -| `get.responses.200` | { `schema`: { `items`?: [`"EmailTemplate"`][]; `itemsMax`?: `number`; }; } | -| `get.responses.200.schema` | { `items`?: [`"EmailTemplate"`][]; `itemsMax`?: `number`; } | -| `get.responses.200.schema.items`? | [`"EmailTemplate"`][] | -| `get.responses.200.schema.itemsMax`? | `number` | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | -| `get.responses.403.schema.error`? | `string` | -| `get.responses.403.schema.errorMessage`? | `string` | -| `post` | `object` | -| `post.parameters` | {} | -| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; }; `400`: { `schema`: { }; }; } | -| `post.responses.200` | { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; } | -| `post.responses.200.schema` | { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; } | -| `post.responses.200.schema._href`? | `string` | -| `post.responses.200.schema.body` | `string` | -| `post.responses.200.schema.canDisable`? | `boolean` | -| `post.responses.200.schema.canEdit`? | `boolean` | -| `post.responses.200.schema.contextId` | `number` | -| `post.responses.200.schema.description`? | `string` | -| `post.responses.200.schema.enabled`? | `boolean` | -| `post.responses.200.schema.fromRoleId`? | `number` | -| `post.responses.200.schema.id`? | `number` | -| `post.responses.200.schema.key` | `string` | -| `post.responses.200.schema.stageId`? | `number` | -| `post.responses.200.schema.subject` | `string` | -| `post.responses.200.schema.toRoleId`? | `number` | -| `post.responses.400` | { `schema`: { }; } | -| `post.responses.400.schema` | { } | - -Defined in: [lib/swagger-types.ts:1267](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1267) +| Member | Type | +| :--------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | +| `get.parameters` | { `query`: { `fromRoleIds`?: `number`[]; `isCustom`?: `string`; `isEnabled`?: `string`; `searchPhrase`?: `string`; `stageIds`?: `number`[]; `toRoleIds`?: `number`[]; }; } | +| `get.parameters.query` | { `fromRoleIds`?: `number`[]; `isCustom`?: `string`; `isEnabled`?: `string`; `searchPhrase`?: `string`; `stageIds`?: `number`[]; `toRoleIds`?: `number`[]; } | +| `get.parameters.query.fromRoleIds`? | `number`[] | +| `get.parameters.query.isCustom`? | `string` | +| `get.parameters.query.isEnabled`? | `string` | +| `get.parameters.query.searchPhrase`? | `string` | +| `get.parameters.query.stageIds`? | `number`[] | +| `get.parameters.query.toRoleIds`? | `number`[] | +| `get.responses` | { `200`: { `schema`: { `items`?: [`"EmailTemplate"`][]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | +| `get.responses.200` | { `schema`: { `items`?: [`"EmailTemplate"`][]; `itemsMax`?: `number`; }; } | +| `get.responses.200.schema` | { `items`?: [`"EmailTemplate"`][]; `itemsMax`?: `number`; } | +| `get.responses.200.schema.items`? | [`"EmailTemplate"`][] | +| `get.responses.200.schema.itemsMax`? | `number` | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | +| `get.responses.403.schema.error`? | `string` | +| `get.responses.403.schema.errorMessage`? | `string` | +| `post` | `object` | +| `post.parameters` | {} | +| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; }; `400`: { `schema`: { }; }; } | +| `post.responses.200` | { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; } | +| `post.responses.200.schema` | { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; } | +| `post.responses.200.schema._href`? | `string` | +| `post.responses.200.schema.body` | `string` | +| `post.responses.200.schema.canDisable`? | `boolean` | +| `post.responses.200.schema.canEdit`? | `boolean` | +| `post.responses.200.schema.contextId` | `number` | +| `post.responses.200.schema.description`? | `string` | +| `post.responses.200.schema.enabled`? | `boolean` | +| `post.responses.200.schema.fromRoleId`? | `number` | +| `post.responses.200.schema.id`? | `number` | +| `post.responses.200.schema.key` | `string` | +| `post.responses.200.schema.stageId`? | `number` | +| `post.responses.200.schema.subject` | `string` | +| `post.responses.200.schema.toRoleId`? | `number` | +| `post.responses.400` | { `schema`: { }; } | +| `post.responses.400.schema` | { } | + +Defined in: [lib/swagger-types.ts:1267](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1267) ##### `/emailTemplates/restoreDefaults` @@ -4780,14 +4780,14 @@ Defined in: [lib/swagger-types.ts:1267](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `delete` | `object` | Delete custom templates and reset all templates to their default settings. | -| `delete.responses` | { `200`: { `schema`: `string`[]; }; } | - | -| `delete.responses.200` | { `schema`: `string`[]; } | A list of template keys which were deleted or reset. | -| `delete.responses.200.schema` | `string`[] | - | +| Member | Type | Description | +| :---------------------------- | :------------------------------------ | :------------------------------------------------------------------------- | +| `delete` | `object` | Delete custom templates and reset all templates to their default settings. | +| `delete.responses` | { `200`: { `schema`: `string`[]; }; } | - | +| `delete.responses.200` | { `schema`: `string`[]; } | A list of template keys which were deleted or reset. | +| `delete.responses.200.schema` | `string`[] | - | -Defined in: [lib/swagger-types.ts:1387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1387) +Defined in: [lib/swagger-types.ts:1387](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1387) ##### `/emailTemplates/\{key}` @@ -4918,96 +4918,96 @@ Defined in: [lib/swagger-types.ts:1387](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `delete` | `object` | Default templates that have not been modified can not be deleted. | -| `delete.parameters` | { `path`: { `key`: `number`; }; } | - | -| `delete.parameters.path` | { `key`: `number`; } | - | -| `delete.parameters.path.key` | `number` | Email template key | -| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `delete.responses.200` | { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; } | Details of the email template that was just deleted. | -| `delete.responses.200.schema` | { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; } | - | -| `delete.responses.200.schema._href`? | `string` | Format: uri | -| `delete.responses.200.schema.body` | `string` | `Description` The email template to be used in the email's main body content. | -| `delete.responses.200.schema.canDisable`? | `boolean` | `Description` Can this email template be disabled in the context settings area? Default is `true`. | -| `delete.responses.200.schema.canEdit`? | `boolean` | `Description` Can this email template be edited in the context settings area? Default is `true`. | -| `delete.responses.200.schema.contextId` | `number` | `Description` The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. | -| `delete.responses.200.schema.description`? | `string` | `Description` A description of when this email template is used. | -| `delete.responses.200.schema.enabled`? | `boolean` | `Description` Is this email template enabled? Default is `true`. | -| `delete.responses.200.schema.fromRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will send this email. | -| `delete.responses.200.schema.id`? | `number` | `Description` The email template ID. | -| `delete.responses.200.schema.key` | `string` | `Description` A unique key for this email template. | -| `delete.responses.200.schema.stageId`? | `number` | `Description` The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. | -| `delete.responses.200.schema.subject` | `string` | `Description` The subject of the email to be used in the email's subject header. | -| `delete.responses.200.schema.toRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will receive this email. | -| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to delete this email template. | -| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.403.schema.error`? | `string` | - | -| `delete.responses.403.schema.errorMessage`? | `string` | - | -| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested email template could not be found. This will be returned if you try to delete a default email template that has not been modified. | -| `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.404.schema.error`? | `string` | - | -| `delete.responses.404.schema.errorMessage`? | `string` | - | -| `get` | `object` | Email templates are fetched by their key, rather than ID, so that a default template is retrieved if it has not been customized. See the [documentation](https://docs.pkp.sfu.ca/dev/documentation/en/email-templates). | -| `get.parameters` | { `path`: { `key`: `number`; }; } | - | -| `get.parameters.path` | { `key`: `number`; } | - | -| `get.parameters.path.key` | `number` | Email template key | -| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; } | Email template details. | -| `get.responses.200.schema` | { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; } | - | -| `get.responses.200.schema._href`? | `string` | Format: uri | -| `get.responses.200.schema.body` | `string` | `Description` The email template to be used in the email's main body content. | -| `get.responses.200.schema.canDisable`? | `boolean` | `Description` Can this email template be disabled in the context settings area? Default is `true`. | -| `get.responses.200.schema.canEdit`? | `boolean` | `Description` Can this email template be edited in the context settings area? Default is `true`. | -| `get.responses.200.schema.contextId` | `number` | `Description` The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. | -| `get.responses.200.schema.description`? | `string` | `Description` A description of when this email template is used. | -| `get.responses.200.schema.enabled`? | `boolean` | `Description` Is this email template enabled? Default is `true`. | -| `get.responses.200.schema.fromRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will send this email. | -| `get.responses.200.schema.id`? | `number` | `Description` The email template ID. | -| `get.responses.200.schema.key` | `string` | `Description` A unique key for this email template. | -| `get.responses.200.schema.stageId`? | `number` | `Description` The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. | -| `get.responses.200.schema.subject` | `string` | `Description` The subject of the email to be used in the email's subject header. | -| `get.responses.200.schema.toRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will receive this email. | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view email templates. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested email template could not be found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | -| `put` | `object` | - | -| `put.parameters` | { `path`: { `key`: `number`; }; } | - | -| `put.parameters.path` | { `key`: `number`; } | - | -| `put.parameters.path.key` | `number` | Email template key | -| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `put.responses.200` | { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; } | The email template that was just edited with the current values after the edit has occurred. | -| `put.responses.200.schema` | { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; } | - | -| `put.responses.200.schema._href`? | `string` | Format: uri | -| `put.responses.200.schema.body` | `string` | `Description` The email template to be used in the email's main body content. | -| `put.responses.200.schema.canDisable`? | `boolean` | `Description` Can this email template be disabled in the context settings area? Default is `true`. | -| `put.responses.200.schema.canEdit`? | `boolean` | `Description` Can this email template be edited in the context settings area? Default is `true`. | -| `put.responses.200.schema.contextId` | `number` | `Description` The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. | -| `put.responses.200.schema.description`? | `string` | `Description` A description of when this email template is used. | -| `put.responses.200.schema.enabled`? | `boolean` | `Description` Is this email template enabled? Default is `true`. | -| `put.responses.200.schema.fromRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will send this email. | -| `put.responses.200.schema.id`? | `number` | `Description` The email template ID. | -| `put.responses.200.schema.key` | `string` | `Description` A unique key for this email template. | -| `put.responses.200.schema.stageId`? | `number` | `Description` The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. | -| `put.responses.200.schema.subject` | `string` | `Description` The subject of the email to be used in the email's subject header. | -| `put.responses.200.schema.toRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will receive this email. | -| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `put.responses.400.schema` | { } | - | -| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | There are two possible conditions that will result in a `403` response. 1. You do not have permission to edit this email template. 2. You are an admin and you submitted changes for an email template in one context from the API endpoint of another context. To edit an email template, you must make a request to the API endpoint of that email template's context. | -| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.403.schema.error`? | `string` | - | -| `put.responses.403.schema.errorMessage`? | `string` | - | -| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested email template could not be found. | -| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.404.schema.error`? | `string` | - | -| `put.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1313) +| Member | Type | Description | +| :------------------------------------------ | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `delete` | `object` | Default templates that have not been modified can not be deleted. | +| `delete.parameters` | { `path`: { `key`: `number`; }; } | - | +| `delete.parameters.path` | { `key`: `number`; } | - | +| `delete.parameters.path.key` | `number` | Email template key | +| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `delete.responses.200` | { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; } | Details of the email template that was just deleted. | +| `delete.responses.200.schema` | { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; } | - | +| `delete.responses.200.schema._href`? | `string` | Format: uri | +| `delete.responses.200.schema.body` | `string` | `Description` The email template to be used in the email's main body content. | +| `delete.responses.200.schema.canDisable`? | `boolean` | `Description` Can this email template be disabled in the context settings area? Default is `true`. | +| `delete.responses.200.schema.canEdit`? | `boolean` | `Description` Can this email template be edited in the context settings area? Default is `true`. | +| `delete.responses.200.schema.contextId` | `number` | `Description` The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. | +| `delete.responses.200.schema.description`? | `string` | `Description` A description of when this email template is used. | +| `delete.responses.200.schema.enabled`? | `boolean` | `Description` Is this email template enabled? Default is `true`. | +| `delete.responses.200.schema.fromRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will send this email. | +| `delete.responses.200.schema.id`? | `number` | `Description` The email template ID. | +| `delete.responses.200.schema.key` | `string` | `Description` A unique key for this email template. | +| `delete.responses.200.schema.stageId`? | `number` | `Description` The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. | +| `delete.responses.200.schema.subject` | `string` | `Description` The subject of the email to be used in the email's subject header. | +| `delete.responses.200.schema.toRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will receive this email. | +| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to delete this email template. | +| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.403.schema.error`? | `string` | - | +| `delete.responses.403.schema.errorMessage`? | `string` | - | +| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested email template could not be found. This will be returned if you try to delete a default email template that has not been modified. | +| `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.404.schema.error`? | `string` | - | +| `delete.responses.404.schema.errorMessage`? | `string` | - | +| `get` | `object` | Email templates are fetched by their key, rather than ID, so that a default template is retrieved if it has not been customized. See the [documentation](https://docs.pkp.sfu.ca/dev/documentation/en/email-templates). | +| `get.parameters` | { `path`: { `key`: `number`; }; } | - | +| `get.parameters.path` | { `key`: `number`; } | - | +| `get.parameters.path.key` | `number` | Email template key | +| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; } | Email template details. | +| `get.responses.200.schema` | { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; } | - | +| `get.responses.200.schema._href`? | `string` | Format: uri | +| `get.responses.200.schema.body` | `string` | `Description` The email template to be used in the email's main body content. | +| `get.responses.200.schema.canDisable`? | `boolean` | `Description` Can this email template be disabled in the context settings area? Default is `true`. | +| `get.responses.200.schema.canEdit`? | `boolean` | `Description` Can this email template be edited in the context settings area? Default is `true`. | +| `get.responses.200.schema.contextId` | `number` | `Description` The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. | +| `get.responses.200.schema.description`? | `string` | `Description` A description of when this email template is used. | +| `get.responses.200.schema.enabled`? | `boolean` | `Description` Is this email template enabled? Default is `true`. | +| `get.responses.200.schema.fromRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will send this email. | +| `get.responses.200.schema.id`? | `number` | `Description` The email template ID. | +| `get.responses.200.schema.key` | `string` | `Description` A unique key for this email template. | +| `get.responses.200.schema.stageId`? | `number` | `Description` The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. | +| `get.responses.200.schema.subject` | `string` | `Description` The subject of the email to be used in the email's subject header. | +| `get.responses.200.schema.toRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will receive this email. | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view email templates. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested email template could not be found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | +| `put` | `object` | - | +| `put.parameters` | { `path`: { `key`: `number`; }; } | - | +| `put.parameters.path` | { `key`: `number`; } | - | +| `put.parameters.path.key` | `number` | Email template key | +| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `put.responses.200` | { `schema`: { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; }; } | The email template that was just edited with the current values after the edit has occurred. | +| `put.responses.200.schema` | { `_href`?: `string`; `body`: `string`; `canDisable`?: `boolean`; `canEdit`?: `boolean`; `contextId`: `number`; `description`?: `string`; `enabled`?: `boolean`; `fromRoleId`?: `number`; `id`?: `number`; `key`: `string`; `stageId`?: `number`; `subject`: `string`; `toRoleId`?: `number`; } | - | +| `put.responses.200.schema._href`? | `string` | Format: uri | +| `put.responses.200.schema.body` | `string` | `Description` The email template to be used in the email's main body content. | +| `put.responses.200.schema.canDisable`? | `boolean` | `Description` Can this email template be disabled in the context settings area? Default is `true`. | +| `put.responses.200.schema.canEdit`? | `boolean` | `Description` Can this email template be edited in the context settings area? Default is `true`. | +| `put.responses.200.schema.contextId` | `number` | `Description` The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`. | +| `put.responses.200.schema.description`? | `string` | `Description` A description of when this email template is used. | +| `put.responses.200.schema.enabled`? | `boolean` | `Description` Is this email template enabled? Default is `true`. | +| `put.responses.200.schema.fromRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will send this email. | +| `put.responses.200.schema.id`? | `number` | `Description` The email template ID. | +| `put.responses.200.schema.key` | `string` | `Description` A unique key for this email template. | +| `put.responses.200.schema.stageId`? | `number` | `Description` The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage. | +| `put.responses.200.schema.subject` | `string` | `Description` The subject of the email to be used in the email's subject header. | +| `put.responses.200.schema.toRoleId`? | `number` | `Description` The `ROLE_ID_*` of the user who will receive this email. | +| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `put.responses.400.schema` | { } | - | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | There are two possible conditions that will result in a `403` response. 1. You do not have permission to edit this email template. 2. You are an admin and you submitted changes for an email template in one context from the API endpoint of another context. To edit an email template, you must make a request to the API endpoint of that email template's context. | +| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.403.schema.error`? | `string` | - | +| `put.responses.403.schema.errorMessage`? | `string` | - | +| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested email template could not be found. | +| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.404.schema.error`? | `string` | - | +| `put.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1313](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1313) ##### `/issues` @@ -5046,29 +5046,29 @@ Defined in: [lib/swagger-types.ts:1313](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Results are eordered by `datePublished`. | -| `get.parameters` | { `query`: { `count`?: `number`; `isPublished`?: `boolean`; `numbers`?: `string`; `offset`?: `number`; `orderBy`?: `"datePublished"` | `"lastModified"` | `"seq"`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `volumes`?: `string`; `years`?: `string`; }; } | - | -| `get.parameters.query` | { `count`?: `number`; `isPublished`?: `boolean`; `numbers`?: `string`; `offset`?: `number`; `orderBy`?: `"datePublished"` | `"lastModified"` | `"seq"`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `volumes`?: `string`; `years`?: `string`; } | - | -| `get.parameters.query.count`? | `number` | How many results to return in a single request. Max is `100`. | -| `get.parameters.query.isPublished`? | `boolean` | Filter returned issues by those that have been published. Pass a `false` value to return only unpublished issues. Only administrators and journal managers are allowed to access unpublished issues. | -| `get.parameters.query.numbers`? | `string` | Filter returned issues by those assigned a specific number. | -| `get.parameters.query.offset`? | `number` | Offset the results returned. Use this to receive subsequent pages of requests. A `count` of `10` and `offset` of `15` will return results `15` to `25`. | -| `get.parameters.query.orderBy`? | `"datePublished"` | `"lastModified"` | `"seq"` | Order the results returned. | -| `get.parameters.query.orderDirection`? | `"ASC"` | `"DESC"` | Return the results in ascending or descending order. | -| `get.parameters.query.searchPhrase`? | `string` | Filter the results by a search phrase matched against the title, description and year. It will also attempt to match search phrases using the localised issue identification. For example, in English a search for `Vol. 1 No. 2 (2018)` will match an issue with a volume of `1`, a number of `2` and a year of `2018`. The precise format differs for each language. | -| `get.parameters.query.volumes`? | `string` | Filter returned issues by those in a specific volume. | -| `get.parameters.query.years`? | `string` | Filter returned issues by those in a specific year. | -| `get.responses` | { `200`: { `schema`: `unknown`[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: `unknown`[]; } | List of issues. | -| `get.responses.200.schema` | `unknown`[] | - | -| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested volume, number or year is not valid. | -| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.400.schema.error`? | `string` | - | -| `get.responses.400.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L754) +| Member | Type | Description | +| :--------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- | ----------------------------------------------------------------------------------- | --- | +| `get` | `object` | Results are eordered by `datePublished`. | +| `get.parameters` | { `query`: { `count`?: `number`; `isPublished`?: `boolean`; `numbers`?: `string`; `offset`?: `number`; `orderBy`?: `"datePublished"` | `"lastModified"` | `"seq"`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `volumes`?: `string`; `years`?: `string`; }; } | - | +| `get.parameters.query` | { `count`?: `number`; `isPublished`?: `boolean`; `numbers`?: `string`; `offset`?: `number`; `orderBy`?: `"datePublished"` | `"lastModified"` | `"seq"`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `volumes`?: `string`; `years`?: `string`; } | - | +| `get.parameters.query.count`? | `number` | How many results to return in a single request. Max is `100`. | +| `get.parameters.query.isPublished`? | `boolean` | Filter returned issues by those that have been published. Pass a `false` value to return only unpublished issues. Only administrators and journal managers are allowed to access unpublished issues. | +| `get.parameters.query.numbers`? | `string` | Filter returned issues by those assigned a specific number. | +| `get.parameters.query.offset`? | `number` | Offset the results returned. Use this to receive subsequent pages of requests. A `count` of `10` and `offset` of `15` will return results `15` to `25`. | +| `get.parameters.query.orderBy`? | `"datePublished"` | `"lastModified"` | `"seq"` | Order the results returned. | +| `get.parameters.query.orderDirection`? | `"ASC"` | `"DESC"` | Return the results in ascending or descending order. | +| `get.parameters.query.searchPhrase`? | `string` | Filter the results by a search phrase matched against the title, description and year. It will also attempt to match search phrases using the localised issue identification. For example, in English a search for `Vol. 1 No. 2 (2018)` will match an issue with a volume of `1`, a number of `2` and a year of `2018`. The precise format differs for each language. | +| `get.parameters.query.volumes`? | `string` | Filter returned issues by those in a specific volume. | +| `get.parameters.query.years`? | `string` | Filter returned issues by those in a specific year. | +| `get.responses` | { `200`: { `schema`: `unknown`[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: `unknown`[]; } | List of issues. | +| `get.responses.200.schema` | `unknown`[] | - | +| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested volume, number or year is not valid. | +| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.400.schema.error`? | `string` | - | +| `get.responses.400.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:754](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L754) ##### `/issues/current` @@ -5094,18 +5094,18 @@ Defined in: [lib/swagger-types.ts:754](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | -| :------ | :------ | -| `get` | `object` | -| `get.responses` | { `200`: { `schema`: `unknown`; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | -| `get.responses.200` | { `schema`: `unknown`; } | -| `get.responses.200.schema` | `unknown` | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | -| `get.responses.404.schema.error`? | `string` | -| `get.responses.404.schema.errorMessage`? | `string` | +| Member | Type | +| :--------------------------------------- | :------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | +| `get.responses` | { `200`: { `schema`: `unknown`; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | +| `get.responses.200` | { `schema`: `unknown`; } | +| `get.responses.200.schema` | `unknown` | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | +| `get.responses.404.schema.error`? | `string` | +| `get.responses.404.schema.errorMessage`? | `string` | -Defined in: [lib/swagger-types.ts:791](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L791) +Defined in: [lib/swagger-types.ts:791](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L791) ##### `/issues/\{issueId}` @@ -5136,21 +5136,21 @@ Defined in: [lib/swagger-types.ts:791](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | If the issue has a custom section order, the `seq` property of each `SectionSummary` will reflect the sequence for that issue. | -| `get.parameters` | { `path`: { `issueId`: `number`; }; } | - | -| `get.parameters.path` | { `issueId`: `number`; } | - | -| `get.parameters.path.issueId` | `number` | Issue ID | -| `get.responses` | { `200`: { `schema`: `unknown`; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: `unknown`; } | The requested issue. | -| `get.responses.200.schema` | `unknown` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested issue could not be found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L805) +| Member | Type | Description | +| :--------------------------------------- | :------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | If the issue has a custom section order, the `seq` property of each `SectionSummary` will reflect the sequence for that issue. | +| `get.parameters` | { `path`: { `issueId`: `number`; }; } | - | +| `get.parameters.path` | { `issueId`: `number`; } | - | +| `get.parameters.path.issueId` | `number` | Issue ID | +| `get.responses` | { `200`: { `schema`: `unknown`; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: `unknown`; } | The requested issue. | +| `get.responses.200.schema` | `unknown` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested issue could not be found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:805](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L805) ##### `/site` @@ -5242,75 +5242,75 @@ Defined in: [lib/swagger-types.ts:805](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | -| :------ | :------ | -| `get` | `object` | -| `get.responses` | { `200`: { `schema`: { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; }; }; } | -| `get.responses.200` | { `schema`: { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; }; } | -| `get.responses.200.schema` | { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; } | -| `get.responses.200.schema.about`? | `string` | -| `get.responses.200.schema.contactEmail` | `string` | -| `get.responses.200.schema.contactName` | `string` | -| `get.responses.200.schema.enableBulkEmails`? | `number`[] | -| `get.responses.200.schema.installedLocales`? | `string`[] | -| `get.responses.200.schema.minPasswordLength`? | `number` | -| `get.responses.200.schema.pageFooter`? | `string` | -| `get.responses.200.schema.pageHeaderTitleImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | -| `get.responses.200.schema.pageHeaderTitleImage.altText`? | `string` | -| `get.responses.200.schema.pageHeaderTitleImage.dateUploaded`? | `string` | -| `get.responses.200.schema.pageHeaderTitleImage.height`? | `number` | -| `get.responses.200.schema.pageHeaderTitleImage.name`? | `string` | -| `get.responses.200.schema.pageHeaderTitleImage.temporaryFileId`? | `number` | -| `get.responses.200.schema.pageHeaderTitleImage.uploadName`? | `string` | -| `get.responses.200.schema.pageHeaderTitleImage.width`? | `number` | -| `get.responses.200.schema.primaryLocale`? | `string` | -| `get.responses.200.schema.privacyStatement`? | `string` | -| `get.responses.200.schema.redirect`? | `number` | -| `get.responses.200.schema.sidebar`? | `string`[] | -| `get.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | -| `get.responses.200.schema.styleSheet.dateUploaded`? | `string` | -| `get.responses.200.schema.styleSheet.name`? | `string` | -| `get.responses.200.schema.styleSheet.temporaryFileId`? | `number` | -| `get.responses.200.schema.styleSheet.uploadName`? | `string` | -| `get.responses.200.schema.supportedLocales`? | `string`[] | -| `get.responses.200.schema.themePluginPath`? | `string` | -| `get.responses.200.schema.title` | `string` | -| `put` | `object` | -| `put.parameters` | {} | -| `put.responses` | { `200`: { `schema`: { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; }; }; `400`: { `schema`: { }; }; } | -| `put.responses.200` | { `schema`: { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; }; } | -| `put.responses.200.schema` | { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; } | -| `put.responses.200.schema.about`? | `string` | -| `put.responses.200.schema.contactEmail` | `string` | -| `put.responses.200.schema.contactName` | `string` | -| `put.responses.200.schema.enableBulkEmails`? | `number`[] | -| `put.responses.200.schema.installedLocales`? | `string`[] | -| `put.responses.200.schema.minPasswordLength`? | `number` | -| `put.responses.200.schema.pageFooter`? | `string` | -| `put.responses.200.schema.pageHeaderTitleImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | -| `put.responses.200.schema.pageHeaderTitleImage.altText`? | `string` | -| `put.responses.200.schema.pageHeaderTitleImage.dateUploaded`? | `string` | -| `put.responses.200.schema.pageHeaderTitleImage.height`? | `number` | -| `put.responses.200.schema.pageHeaderTitleImage.name`? | `string` | -| `put.responses.200.schema.pageHeaderTitleImage.temporaryFileId`? | `number` | -| `put.responses.200.schema.pageHeaderTitleImage.uploadName`? | `string` | -| `put.responses.200.schema.pageHeaderTitleImage.width`? | `number` | -| `put.responses.200.schema.primaryLocale`? | `string` | -| `put.responses.200.schema.privacyStatement`? | `string` | -| `put.responses.200.schema.redirect`? | `number` | -| `put.responses.200.schema.sidebar`? | `string`[] | -| `put.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | -| `put.responses.200.schema.styleSheet.dateUploaded`? | `string` | -| `put.responses.200.schema.styleSheet.name`? | `string` | -| `put.responses.200.schema.styleSheet.temporaryFileId`? | `number` | -| `put.responses.200.schema.styleSheet.uploadName`? | `string` | -| `put.responses.200.schema.supportedLocales`? | `string`[] | -| `put.responses.200.schema.themePluginPath`? | `string` | -| `put.responses.200.schema.title` | `string` | -| `put.responses.400` | { `schema`: { }; } | -| `put.responses.400.schema` | { } | - -Defined in: [lib/swagger-types.ts:1098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1098) +| Member | Type | +| :--------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | +| `get.responses` | { `200`: { `schema`: { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; }; }; } | +| `get.responses.200` | { `schema`: { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; }; } | +| `get.responses.200.schema` | { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; } | +| `get.responses.200.schema.about`? | `string` | +| `get.responses.200.schema.contactEmail` | `string` | +| `get.responses.200.schema.contactName` | `string` | +| `get.responses.200.schema.enableBulkEmails`? | `number`[] | +| `get.responses.200.schema.installedLocales`? | `string`[] | +| `get.responses.200.schema.minPasswordLength`? | `number` | +| `get.responses.200.schema.pageFooter`? | `string` | +| `get.responses.200.schema.pageHeaderTitleImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | +| `get.responses.200.schema.pageHeaderTitleImage.altText`? | `string` | +| `get.responses.200.schema.pageHeaderTitleImage.dateUploaded`? | `string` | +| `get.responses.200.schema.pageHeaderTitleImage.height`? | `number` | +| `get.responses.200.schema.pageHeaderTitleImage.name`? | `string` | +| `get.responses.200.schema.pageHeaderTitleImage.temporaryFileId`? | `number` | +| `get.responses.200.schema.pageHeaderTitleImage.uploadName`? | `string` | +| `get.responses.200.schema.pageHeaderTitleImage.width`? | `number` | +| `get.responses.200.schema.primaryLocale`? | `string` | +| `get.responses.200.schema.privacyStatement`? | `string` | +| `get.responses.200.schema.redirect`? | `number` | +| `get.responses.200.schema.sidebar`? | `string`[] | +| `get.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | +| `get.responses.200.schema.styleSheet.dateUploaded`? | `string` | +| `get.responses.200.schema.styleSheet.name`? | `string` | +| `get.responses.200.schema.styleSheet.temporaryFileId`? | `number` | +| `get.responses.200.schema.styleSheet.uploadName`? | `string` | +| `get.responses.200.schema.supportedLocales`? | `string`[] | +| `get.responses.200.schema.themePluginPath`? | `string` | +| `get.responses.200.schema.title` | `string` | +| `put` | `object` | +| `put.parameters` | {} | +| `put.responses` | { `200`: { `schema`: { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; }; }; `400`: { `schema`: { }; }; } | +| `put.responses.200` | { `schema`: { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; }; } | +| `put.responses.200.schema` | { `about`?: `string`; `contactEmail`: `string`; `contactName`: `string`; `enableBulkEmails`?: `number`[]; `installedLocales`?: `string`[]; `minPasswordLength`?: `number`; `pageFooter`?: `string`; `pageHeaderTitleImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; }; `primaryLocale`?: `string`; `privacyStatement`?: `string`; `redirect`?: `number`; `sidebar`?: `string`[]; `styleSheet`?: { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `supportedLocales`?: `string`[]; `themePluginPath`?: `string`; `title`: `string`; } | +| `put.responses.200.schema.about`? | `string` | +| `put.responses.200.schema.contactEmail` | `string` | +| `put.responses.200.schema.contactName` | `string` | +| `put.responses.200.schema.enableBulkEmails`? | `number`[] | +| `put.responses.200.schema.installedLocales`? | `string`[] | +| `put.responses.200.schema.minPasswordLength`? | `number` | +| `put.responses.200.schema.pageFooter`? | `string` | +| `put.responses.200.schema.pageHeaderTitleImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; `width`?: `number`; } | +| `put.responses.200.schema.pageHeaderTitleImage.altText`? | `string` | +| `put.responses.200.schema.pageHeaderTitleImage.dateUploaded`? | `string` | +| `put.responses.200.schema.pageHeaderTitleImage.height`? | `number` | +| `put.responses.200.schema.pageHeaderTitleImage.name`? | `string` | +| `put.responses.200.schema.pageHeaderTitleImage.temporaryFileId`? | `number` | +| `put.responses.200.schema.pageHeaderTitleImage.uploadName`? | `string` | +| `put.responses.200.schema.pageHeaderTitleImage.width`? | `number` | +| `put.responses.200.schema.primaryLocale`? | `string` | +| `put.responses.200.schema.privacyStatement`? | `string` | +| `put.responses.200.schema.redirect`? | `number` | +| `put.responses.200.schema.sidebar`? | `string`[] | +| `put.responses.200.schema.styleSheet`? | { `dateUploaded`?: `string`; `name`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | +| `put.responses.200.schema.styleSheet.dateUploaded`? | `string` | +| `put.responses.200.schema.styleSheet.name`? | `string` | +| `put.responses.200.schema.styleSheet.temporaryFileId`? | `number` | +| `put.responses.200.schema.styleSheet.uploadName`? | `string` | +| `put.responses.200.schema.supportedLocales`? | `string`[] | +| `put.responses.200.schema.themePluginPath`? | `string` | +| `put.responses.200.schema.title` | `string` | +| `put.responses.400` | { `schema`: { }; } | +| `put.responses.400.schema` | { } | + +Defined in: [lib/swagger-types.ts:1098](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1098) ##### `/site/theme` @@ -5354,29 +5354,29 @@ Defined in: [lib/swagger-types.ts:1098](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Get the active theme and theme options for the site. | -| `get.responses` | { `200`: { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; } | The response will include the theme plugin directory in `themePluginPath`. Any theme options will be provided in additional keys based on the option name. | -| `get.responses.200.schema` | { `...`?: `string`; `themePluginPath`?: `string`; } | - | -| `get.responses.200.schema....`? | `string` | - | -| `get.responses.200.schema.themePluginPath`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Details about the active theme could not be found. This can occur when the active theme plugin is not installed or enabled. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | -| `put` | `object` | Get the active theme and theme options for the site. | -| `put.parameters` | {} | - | -| `put.responses` | { `200`: { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; }; `400`: { `schema`: { }; }; } | - | -| `put.responses.200` | { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; } | The new theme and values for any of its theme options. | -| `put.responses.200.schema` | { `...`?: `string`; `themePluginPath`?: `string`; } | - | -| `put.responses.200.schema....`? | `string` | - | -| `put.responses.200.schema.themePluginPath`? | `string` | - | -| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `put.responses.400.schema` | { } | - | - -Defined in: [lib/swagger-types.ts:1121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1121) +| Member | Type | Description | +| :------------------------------------------ | :------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | Get the active theme and theme options for the site. | +| `get.responses` | { `200`: { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; } | The response will include the theme plugin directory in `themePluginPath`. Any theme options will be provided in additional keys based on the option name. | +| `get.responses.200.schema` | { `...`?: `string`; `themePluginPath`?: `string`; } | - | +| `get.responses.200.schema....`? | `string` | - | +| `get.responses.200.schema.themePluginPath`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Details about the active theme could not be found. This can occur when the active theme plugin is not installed or enabled. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | +| `put` | `object` | Get the active theme and theme options for the site. | +| `put.parameters` | {} | - | +| `put.responses` | { `200`: { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; }; `400`: { `schema`: { }; }; } | - | +| `put.responses.200` | { `schema`: { `...`?: `string`; `themePluginPath`?: `string`; }; } | The new theme and values for any of its theme options. | +| `put.responses.200.schema` | { `...`?: `string`; `themePluginPath`?: `string`; } | - | +| `put.responses.200.schema....`? | `string` | - | +| `put.responses.200.schema.themePluginPath`? | `string` | - | +| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `put.responses.400.schema` | { } | - | + +Defined in: [lib/swagger-types.ts:1121](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1121) ##### `/stats/editorial` @@ -5421,31 +5421,31 @@ Defined in: [lib/swagger-types.ts:1121](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Returns information about editorial activity such as the number of submissions accepted and declined, the number of days to reach editorial decisions, and the acceptance and rejection rates. | -| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; `sectionIds`?: `number`[]; }; } | - | -| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; `sectionIds`?: `number`[]; } | - | -| `get.parameters.query.dateEnd`? | `string` | Return stats before this date. | -| `get.parameters.query.dateStart`? | `string` | Return stats after this date. | -| `get.parameters.query.sectionIds`? | `number`[] | Filter results by submissions to these sections. | -| `get.responses` | { `200`: { `schema`: `unknown`[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: `unknown`[]; } | An array containing the requested stats. The `name` may change with translation but the `key` will be a reliable, unique identifier for the statistic. | -| `get.responses.200.schema` | `unknown`[] | - | -| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | -| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.400.schema.error`? | `string` | - | -| `get.responses.400.schema.errorMessage`? | `string` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access editorial statistics for this journal or press. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. This should only occur if the API is requested without specifying the context. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1398) +| Member | Type | Description | +| :--------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | Returns information about editorial activity such as the number of submissions accepted and declined, the number of days to reach editorial decisions, and the acceptance and rejection rates. | +| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; `sectionIds`?: `number`[]; }; } | - | +| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; `sectionIds`?: `number`[]; } | - | +| `get.parameters.query.dateEnd`? | `string` | Return stats before this date. | +| `get.parameters.query.dateStart`? | `string` | Return stats after this date. | +| `get.parameters.query.sectionIds`? | `number`[] | Filter results by submissions to these sections. | +| `get.responses` | { `200`: { `schema`: `unknown`[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: `unknown`[]; } | An array containing the requested stats. The `name` may change with translation but the `key` will be a reliable, unique identifier for the statistic. | +| `get.responses.200.schema` | `unknown`[] | - | +| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | +| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.400.schema.error`? | `string` | - | +| `get.responses.400.schema.errorMessage`? | `string` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access editorial statistics for this journal or press. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. This should only occur if the API is requested without specifying the context. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1398](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1398) ##### `/stats/editorial/averages` @@ -5482,25 +5482,25 @@ Defined in: [lib/swagger-types.ts:1398](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Returns yearly averages of editorial activity. To ensure averages are calculated fairly, partial years are not included in the averages. For example, if the first submission was received in October 2017 and the last submission was received in the current calendar year, only submissions from 2018 up until the end of the previous calendar year will be used to calculate the average. | -| `get.parameters` | { `query`: { `sectionIds`?: `number`[]; }; } | - | -| `get.parameters.query` | { `sectionIds`?: `number`[]; } | - | -| `get.parameters.query.sectionIds`? | `number`[] | Filter results by submissions to these sections. | -| `get.responses` | { `200`: { `schema`: `unknown`[]; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: `unknown`[]; } | An object containing the requested averages. Each property matches one of the properties from `/stats/editorial`. The value `-1` may be returned for a property if an average can not be calculated. This can occur if there is not a full calendar year of activity to average. | -| `get.responses.200.schema` | `unknown`[] | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access editorial statistics for this journal or press. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. This should only occur if the API is requested without specifying the context. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1431) +| Member | Type | Description | +| :--------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | Returns yearly averages of editorial activity. To ensure averages are calculated fairly, partial years are not included in the averages. For example, if the first submission was received in October 2017 and the last submission was received in the current calendar year, only submissions from 2018 up until the end of the previous calendar year will be used to calculate the average. | +| `get.parameters` | { `query`: { `sectionIds`?: `number`[]; }; } | - | +| `get.parameters.query` | { `sectionIds`?: `number`[]; } | - | +| `get.parameters.query.sectionIds`? | `number`[] | Filter results by submissions to these sections. | +| `get.responses` | { `200`: { `schema`: `unknown`[]; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: `unknown`[]; } | An object containing the requested averages. Each property matches one of the properties from `/stats/editorial`. The value `-1` may be returned for a property if an average can not be calculated. This can occur if there is not a full calendar year of activity to average. | +| `get.responses.200.schema` | `unknown`[] | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access editorial statistics for this journal or press. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. This should only occur if the API is requested without specifying the context. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1431](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1431) ##### `/stats/publications` @@ -5565,36 +5565,36 @@ Defined in: [lib/swagger-types.ts:1431](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Returns a list of publications ordered by their total abstract views. Includes total views by abstract, all galleys, PDF galleys, HTML galleys and other galleys. | -| `get.parameters` | { `query`: { `count`?: `unknown`; `dateEnd`?: `string`; `dateStart`?: `string`; `offset`?: `number`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `sectionIds`?: `string`; `submissionIds`?: `number`[]; }; } | - | -| `get.parameters.query` | { `count`?: `unknown`; `dateEnd`?: `string`; `dateStart`?: `string`; `offset`?: `number`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `sectionIds`?: `string`; `submissionIds`?: `number`[]; } | - | -| `get.parameters.query.count`? | `unknown` | How many publications to return in a single request. Max is `100`. | -| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | -| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | -| `get.parameters.query.offset`? | `number` | Offset the publications returned. Use this to receive subsequent pages of requests. | -| `get.parameters.query.orderDirection`? | `"ASC"` | `"DESC"` | Return the results in ascending or descending order. | -| `get.parameters.query.searchPhrase`? | `string` | Filter results by publications that match this search phrase. Searches the same submission properties as the `searchPhrase` parameter in the `/submissions` endpoint. | -| `get.parameters.query.sectionIds`? | `string` | Filter results by publications in these sections. | -| `get.parameters.query.submissionIds`? | `number`[] | Filter results by these submissions. | -| `get.responses` | { `200`: { `schema`: { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }[]; } | A list of publications with their total stats during the requested period. | -| `get.responses.200.schema` | { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }[] | - | -| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | -| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.400.schema.error`? | `string` | - | -| `get.responses.400.schema.errorMessage`? | `string` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1456) +| Member | Type | Description | +| :--------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- | +| `get` | `object` | Returns a list of publications ordered by their total abstract views. Includes total views by abstract, all galleys, PDF galleys, HTML galleys and other galleys. | +| `get.parameters` | { `query`: { `count`?: `unknown`; `dateEnd`?: `string`; `dateStart`?: `string`; `offset`?: `number`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `sectionIds`?: `string`; `submissionIds`?: `number`[]; }; } | - | +| `get.parameters.query` | { `count`?: `unknown`; `dateEnd`?: `string`; `dateStart`?: `string`; `offset`?: `number`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `sectionIds`?: `string`; `submissionIds`?: `number`[]; } | - | +| `get.parameters.query.count`? | `unknown` | How many publications to return in a single request. Max is `100`. | +| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | +| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | +| `get.parameters.query.offset`? | `number` | Offset the publications returned. Use this to receive subsequent pages of requests. | +| `get.parameters.query.orderDirection`? | `"ASC"` | `"DESC"` | Return the results in ascending or descending order. | +| `get.parameters.query.searchPhrase`? | `string` | Filter results by publications that match this search phrase. Searches the same submission properties as the `searchPhrase` parameter in the `/submissions` endpoint. | +| `get.parameters.query.sectionIds`? | `string` | Filter results by publications in these sections. | +| `get.parameters.query.submissionIds`? | `number`[] | Filter results by these submissions. | +| `get.responses` | { `200`: { `schema`: { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }[]; } | A list of publications with their total stats during the requested period. | +| `get.responses.200.schema` | { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }[] | - | +| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | +| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.400.schema.error`? | `string` | - | +| `get.responses.400.schema.errorMessage`? | `string` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1456](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1456) ##### `/stats/publications/abstract` @@ -5646,34 +5646,34 @@ Defined in: [lib/swagger-types.ts:1456](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Returns a monthly or daily timeline of abstract views for the publications which match the request parameters. | -| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `submissionIds`?: `number`[]; `timelineInterval`?: `"day"` | `"month"`; }; } | - | -| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `submissionIds`?: `number`[]; `timelineInterval`?: `"day"` | `"month"`; } | - | -| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | -| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | -| `get.parameters.query.searchPhrase`? | `string` | Filter results by publications that match this search phrase. Searches the same submission properties as the `searchPhrase` parameter in the `/submissions` endpoint. | -| `get.parameters.query.sectionIds`? | `number`[] | Filter results by publications in these sections. | -| `get.parameters.query.submissionIds`? | `number`[] | Filter results by these submissions. | -| `get.parameters.query.timelineInterval`? | `"day"` | `"month"` | Return the total daily or monthly views | -| `get.responses` | { `200`: { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; } | A list of days or months with the total stats for that day or month. | -| `get.responses.200.schema` | { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[] | - | -| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | -| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.400.schema.error`? | `string` | - | -| `get.responses.400.schema.errorMessage`? | `string` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1499) +| Member | Type | Description | +| :--------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------- | +| `get` | `object` | Returns a monthly or daily timeline of abstract views for the publications which match the request parameters. | +| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `submissionIds`?: `number`[]; `timelineInterval`?: `"day"` | `"month"`; }; } | - | +| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `submissionIds`?: `number`[]; `timelineInterval`?: `"day"` | `"month"`; } | - | +| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | +| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | +| `get.parameters.query.searchPhrase`? | `string` | Filter results by publications that match this search phrase. Searches the same submission properties as the `searchPhrase` parameter in the `/submissions` endpoint. | +| `get.parameters.query.sectionIds`? | `number`[] | Filter results by publications in these sections. | +| `get.parameters.query.submissionIds`? | `number`[] | Filter results by these submissions. | +| `get.parameters.query.timelineInterval`? | `"day"` | `"month"` | Return the total daily or monthly views | +| `get.responses` | { `200`: { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; } | A list of days or months with the total stats for that day or month. | +| `get.responses.200.schema` | { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[] | - | +| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | +| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.400.schema.error`? | `string` | - | +| `get.responses.400.schema.errorMessage`? | `string` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1499](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1499) ##### `/stats/publications/galley` @@ -5725,34 +5725,34 @@ Defined in: [lib/swagger-types.ts:1499](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Returns a monthly or daily timeline of galley views for the publications which match the request parameters. | -| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `submissionIds`?: `number`[]; `timelineInterval`?: `"day"` | `"month"`; }; } | - | -| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `submissionIds`?: `number`[]; `timelineInterval`?: `"day"` | `"month"`; } | - | -| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | -| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | -| `get.parameters.query.searchPhrase`? | `string` | Filter results by publications that match this search phrase. Searches the same submission properties as the `searchPhrase` parameter in the `/submissions` endpoint. | -| `get.parameters.query.sectionIds`? | `number`[] | Filter results by publications in these sections. | -| `get.parameters.query.submissionIds`? | `number`[] | Filter results by these publications. | -| `get.parameters.query.timelineInterval`? | `"day"` | `"month"` | Return the total daily or monthly views. | -| `get.responses` | { `200`: { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; } | A list of days or months with the total stats for that day or month. | -| `get.responses.200.schema` | { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[] | - | -| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | -| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.400.schema.error`? | `string` | - | -| `get.responses.400.schema.errorMessage`? | `string` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1538) +| Member | Type | Description | +| :--------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- | +| `get` | `object` | Returns a monthly or daily timeline of galley views for the publications which match the request parameters. | +| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `submissionIds`?: `number`[]; `timelineInterval`?: `"day"` | `"month"`; }; } | - | +| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `submissionIds`?: `number`[]; `timelineInterval`?: `"day"` | `"month"`; } | - | +| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | +| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | +| `get.parameters.query.searchPhrase`? | `string` | Filter results by publications that match this search phrase. Searches the same submission properties as the `searchPhrase` parameter in the `/submissions` endpoint. | +| `get.parameters.query.sectionIds`? | `number`[] | Filter results by publications in these sections. | +| `get.parameters.query.submissionIds`? | `number`[] | Filter results by these publications. | +| `get.parameters.query.timelineInterval`? | `"day"` | `"month"` | Return the total daily or monthly views. | +| `get.responses` | { `200`: { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; } | A list of days or months with the total stats for that day or month. | +| `get.responses.200.schema` | { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[] | - | +| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | +| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.400.schema.error`? | `string` | - | +| `get.responses.400.schema.errorMessage`? | `string` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1538](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1538) ##### `/stats/publications/\{submissionId}` @@ -5811,42 +5811,42 @@ Defined in: [lib/swagger-types.ts:1538](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Returns a publication's total views by abstract, all galleys, PDF galleys, HTML galleys and other galleys. | -| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; }; } | - | -| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; } | - | -| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | -| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | -| `get.responses` | { `200`: { `schema`: { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; } | The total stats for the publication during the period requested. | -| `get.responses.200.schema` | { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; } | - | -| `get.responses.200.schema.abstractViews`? | `number` | - | -| `get.responses.200.schema.galleyViews`? | `number` | - | -| `get.responses.200.schema.htmlViews`? | `number` | - | -| `get.responses.200.schema.otherViews`? | `number` | - | -| `get.responses.200.schema.pdfViews`? | `number` | - | -| `get.responses.200.schema.publication`? | { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; } | - | -| `get.responses.200.schema.publication._href`? | `string` | - | -| `get.responses.200.schema.publication.fullTitle`? | { } | - | -| `get.responses.200.schema.publication.id`? | `number` | - | -| `get.responses.200.schema.publication.shortAuthorString`? | `string` | - | -| `get.responses.200.schema.publication.urlPublished`? | `string` | - | -| `get.responses.200.schema.publication.urlWorkflow`? | `string` | - | -| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | -| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.400.schema.error`? | `string` | - | -| `get.responses.400.schema.errorMessage`? | `string` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1577) +| Member | Type | Description | +| :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | Returns a publication's total views by abstract, all galleys, PDF galleys, HTML galleys and other galleys. | +| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; }; } | - | +| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; } | - | +| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | +| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | +| `get.responses` | { `200`: { `schema`: { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; } | The total stats for the publication during the period requested. | +| `get.responses.200.schema` | { `abstractViews`?: `number`; `galleyViews`?: `number`; `htmlViews`?: `number`; `otherViews`?: `number`; `pdfViews`?: `number`; `publication`?: { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; } | - | +| `get.responses.200.schema.abstractViews`? | `number` | - | +| `get.responses.200.schema.galleyViews`? | `number` | - | +| `get.responses.200.schema.htmlViews`? | `number` | - | +| `get.responses.200.schema.otherViews`? | `number` | - | +| `get.responses.200.schema.pdfViews`? | `number` | - | +| `get.responses.200.schema.publication`? | { `_href`?: `string`; `fullTitle`?: { }; `id`?: `number`; `shortAuthorString`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; } | - | +| `get.responses.200.schema.publication._href`? | `string` | - | +| `get.responses.200.schema.publication.fullTitle`? | { } | - | +| `get.responses.200.schema.publication.id`? | `number` | - | +| `get.responses.200.schema.publication.shortAuthorString`? | `string` | - | +| `get.responses.200.schema.publication.urlPublished`? | `string` | - | +| `get.responses.200.schema.publication.urlWorkflow`? | `string` | - | +| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | +| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.400.schema.error`? | `string` | - | +| `get.responses.400.schema.errorMessage`? | `string` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1577](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1577) ##### `/stats/publications/\{submissionId}/abstract` @@ -5895,31 +5895,31 @@ Defined in: [lib/swagger-types.ts:1577](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Returns a monthly or daily timeline of abstract views for the requested publication. | -| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; `timelineInterval`?: `"day"` | `"month"`; }; } | - | -| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; `timelineInterval`?: `"day"` | `"month"`; } | - | -| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | -| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | -| `get.parameters.query.timelineInterval`? | `"day"` | `"month"` | Return the total daily or monthly views | -| `get.responses` | { `200`: { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; } | A list of days or months with the total stats for that day or month. | -| `get.responses.200.schema` | { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[] | - | -| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | -| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.400.schema.error`? | `string` | - | -| `get.responses.400.schema.errorMessage`? | `string` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1608) +| Member | Type | Description | +| :--------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :----------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------- | +| `get` | `object` | Returns a monthly or daily timeline of abstract views for the requested publication. | +| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; `timelineInterval`?: `"day"` | `"month"`; }; } | - | +| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; `timelineInterval`?: `"day"` | `"month"`; } | - | +| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | +| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | +| `get.parameters.query.timelineInterval`? | `"day"` | `"month"` | Return the total daily or monthly views | +| `get.responses` | { `200`: { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; } | A list of days or months with the total stats for that day or month. | +| `get.responses.200.schema` | { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[] | - | +| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | +| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.400.schema.error`? | `string` | - | +| `get.responses.400.schema.errorMessage`? | `string` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1608](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1608) ##### `/stats/publications/\{submissionId}/galley` @@ -5968,31 +5968,31 @@ Defined in: [lib/swagger-types.ts:1608](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Returns a monthly or daily timeline of galley views for the requested publication. | -| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; `timelineInterval`?: `"day"` | `"month"`; }; } | - | -| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; `timelineInterval`?: `"day"` | `"month"`; } | - | -| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | -| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | -| `get.parameters.query.timelineInterval`? | `"day"` | `"month"` | Return the total daily or monthly views. | -| `get.responses` | { `200`: { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; } | A list of days or months with the total stats for that day or month. | -| `get.responses.200.schema` | { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[] | - | -| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | -| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.400.schema.error`? | `string` | - | -| `get.responses.400.schema.errorMessage`? | `string` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1641) +| Member | Type | Description | +| :--------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :----------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- | +| `get` | `object` | Returns a monthly or daily timeline of galley views for the requested publication. | +| `get.parameters` | { `query`: { `dateEnd`?: `string`; `dateStart`?: `string`; `timelineInterval`?: `"day"` | `"month"`; }; } | - | +| `get.parameters.query` | { `dateEnd`?: `string`; `dateStart`?: `string`; `timelineInterval`?: `"day"` | `"month"`; } | - | +| `get.parameters.query.dateEnd`? | `string` | Return stats for publications before this date. | +| `get.parameters.query.dateStart`? | `string` | Return stats for publications after this date. | +| `get.parameters.query.timelineInterval`? | `"day"` | `"month"` | Return the total daily or monthly views. | +| `get.responses` | { `200`: { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[]; } | A list of days or months with the total stats for that day or month. | +| `get.responses.200.schema` | { `date`?: `string`; `label`?: `string`; `value`?: `number`; }[] | - | +| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | +| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.400.schema.error`? | `string` | - | +| `get.responses.400.schema.errorMessage`? | `string` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access statistics for this journal or press. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1641](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1641) ##### `/stats/users` @@ -6037,31 +6037,31 @@ Defined in: [lib/swagger-types.ts:1641](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Returns a count of the number of user registrations broken down by roles. Please note when using the `registeredBefore` and `registeredAfter` parameters that role counts reflect current user roles. A user who registered as an author in January, 2019 but was later appointed to subeditor will be counted as a subeditor when the registration date range includes January, 2019. | -| `get.parameters` | { `query`: { `registeredAfter`?: `string`; `registeredBefore`?: `string`; `status`?: `"active"` | `"disabled"`; }; } | - | -| `get.parameters.query` | { `registeredAfter`?: `string`; `registeredBefore`?: `string`; `status`?: `"active"` | `"disabled"`; } | - | -| `get.parameters.query.registeredAfter`? | `string` | Return counts reflecting users who registered after this date. | -| `get.parameters.query.registeredBefore`? | `string` | Return counts reflecting users who registered before this date. | -| `get.parameters.query.status`? | `"active"` | `"disabled"` | Count `active` or `disabled` users. Default: `active`. | -| `get.responses` | { `200`: { `schema`: `unknown`[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: `unknown`[]; } | An object containing the requested stats. The `id` relects the `ROLE_ID_*` constant in the application. | -| `get.responses.200.schema` | `unknown`[] | - | -| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | -| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.400.schema.error`? | `string` | - | -| `get.responses.400.schema.errorMessage`? | `string` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access user statistics for this journal or press. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. This should only occur if the API is requested without specifying the context. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1674) +| Member | Type | Description | +| :--------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------ | +| `get` | `object` | Returns a count of the number of user registrations broken down by roles. Please note when using the `registeredBefore` and `registeredAfter` parameters that role counts reflect current user roles. A user who registered as an author in January, 2019 but was later appointed to subeditor will be counted as a subeditor when the registration date range includes January, 2019. | +| `get.parameters` | { `query`: { `registeredAfter`?: `string`; `registeredBefore`?: `string`; `status`?: `"active"` | `"disabled"`; }; } | - | +| `get.parameters.query` | { `registeredAfter`?: `string`; `registeredBefore`?: `string`; `status`?: `"active"` | `"disabled"`; } | - | +| `get.parameters.query.registeredAfter`? | `string` | Return counts reflecting users who registered after this date. | +| `get.parameters.query.registeredBefore`? | `string` | Return counts reflecting users who registered before this date. | +| `get.parameters.query.status`? | `"active"` | `"disabled"` | Count `active` or `disabled` users. Default: `active`. | +| `get.responses` | { `200`: { `schema`: `unknown`[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: `unknown`[]; } | An object containing the requested stats. The `id` relects the `ROLE_ID_*` constant in the application. | +| `get.responses.200.schema` | `unknown`[] | - | +| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | Your request was not valid. One or more of the request parameters will be invalid. The error message will contain details about the invalid parameter. | +| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.400.schema.error`? | `string` | - | +| `get.responses.400.schema.errorMessage`? | `string` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access user statistics for this journal or press. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested resource was not found. This should only occur if the API is requested without specifying the context. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1674](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1674) ##### `/submissions` @@ -6410,101 +6410,101 @@ Defined in: [lib/swagger-types.ts:1674](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | See `/submissions/{submissionId}` for notes about submission properties. | -| `get.parameters` | { `query`: { `assignedTo`?: `number`[]; `count`?: `number`; `daysInactive`?: `number`; `isIncomplete`?: `boolean`; `isOverdue`?: `boolean`; `issueIds`?: `number`[]; `offset`?: `number`; `orderBy`?: `"datePublished"` | `"dateSubmitted"` | `"lastActivity"` | `"lastModified"` | `"sequence"` | `"title"`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `status`?: (`1` | `3` | `4` | `5`)[]; }; } | - | -| `get.parameters.query` | { `assignedTo`?: `number`[]; `count`?: `number`; `daysInactive`?: `number`; `isIncomplete`?: `boolean`; `isOverdue`?: `boolean`; `issueIds`?: `number`[]; `offset`?: `number`; `orderBy`?: `"datePublished"` | `"dateSubmitted"` | `"lastActivity"` | `"lastModified"` | `"sequence"` | `"title"`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `status`?: (`1` | `3` | `4` | `5`)[]; } | - | -| `get.parameters.query.assignedTo`? | `number`[] | Filter results by those assigned to one or more user ids. All users except managers and admins are automatically restricted to assigned submissions and do not need to pass this parameter. | -| `get.parameters.query.count`? | `number` | How many results to return in a single request. Max is `100`. | -| `get.parameters.query.daysInactive`? | `number` | Filter the results by those which have not had activity for the last X days. | -| `get.parameters.query.isIncomplete`? | `boolean` | Filter the results by those for which the author has not yet completed the submission process. | -| `get.parameters.query.isOverdue`? | `boolean` | Filter the results by those for which a reviewer has missed a deadline. | -| `get.parameters.query.issueIds`? | `number`[] | Filter the results by those with one or more publications assigned to an issue. | -| `get.parameters.query.offset`? | `number` | Offset the results returned. Use this to receive subsequent pages of requests. A `count` of `10` and `offset` of `15` will return results `15` to `25`. | -| `get.parameters.query.orderBy`? | `"datePublished"` | `"dateSubmitted"` | `"lastActivity"` | `"lastModified"` | `"sequence"` | `"title"` | Order the results returned. | -| `get.parameters.query.orderDirection`? | `"ASC"` | `"DESC"` | Return the results in ascending or descending order. | -| `get.parameters.query.searchPhrase`? | `string` | Filter the results by a search phrase matched against the title and authors. | -| `get.parameters.query.sectionIds`? | `number`[] | Filter the results by those with one or more publications assigned to a section. | -| `get.parameters.query.status`? | (`1` | `3` | `4` | `5`)[] | Filter results by one or more submission statuses. Must match the value of one of the `PKPSubmission::STATUS_QUEUED`, `PKPSubmission::STATUS_SCHEDULED`, `PKPSubmission::STATUS_PUBLISHED` or `PKPSubmission::STATUS_DECLINED` constants. | -| `get.responses` | { `200`: { `schema`: { `items`?: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }[]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `items`?: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }[]; `itemsMax`?: `number`; }; } | List of requested submissions. | -| `get.responses.200.schema` | { `items`?: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }[]; `itemsMax`?: `number`; } | - | -| `get.responses.200.schema.items`? | { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }[] | - | -| `get.responses.200.schema.itemsMax`? | `number` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access submissions assigned to the user requested in the `assignedTo` parameter. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `post` | `object` | - | -| `post.parameters` | { `body`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; } | - | -| `post.parameters.body` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | - | -| `post.parameters.body.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | -| `post.parameters.body.schema._href`? | `string` | Format: uri | -| `post.parameters.body.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `post.parameters.body.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `post.parameters.body.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `post.parameters.body.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `post.parameters.body.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `post.parameters.body.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `post.parameters.body.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `post.parameters.body.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `post.parameters.body.schema.dependentFiles`? | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `post.parameters.body.schema.description`? | `string` | - | -| `post.parameters.body.schema.documentType`? | `string` | - | -| `post.parameters.body.schema.file`? | `string` | Format: binary | -| `post.parameters.body.schema.fileId` | `number` | - | -| `post.parameters.body.schema.fileStage` | `number` | - | -| `post.parameters.body.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | -| `post.parameters.body.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `post.parameters.body.schema.genre.id`? | `number` | - | -| `post.parameters.body.schema.genre.name`? | `string` | - | -| `post.parameters.body.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `post.parameters.body.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `post.parameters.body.schema.id`? | `number` | - | -| `post.parameters.body.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `post.parameters.body.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `post.parameters.body.schema.mimetype`? | `string` | - | -| `post.parameters.body.schema.name` | { } | - | -| `post.parameters.body.schema.path`? | `string` | - | -| `post.parameters.body.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `post.parameters.body.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `post.parameters.body.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `post.parameters.body.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `post.parameters.body.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `post.parameters.body.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `post.parameters.body.schema.submissionId` | `number` | - | -| `post.parameters.body.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `post.parameters.body.schema.updatedAt`? | `string` | `Description` When this object was last updated. | -| `post.parameters.body.schema.uploaderUserId` | `number` | - | -| `post.parameters.body.schema.url`? | `string` | - | -| `post.parameters.body.schema.viewable`? | `boolean` | - | -| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; `400`: { `schema`: { }; }; } | - | -| `post.responses.200` | { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; } | Details of the submission that was just added. | -| `post.responses.200.schema` | { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; } | - | -| `post.responses.200.schema._href`? | `string` | - | -| `post.responses.200.schema.contextId` | `number` | - | -| `post.responses.200.schema.currentPublicationId`? | `number` | `Description` Which publication is the latest published version. | -| `post.responses.200.schema.dateLastActivity`? | `string` | `Description` The last time activity was recorded related to this submission. | -| `post.responses.200.schema.dateSubmitted`? | `string` | - | -| `post.responses.200.schema.id`? | `number` | - | -| `post.responses.200.schema.lastModified`? | `string` | `Description` The last time a modification was made to this submission or any of its associated objects. | -| `post.responses.200.schema.locale`? | `string` | `Description` The primary language of this submission. | -| `post.responses.200.schema.publications`? | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | `Description` A list of publications that have been created for this submission. | -| `post.responses.200.schema.reviewAssignments`? | { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[] | `Description` Information about pending and completed review assignments. | -| `post.responses.200.schema.reviewRounds`? | { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[] | `Description` A list of review rounds that have been opened for this submission. | -| `post.responses.200.schema.sectionId` | `number` | `Description` The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the `sectionId`. | -| `post.responses.200.schema.stageId`? | `number` | `Description` The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. `Default` 1 | -| `post.responses.200.schema.stages`? | { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[] | `Description` Key data about the status, files and discussions of each stage. | -| `post.responses.200.schema.status`? | `number` | `Description` Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `post.responses.200.schema.statusLabel`? | `string` | `Description` A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. | -| `post.responses.200.schema.submissionProgress`? | `number` | `Description` This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. `Default` 1 | -| `post.responses.200.schema.urlAuthorWorkflow`? | `string` | `Description` A URL to the author's editorial workflow. | -| `post.responses.200.schema.urlEditorialWorkflow`? | `string` | `Description` A URL to the editors' and assistants' editorial workflow. | -| `post.responses.200.schema.urlPublished`? | `string` | `Description` A URL to the current publication or where it will be published. | -| `post.responses.200.schema.urlWorkflow`? | `string` | `Description` A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or `urlEditorialWorkflow. | | `post.responses.400`| { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | | `post.responses.400.schema\` | { } | - | - -Defined in: [lib/swagger-types.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L7) +| Member | Type | Description | +| :---------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- | --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | ------------ | --- | +| `get` | `object` | See `/submissions/{submissionId}` for notes about submission properties. | +| `get.parameters` | { `query`: { `assignedTo`?: `number`[]; `count`?: `number`; `daysInactive`?: `number`; `isIncomplete`?: `boolean`; `isOverdue`?: `boolean`; `issueIds`?: `number`[]; `offset`?: `number`; `orderBy`?: `"datePublished"` | `"dateSubmitted"` | `"lastActivity"` | `"lastModified"` | `"sequence"` | `"title"`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `status`?: (`1` | `3` | `4` | `5`)[]; }; } | - | +| `get.parameters.query` | { `assignedTo`?: `number`[]; `count`?: `number`; `daysInactive`?: `number`; `isIncomplete`?: `boolean`; `isOverdue`?: `boolean`; `issueIds`?: `number`[]; `offset`?: `number`; `orderBy`?: `"datePublished"` | `"dateSubmitted"` | `"lastActivity"` | `"lastModified"` | `"sequence"` | `"title"`; `orderDirection`?: `"ASC"` | `"DESC"`; `searchPhrase`?: `string`; `sectionIds`?: `number`[]; `status`?: (`1` | `3` | `4` | `5`)[]; } | - | +| `get.parameters.query.assignedTo`? | `number`[] | Filter results by those assigned to one or more user ids. All users except managers and admins are automatically restricted to assigned submissions and do not need to pass this parameter. | +| `get.parameters.query.count`? | `number` | How many results to return in a single request. Max is `100`. | +| `get.parameters.query.daysInactive`? | `number` | Filter the results by those which have not had activity for the last X days. | +| `get.parameters.query.isIncomplete`? | `boolean` | Filter the results by those for which the author has not yet completed the submission process. | +| `get.parameters.query.isOverdue`? | `boolean` | Filter the results by those for which a reviewer has missed a deadline. | +| `get.parameters.query.issueIds`? | `number`[] | Filter the results by those with one or more publications assigned to an issue. | +| `get.parameters.query.offset`? | `number` | Offset the results returned. Use this to receive subsequent pages of requests. A `count` of `10` and `offset` of `15` will return results `15` to `25`. | +| `get.parameters.query.orderBy`? | `"datePublished"` | `"dateSubmitted"` | `"lastActivity"` | `"lastModified"` | `"sequence"` | `"title"` | Order the results returned. | +| `get.parameters.query.orderDirection`? | `"ASC"` | `"DESC"` | Return the results in ascending or descending order. | +| `get.parameters.query.searchPhrase`? | `string` | Filter the results by a search phrase matched against the title and authors. | +| `get.parameters.query.sectionIds`? | `number`[] | Filter the results by those with one or more publications assigned to a section. | +| `get.parameters.query.status`? | (`1` | `3` | `4` | `5`)[] | Filter results by one or more submission statuses. Must match the value of one of the `PKPSubmission::STATUS_QUEUED`, `PKPSubmission::STATUS_SCHEDULED`, `PKPSubmission::STATUS_PUBLISHED` or `PKPSubmission::STATUS_DECLINED` constants. | +| `get.responses` | { `200`: { `schema`: { `items`?: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }[]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `items`?: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }[]; `itemsMax`?: `number`; }; } | List of requested submissions. | +| `get.responses.200.schema` | { `items`?: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }[]; `itemsMax`?: `number`; } | - | +| `get.responses.200.schema.items`? | { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }[] | - | +| `get.responses.200.schema.itemsMax`? | `number` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access submissions assigned to the user requested in the `assignedTo` parameter. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `post` | `object` | - | +| `post.parameters` | { `body`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; } | - | +| `post.parameters.body` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | - | +| `post.parameters.body.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | +| `post.parameters.body.schema._href`? | `string` | Format: uri | +| `post.parameters.body.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `post.parameters.body.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `post.parameters.body.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `post.parameters.body.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `post.parameters.body.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `post.parameters.body.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `post.parameters.body.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `post.parameters.body.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `post.parameters.body.schema.dependentFiles`? | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `post.parameters.body.schema.description`? | `string` | - | +| `post.parameters.body.schema.documentType`? | `string` | - | +| `post.parameters.body.schema.file`? | `string` | Format: binary | +| `post.parameters.body.schema.fileId` | `number` | - | +| `post.parameters.body.schema.fileStage` | `number` | - | +| `post.parameters.body.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | +| `post.parameters.body.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `post.parameters.body.schema.genre.id`? | `number` | - | +| `post.parameters.body.schema.genre.name`? | `string` | - | +| `post.parameters.body.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `post.parameters.body.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `post.parameters.body.schema.id`? | `number` | - | +| `post.parameters.body.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `post.parameters.body.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `post.parameters.body.schema.mimetype`? | `string` | - | +| `post.parameters.body.schema.name` | { } | - | +| `post.parameters.body.schema.path`? | `string` | - | +| `post.parameters.body.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `post.parameters.body.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `post.parameters.body.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `post.parameters.body.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `post.parameters.body.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `post.parameters.body.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `post.parameters.body.schema.submissionId` | `number` | - | +| `post.parameters.body.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `post.parameters.body.schema.updatedAt`? | `string` | `Description` When this object was last updated. | +| `post.parameters.body.schema.uploaderUserId` | `number` | - | +| `post.parameters.body.schema.url`? | `string` | - | +| `post.parameters.body.schema.viewable`? | `boolean` | - | +| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; `400`: { `schema`: { }; }; } | - | +| `post.responses.200` | { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; } | Details of the submission that was just added. | +| `post.responses.200.schema` | { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; } | - | +| `post.responses.200.schema._href`? | `string` | - | +| `post.responses.200.schema.contextId` | `number` | - | +| `post.responses.200.schema.currentPublicationId`? | `number` | `Description` Which publication is the latest published version. | +| `post.responses.200.schema.dateLastActivity`? | `string` | `Description` The last time activity was recorded related to this submission. | +| `post.responses.200.schema.dateSubmitted`? | `string` | - | +| `post.responses.200.schema.id`? | `number` | - | +| `post.responses.200.schema.lastModified`? | `string` | `Description` The last time a modification was made to this submission or any of its associated objects. | +| `post.responses.200.schema.locale`? | `string` | `Description` The primary language of this submission. | +| `post.responses.200.schema.publications`? | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | `Description` A list of publications that have been created for this submission. | +| `post.responses.200.schema.reviewAssignments`? | { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[] | `Description` Information about pending and completed review assignments. | +| `post.responses.200.schema.reviewRounds`? | { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[] | `Description` A list of review rounds that have been opened for this submission. | +| `post.responses.200.schema.sectionId` | `number` | `Description` The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the `sectionId`. | +| `post.responses.200.schema.stageId`? | `number` | `Description` The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. `Default` 1 | +| `post.responses.200.schema.stages`? | { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[] | `Description` Key data about the status, files and discussions of each stage. | +| `post.responses.200.schema.status`? | `number` | `Description` Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `post.responses.200.schema.statusLabel`? | `string` | `Description` A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. | +| `post.responses.200.schema.submissionProgress`? | `number` | `Description` This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. `Default` 1 | +| `post.responses.200.schema.urlAuthorWorkflow`? | `string` | `Description` A URL to the author's editorial workflow. | +| `post.responses.200.schema.urlEditorialWorkflow`? | `string` | `Description` A URL to the editors' and assistants' editorial workflow. | +| `post.responses.200.schema.urlPublished`? | `string` | `Description` A URL to the current publication or where it will be published. | +| `post.responses.200.schema.urlWorkflow`? | `string` | `Description` A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or `urlEditorialWorkflow. | | `post.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | | `post.responses.400.schema\` | { } | - | + +Defined in: [lib/swagger-types.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L7) ##### `/submissions/\{submissionId}` @@ -7004,144 +7004,144 @@ Defined in: [lib/swagger-types.ts:7](https://github.com/TrialAndErrorOrg/parser ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `delete` | `object` | Only journal managers and subeditors can make a request to this endpoint. | -| `delete.parameters` | { `path`: { `submissionId`: `number`; }; } | - | -| `delete.parameters.path` | { `submissionId`: `number`; } | - | -| `delete.parameters.path.submissionId` | `number` | Submission ID | -| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `delete.responses.200` | { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; } | Details of the deleted submission. | -| `delete.responses.200.schema` | { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; } | - | -| `delete.responses.200.schema._href`? | `string` | - | -| `delete.responses.200.schema.contextId` | `number` | - | -| `delete.responses.200.schema.currentPublicationId`? | `number` | `Description` Which publication is the latest published version. | -| `delete.responses.200.schema.dateLastActivity`? | `string` | `Description` The last time activity was recorded related to this submission. | -| `delete.responses.200.schema.dateSubmitted`? | `string` | - | -| `delete.responses.200.schema.id`? | `number` | - | -| `delete.responses.200.schema.lastModified`? | `string` | `Description` The last time a modification was made to this submission or any of its associated objects. | -| `delete.responses.200.schema.locale`? | `string` | `Description` The primary language of this submission. | -| `delete.responses.200.schema.publications`? | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | `Description` A list of publications that have been created for this submission. | -| `delete.responses.200.schema.reviewAssignments`? | { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[] | `Description` Information about pending and completed review assignments. | -| `delete.responses.200.schema.reviewRounds`? | { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[] | `Description` A list of review rounds that have been opened for this submission. | -| `delete.responses.200.schema.sectionId` | `number` | `Description` The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the `sectionId`. | -| `delete.responses.200.schema.stageId`? | `number` | `Description` The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. `Default` 1 | -| `delete.responses.200.schema.stages`? | { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[] | `Description` Key data about the status, files and discussions of each stage. | -| `delete.responses.200.schema.status`? | `number` | `Description` Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `delete.responses.200.schema.statusLabel`? | `string` | `Description` A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. | -| `delete.responses.200.schema.submissionProgress`? | `number` | `Description` This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. `Default` 1 | -| `delete.responses.200.schema.urlAuthorWorkflow`? | `string` | `Description` A URL to the author's editorial workflow. | -| `delete.responses.200.schema.urlEditorialWorkflow`? | `string` | `Description` A URL to the editors' and assistants' editorial workflow. | -| `delete.responses.200.schema.urlPublished`? | `string` | `Description` A URL to the current publication or where it will be published. | -| `delete.responses.200.schema.urlWorkflow`? | `string` | `Description` A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or `urlEditorialWorkflow. | | `delete.responses.403`| { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You are not allowed to delete this submission. | | `delete.responses.403.schema`| { `error`?: `string`; `errorMessage`?: `string`; } | - | | `delete.responses.403.schema.error`? | `string`| - | -|`delete.responses.403.schema.errorMessage`? | `string`| - | -|`delete.responses.404`| { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The submission could not be found. | | `delete.responses.404.schema`| { `error`?: `string`; `errorMessage`?: `string`; } | - | | `delete.responses.404.schema.error`? | `string`| - | -|`delete.responses.404.schema.errorMessage`? | `string`| - | -|`get`|`object`| * Unpublished submissions are only returned for assigned participants, editors and admins. *`abstract`includes HTML markup. *`pages`is usually a`string`. But in some cases it may return an array of arrays. Each array contains two items: the start and end page. Example: `[[25, 31], [45, 62]]`. * `submissionProgress`will be > 0 if the submission is incomplete. *`stages`, `reviewRounds`and`reviewAssignments`should only be returned for participants assigned to the submission. *`reviewAssignments`should only expose user-identifying information for editors and admins. | -|`get.parameters`| { `path`: { `submissionId`: `number`; }; } | - | | `get.parameters.path`| { `submissionId`: `number`; } | - | | `get.parameters.path.submissionId`|`number`| Submission ID | -|`get.responses`| { `200`: { `schema`: { `\_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `\_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | | `get.responses.200`| { `schema`: { `\_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `\_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; } | The submission details. | | `get.responses.200.schema`| { `\_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `\_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; } | - | | `get.responses.200.schema.*href`? | `string`| - | -|`get.responses.200.schema.contextId`|`number`| - | -|`get.responses.200.schema.currentPublicationId`? | `number`|`Description` Which publication is the latest published version. | -|`get.responses.200.schema.dateLastActivity`? | `string`|`Description` The last time activity was recorded related to this submission. | -|`get.responses.200.schema.dateSubmitted`? | `string`| - | -|`get.responses.200.schema.id`? | `number`| - | -|`get.responses.200.schema.lastModified`? | `string`|`Description` The last time a modification was made to this submission or any of its associated objects. | -|`get.responses.200.schema.locale`? | `string`|`Description` The primary language of this submission. | -|`get.responses.200.schema.publications`? | { `*href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | `Description` A list of publications that have been created for this submission. | -|`get.responses.200.schema.reviewAssignments`? | { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[] | `Description` Information about pending and completed review assignments. | -|`get.responses.200.schema.reviewRounds`? | { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[] | `Description` A list of review rounds that have been opened for this submission. | -|`get.responses.200.schema.sectionId`|`number`|`Description` The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the`sectionId`. | | `get.responses.200.schema.stageId`? | `number`|`Description` The stage of the editorial workflow that this submission is currently in. One of the`WORKFLOW\_STAGE*`constants. Default is`WORKFLOW\_STAGE\_SUBMISSION`. `Default` 1 | -|`get.responses.200.schema.stages`? | { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[] | `Description` Key data about the status, files and discussions of each stage. | -|`get.responses.200.schema.status`? | `number`|`Description` Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the`PKPSubmission::STATUS*\*`constants. Default is`PKPSubmission::STATUS\_QUEUED`. `Default` 1 | -|`get.responses.200.schema.statusLabel`? | `string`|`Description` A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. | -|`get.responses.200.schema.submissionProgress`? | `number`|`Description` This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to`0`, indicating it is ready for an editor's consideration. `Default` 1 | -|`get.responses.200.schema.urlAuthorWorkflow`? | `string`|`Description` A URL to the author's editorial workflow. | -|`get.responses.200.schema.urlEditorialWorkflow`? | `string`|`Description` A URL to the editors' and assistants' editorial workflow. | -|`get.responses.200.schema.urlPublished`? | `string`|`Description` A URL to the current publication or where it will be published. | -|`get.responses.200.schema.urlWorkflow`? | `string`|`Description` A URL to the workflow most appropriate for the current user. It will match the`urlAuthorWorkflow`or`urlEditorialWorkflow. | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access this submissions. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The submission could not be found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | -| `put` | `object` | - | -| `put.parameters` | { `body`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `path`: { `submissionId`: `number`; }; } | - | -| `put.parameters.body` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | - | -| `put.parameters.body.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | -| `put.parameters.body.schema._href`? | `string` | Format: uri | -| `put.parameters.body.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `put.parameters.body.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `put.parameters.body.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `put.parameters.body.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `put.parameters.body.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `put.parameters.body.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `put.parameters.body.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `put.parameters.body.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `put.parameters.body.schema.dependentFiles`? | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `put.parameters.body.schema.description`? | `string` | - | -| `put.parameters.body.schema.documentType`? | `string` | - | -| `put.parameters.body.schema.file`? | `string` | Format: binary | -| `put.parameters.body.schema.fileId` | `number` | - | -| `put.parameters.body.schema.fileStage` | `number` | - | -| `put.parameters.body.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | -| `put.parameters.body.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `put.parameters.body.schema.genre.id`? | `number` | - | -| `put.parameters.body.schema.genre.name`? | `string` | - | -| `put.parameters.body.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `put.parameters.body.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `put.parameters.body.schema.id`? | `number` | - | -| `put.parameters.body.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `put.parameters.body.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `put.parameters.body.schema.mimetype`? | `string` | - | -| `put.parameters.body.schema.name` | { } | - | -| `put.parameters.body.schema.path`? | `string` | - | -| `put.parameters.body.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `put.parameters.body.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `put.parameters.body.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `put.parameters.body.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `put.parameters.body.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `put.parameters.body.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `put.parameters.body.schema.submissionId` | `number` | - | -| `put.parameters.body.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `put.parameters.body.schema.updatedAt`? | `string` | `Description` When this object was last updated. | -| `put.parameters.body.schema.uploaderUserId` | `number` | - | -| `put.parameters.body.schema.url`? | `string` | - | -| `put.parameters.body.schema.viewable`? | `boolean` | - | -| `put.parameters.path` | { `submissionId`: `number`; } | - | -| `put.parameters.path.submissionId` | `number` | Submission ID | -| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `put.responses.200` | { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; } | The submission that was just edited with the new values after the update has occurred. | -| `put.responses.200.schema` | { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; } | - | -| `put.responses.200.schema._href`? | `string` | - | -| `put.responses.200.schema.contextId` | `number` | - | -| `put.responses.200.schema.currentPublicationId`? | `number` | `Description` Which publication is the latest published version. | -| `put.responses.200.schema.dateLastActivity`? | `string` | `Description` The last time activity was recorded related to this submission. | -| `put.responses.200.schema.dateSubmitted`? | `string` | - | -| `put.responses.200.schema.id`? | `number` | - | -| `put.responses.200.schema.lastModified`? | `string` | `Description` The last time a modification was made to this submission or any of its associated objects. | -| `put.responses.200.schema.locale`? | `string` | `Description` The primary language of this submission. | -| `put.responses.200.schema.publications`? | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | `Description` A list of publications that have been created for this submission. | -| `put.responses.200.schema.reviewAssignments`? | { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[] | `Description` Information about pending and completed review assignments. | -| `put.responses.200.schema.reviewRounds`? | { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[] | `Description` A list of review rounds that have been opened for this submission. | -| `put.responses.200.schema.sectionId` | `number` | `Description` The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the `sectionId`. | -| `put.responses.200.schema.stageId`? | `number` | `Description` The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. `Default` 1 | -| `put.responses.200.schema.stages`? | { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[] | `Description` Key data about the status, files and discussions of each stage. | -| `put.responses.200.schema.status`? | `number` | `Description` Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `put.responses.200.schema.statusLabel`? | `string` | `Description` A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. | -| `put.responses.200.schema.submissionProgress`? | `number` | `Description` This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. `Default` 1 | -| `put.responses.200.schema.urlAuthorWorkflow`? | `string` | `Description` A URL to the author's editorial workflow. | -| `put.responses.200.schema.urlEditorialWorkflow`? | `string` | `Description` A URL to the editors' and assistants' editorial workflow. | -| `put.responses.200.schema.urlPublished`? | `string` | `Description` A URL to the current publication or where it will be published. | -| `put.responses.200.schema.urlWorkflow`? | `string` | `Description` A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or `urlEditorialWorkflow. | | `put.responses.400`| { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | | `put.responses.400.schema`| { } | - | -|`put.responses.403`| { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | This error indicates one of the following: * You are not allowed to edit a submission from the site-wide endpoint. You must use a context (journal/press/server) endpoint. * You are not allowed to change the context (journal/press/server) of a submission. | | `put.responses.403.schema`| { `error`?: `string`; `errorMessage`?: `string`; } | - | | `put.responses.403.schema.error`? | `string`| - | -|`put.responses.403.schema.errorMessage`? | `string`| - | -|`put.responses.404`| { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The submission could not be found. | | `put.responses.404.schema`| { `error`?: `string`; `errorMessage`?: `string`; } | - | | `put.responses.404.schema.error`? | `string`| - | -|`put.responses.404.schema.errorMessage`? | `string\` | - | - -Defined in: [lib/swagger-types.ts:74](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L74) +| Member | Type | Description | +| :--------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------- | ----------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------- | --- | ------------------------------------ | -------- | --- | +| `delete` | `object` | Only journal managers and subeditors can make a request to this endpoint. | +| `delete.parameters` | { `path`: { `submissionId`: `number`; }; } | - | +| `delete.parameters.path` | { `submissionId`: `number`; } | - | +| `delete.parameters.path.submissionId` | `number` | Submission ID | +| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `delete.responses.200` | { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; } | Details of the deleted submission. | +| `delete.responses.200.schema` | { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; } | - | +| `delete.responses.200.schema._href`? | `string` | - | +| `delete.responses.200.schema.contextId` | `number` | - | +| `delete.responses.200.schema.currentPublicationId`? | `number` | `Description` Which publication is the latest published version. | +| `delete.responses.200.schema.dateLastActivity`? | `string` | `Description` The last time activity was recorded related to this submission. | +| `delete.responses.200.schema.dateSubmitted`? | `string` | - | +| `delete.responses.200.schema.id`? | `number` | - | +| `delete.responses.200.schema.lastModified`? | `string` | `Description` The last time a modification was made to this submission or any of its associated objects. | +| `delete.responses.200.schema.locale`? | `string` | `Description` The primary language of this submission. | +| `delete.responses.200.schema.publications`? | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | `Description` A list of publications that have been created for this submission. | +| `delete.responses.200.schema.reviewAssignments`? | { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[] | `Description` Information about pending and completed review assignments. | +| `delete.responses.200.schema.reviewRounds`? | { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[] | `Description` A list of review rounds that have been opened for this submission. | +| `delete.responses.200.schema.sectionId` | `number` | `Description` The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the `sectionId`. | +| `delete.responses.200.schema.stageId`? | `number` | `Description` The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. `Default` 1 | +| `delete.responses.200.schema.stages`? | { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[] | `Description` Key data about the status, files and discussions of each stage. | +| `delete.responses.200.schema.status`? | `number` | `Description` Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `delete.responses.200.schema.statusLabel`? | `string` | `Description` A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. | +| `delete.responses.200.schema.submissionProgress`? | `number` | `Description` This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. `Default` 1 | +| `delete.responses.200.schema.urlAuthorWorkflow`? | `string` | `Description` A URL to the author's editorial workflow. | +| `delete.responses.200.schema.urlEditorialWorkflow`? | `string` | `Description` A URL to the editors' and assistants' editorial workflow. | +| `delete.responses.200.schema.urlPublished`? | `string` | `Description` A URL to the current publication or where it will be published. | +| `delete.responses.200.schema.urlWorkflow`? | `string` | `Description` A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or `urlEditorialWorkflow. | | `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You are not allowed to delete this submission. | | `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | | `delete.responses.403.schema.error`? | `string` | - | +| `delete.responses.403.schema.errorMessage`? | `string` | - | +| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The submission could not be found. | | `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | | `delete.responses.404.schema.error`? | `string` | - | +| `delete.responses.404.schema.errorMessage`? | `string` | - | +| `get` | `object` | _ Unpublished submissions are only returned for assigned participants, editors and admins. _`abstract`includes HTML markup. _`pages`is usually a`string`. But in some cases it may return an array of arrays. Each array contains two items: the start and end page. Example: `[[25, 31], [45, 62]]`. _ `submissionProgress`will be > 0 if the submission is incomplete. _`stages`, `reviewRounds`and`reviewAssignments`should only be returned for participants assigned to the submission. _`reviewAssignments`should only expose user-identifying information for editors and admins. | +| `get.parameters` | { `path`: { `submissionId`: `number`; }; } | - | | `get.parameters.path` | { `submissionId`: `number`; } | - | | `get.parameters.path.submissionId` | `number` | Submission ID | +| `get.responses` | { `200`: { `schema`: { `\_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `\_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | | `get.responses.200` | { `schema`: { `\_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `\_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; } | The submission details. | | `get.responses.200.schema` | { `\_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `\_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; } | - | | `get.responses.200.schema.*href`? | `string` | - | +| `get.responses.200.schema.contextId` | `number` | - | +| `get.responses.200.schema.currentPublicationId`? | `number` | `Description` Which publication is the latest published version. | +| `get.responses.200.schema.dateLastActivity`? | `string` | `Description` The last time activity was recorded related to this submission. | +| `get.responses.200.schema.dateSubmitted`? | `string` | - | +| `get.responses.200.schema.id`? | `number` | - | +| `get.responses.200.schema.lastModified`? | `string` | `Description` The last time a modification was made to this submission or any of its associated objects. | +| `get.responses.200.schema.locale`? | `string` | `Description` The primary language of this submission. | +| `get.responses.200.schema.publications`? | { `*href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | `Description` A list of publications that have been created for this submission. | +| `get.responses.200.schema.reviewAssignments`? | { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[] | `Description` Information about pending and completed review assignments. | +| `get.responses.200.schema.reviewRounds`? | { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[] | `Description` A list of review rounds that have been opened for this submission. | +| `get.responses.200.schema.sectionId` | `number` | `Description` The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the`sectionId`. | | `get.responses.200.schema.stageId`? | `number` | `Description` The stage of the editorial workflow that this submission is currently in. One of the`WORKFLOW\_STAGE*`constants. Default is`WORKFLOW\_STAGE\_SUBMISSION`. `Default` 1 | +| `get.responses.200.schema.stages`? | { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[] | `Description` Key data about the status, files and discussions of each stage. | +| `get.responses.200.schema.status`? | `number` | `Description` Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the`PKPSubmission::STATUS*\*`constants. Default is`PKPSubmission::STATUS\_QUEUED`. `Default` 1 | +| `get.responses.200.schema.statusLabel`? | `string` | `Description` A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. | +| `get.responses.200.schema.submissionProgress`? | `number` | `Description` This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to`0`, indicating it is ready for an editor's consideration. `Default` 1 | +| `get.responses.200.schema.urlAuthorWorkflow`? | `string` | `Description` A URL to the author's editorial workflow. | +| `get.responses.200.schema.urlEditorialWorkflow`? | `string` | `Description` A URL to the editors' and assistants' editorial workflow. | +| `get.responses.200.schema.urlPublished`? | `string` | `Description` A URL to the current publication or where it will be published. | +| `get.responses.200.schema.urlWorkflow`? | `string` | `Description` A URL to the workflow most appropriate for the current user. It will match the`urlAuthorWorkflow`or`urlEditorialWorkflow. | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to access this submissions. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The submission could not be found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | +| `put` | `object` | - | +| `put.parameters` | { `body`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `path`: { `submissionId`: `number`; }; } | - | +| `put.parameters.body` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | - | +| `put.parameters.body.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | +| `put.parameters.body.schema._href`? | `string` | Format: uri | +| `put.parameters.body.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `put.parameters.body.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `put.parameters.body.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `put.parameters.body.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `put.parameters.body.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `put.parameters.body.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `put.parameters.body.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `put.parameters.body.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `put.parameters.body.schema.dependentFiles`? | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `put.parameters.body.schema.description`? | `string` | - | +| `put.parameters.body.schema.documentType`? | `string` | - | +| `put.parameters.body.schema.file`? | `string` | Format: binary | +| `put.parameters.body.schema.fileId` | `number` | - | +| `put.parameters.body.schema.fileStage` | `number` | - | +| `put.parameters.body.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | +| `put.parameters.body.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `put.parameters.body.schema.genre.id`? | `number` | - | +| `put.parameters.body.schema.genre.name`? | `string` | - | +| `put.parameters.body.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `put.parameters.body.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `put.parameters.body.schema.id`? | `number` | - | +| `put.parameters.body.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `put.parameters.body.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `put.parameters.body.schema.mimetype`? | `string` | - | +| `put.parameters.body.schema.name` | { } | - | +| `put.parameters.body.schema.path`? | `string` | - | +| `put.parameters.body.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `put.parameters.body.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `put.parameters.body.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `put.parameters.body.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `put.parameters.body.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `put.parameters.body.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `put.parameters.body.schema.submissionId` | `number` | - | +| `put.parameters.body.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `put.parameters.body.schema.updatedAt`? | `string` | `Description` When this object was last updated. | +| `put.parameters.body.schema.uploaderUserId` | `number` | - | +| `put.parameters.body.schema.url`? | `string` | - | +| `put.parameters.body.schema.viewable`? | `boolean` | - | +| `put.parameters.path` | { `submissionId`: `number`; } | - | +| `put.parameters.path.submissionId` | `number` | Submission ID | +| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `put.responses.200` | { `schema`: { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; }; } | The submission that was just edited with the new values after the update has occurred. | +| `put.responses.200.schema` | { `_href`?: `string`; `contextId`: `number`; `currentPublicationId`?: `number`; `dateLastActivity`?: `string`; `dateSubmitted`?: `string`; `id`?: `number`; `lastModified`?: `string`; `locale`?: `string`; `publications`?: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; `reviewAssignments`?: { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[]; `reviewRounds`?: { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[]; `sectionId`: `number`; `stageId`?: `number`; `stages`?: { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[]; `status`?: `number`; `statusLabel`?: `string`; `submissionProgress`?: `number`; `urlAuthorWorkflow`?: `string`; `urlEditorialWorkflow`?: `string`; `urlPublished`?: `string`; `urlWorkflow`?: `string`; } | - | +| `put.responses.200.schema._href`? | `string` | - | +| `put.responses.200.schema.contextId` | `number` | - | +| `put.responses.200.schema.currentPublicationId`? | `number` | `Description` Which publication is the latest published version. | +| `put.responses.200.schema.dateLastActivity`? | `string` | `Description` The last time activity was recorded related to this submission. | +| `put.responses.200.schema.dateSubmitted`? | `string` | - | +| `put.responses.200.schema.id`? | `number` | - | +| `put.responses.200.schema.lastModified`? | `string` | `Description` The last time a modification was made to this submission or any of its associated objects. | +| `put.responses.200.schema.locale`? | `string` | `Description` The primary language of this submission. | +| `put.responses.200.schema.publications`? | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | `Description` A list of publications that have been created for this submission. | +| `put.responses.200.schema.reviewAssignments`? | { `dateDue`?: `number`; `dateResponseDue`?: `number`; `id`?: `number`; `isCurrentUserAssigned`?: `number`; `reviewRoundId`?: `number`; `round`?: `number`; `status`?: `number`; `statusLabel`?: `number`; }[] | `Description` Information about pending and completed review assignments. | +| `put.responses.200.schema.reviewRounds`? | { `id`?: `number`; `round`?: `number`; `stageId`?: `number`; `status`?: `string`; `statusId`?: `number`; }[] | `Description` A list of review rounds that have been opened for this submission. | +| `put.responses.200.schema.sectionId` | `number` | `Description` The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the `sectionId`. | +| `put.responses.200.schema.stageId`? | `number` | `Description` The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`. `Default` 1 | +| `put.responses.200.schema.stages`? | { `currentUserAssignedRoles`?: `number`[]; `files`?: { `count`?: `number`; }; `id`?: `number`; `isActiveStage`?: `boolean`; `label`?: `string`; `queries`?: `unknown`[]; `status`?: `string`; `statusId`?: `number`; }[] | `Description` Key data about the status, files and discussions of each stage. | +| `put.responses.200.schema.status`? | `number` | `Description` Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `put.responses.200.schema.statusLabel`? | `string` | `Description` A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled. | +| `put.responses.200.schema.submissionProgress`? | `number` | `Description` This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration. `Default` 1 | +| `put.responses.200.schema.urlAuthorWorkflow`? | `string` | `Description` A URL to the author's editorial workflow. | +| `put.responses.200.schema.urlEditorialWorkflow`? | `string` | `Description` A URL to the editors' and assistants' editorial workflow. | +| `put.responses.200.schema.urlPublished`? | `string` | `Description` A URL to the current publication or where it will be published. | +| `put.responses.200.schema.urlWorkflow`? | `string` | `Description` A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or `urlEditorialWorkflow. | | `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | | `put.responses.400.schema` | { } | - | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | This error indicates one of the following: _ You are not allowed to edit a submission from the site-wide endpoint. You must use a context (journal/press/server) endpoint. _ You are not allowed to change the context (journal/press/server) of a submission. | | `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | | `put.responses.403.schema.error`? | `string` | - | +| `put.responses.403.schema.errorMessage`? | `string` | - | +| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The submission could not be found. | | `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | | `put.responses.404.schema.error`? | `string` | - | +| `put.responses.404.schema.errorMessage`? | `string\` | - | + +Defined in: [lib/swagger-types.ts:74](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L74) ##### `/submissions/\{submissionId}/files` @@ -7345,117 +7345,117 @@ Defined in: [lib/swagger-types.ts:74](https://github.com/TrialAndErrorOrg/parse ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | This will return all of a submission's files that the user is allowed to access, except review attachments and discussion files. A user is allowed to access different file stages depending on their stage assignment. \* Managers, subeditors and assistants can access all file stages if they are assigned to the matching workflow stage. For example, an assistant assigned to the copyediting stage can access files in `SUBMISSION_FILE_COPYEDIT` and `SUBMISSION_FILE_FINAL`. \* Authors are restricted to the `SUBMISSION_FILE_SUBMISSION`, `SUBMISSION_FILE_REVIEW_REVISION`, `SUBMISSION_FILE_COPYEDIT` and `SUBMISSION_FILE_PROOF` file stages. For example, an author with access to the copyediting stage will have access to `SUBMISSION_FILE_COPYEDIT` (copyedited files) but not `SUBMISSION_FILE_FINAL` (draft files). \* Reviewers and readers are not allowed to access this endpoint. \* Managers who are not assigned to the submission are allowed to access all file stages as though they are assigned to every workflow stage. | -| `get.parameters` | { `path`: { `submissionId`: `number`; }; `query`: { `fileStages`?: `number`[]; `reviewRoundIds`?: `number`[]; }; } | - | -| `get.parameters.path` | { `submissionId`: `number`; } | - | -| `get.parameters.path.submissionId` | `number` | Submission ID | -| `get.parameters.query` | { `fileStages`?: `number`[]; `reviewRoundIds`?: `number`[]; } | - | -| `get.parameters.query.fileStages`? | `number`[] | Filter results by those submission files assigned to one or more file stage. One of the `SUBMISSION_FILE_` constants. | -| `get.parameters.query.reviewRoundIds`? | `number`[] | Filter results by those submission files assigned to one or more review rounds. | -| `get.responses` | { `200`: { `schema`: { `items`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }[]; `itemsMax`: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `items`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }[]; `itemsMax`: `number`; }; } | An array of the requested submission files. | -| `get.responses.200.schema` | { `items`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }[]; `itemsMax`: `number`; } | - | -| `get.responses.200.schema.items` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }[] | - | -| `get.responses.200.schema.itemsMax` | `number` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view the requested files. |Error Code|Description| |---|---| |`api.403.unauthorized`|You are not allowed to access files for this submission.| |`api.submissionFiles.403.unauthorizedFileStageId`|You are not allowed to access files in one or more of the `fileStages` requested.| |`api.submissionFiles.403.unauthorizedReviewRound`|You are not allowed to access files in one or more of the `reviewRoundIds` requested. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `post` | `object` | A user is allowed to upload to different file stages depending on their stage assignments. See the description for `GET /submission/{submissionId}/files` above. Once a submission has been completed, authors are no longer allowed to upload to `SUBMISSION_FILE_SUBMISSION`. Authors are not allowed to upload to `SUBMISSION_FILE_REVIEW_REVISION` until revisions have been requested. | -| `post.parameters` | { `body`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; } | - | -| `post.parameters.body` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | - | -| `post.parameters.body.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | -| `post.parameters.body.schema._href`? | `string` | Format: uri | -| `post.parameters.body.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `post.parameters.body.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `post.parameters.body.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `post.parameters.body.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `post.parameters.body.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `post.parameters.body.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `post.parameters.body.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `post.parameters.body.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `post.parameters.body.schema.dependentFiles`? | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `post.parameters.body.schema.description`? | `string` | - | -| `post.parameters.body.schema.documentType`? | `string` | - | -| `post.parameters.body.schema.file`? | `string` | Format: binary | -| `post.parameters.body.schema.fileId` | `number` | - | -| `post.parameters.body.schema.fileStage` | `number` | - | -| `post.parameters.body.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | -| `post.parameters.body.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `post.parameters.body.schema.genre.id`? | `number` | - | -| `post.parameters.body.schema.genre.name`? | `string` | - | -| `post.parameters.body.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `post.parameters.body.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `post.parameters.body.schema.id`? | `number` | - | -| `post.parameters.body.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `post.parameters.body.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `post.parameters.body.schema.mimetype`? | `string` | - | -| `post.parameters.body.schema.name` | { } | - | -| `post.parameters.body.schema.path`? | `string` | - | -| `post.parameters.body.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `post.parameters.body.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `post.parameters.body.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `post.parameters.body.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `post.parameters.body.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `post.parameters.body.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `post.parameters.body.schema.submissionId` | `number` | - | -| `post.parameters.body.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `post.parameters.body.schema.updatedAt`? | `string` | `Description` When this object was last updated. | -| `post.parameters.body.schema.uploaderUserId` | `number` | - | -| `post.parameters.body.schema.url`? | `string` | - | -| `post.parameters.body.schema.viewable`? | `boolean` | - | -| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `post.responses.200` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | The new submission file. | -| `post.responses.200.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | -| `post.responses.200.schema._href`? | `string` | Format: uri | -| `post.responses.200.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `post.responses.200.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `post.responses.200.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `post.responses.200.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `post.responses.200.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `post.responses.200.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `post.responses.200.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `post.responses.200.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `post.responses.200.schema.dependentFiles`? | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `post.responses.200.schema.description`? | `string` | - | -| `post.responses.200.schema.documentType`? | `string` | - | -| `post.responses.200.schema.file`? | `string` | Format: binary | -| `post.responses.200.schema.fileId` | `number` | - | -| `post.responses.200.schema.fileStage` | `number` | - | -| `post.responses.200.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | -| `post.responses.200.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `post.responses.200.schema.genre.id`? | `number` | - | -| `post.responses.200.schema.genre.name`? | `string` | - | -| `post.responses.200.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `post.responses.200.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `post.responses.200.schema.id`? | `number` | - | -| `post.responses.200.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `post.responses.200.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `post.responses.200.schema.mimetype`? | `string` | - | -| `post.responses.200.schema.name` | { } | - | -| `post.responses.200.schema.path`? | `string` | - | -| `post.responses.200.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `post.responses.200.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `post.responses.200.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `post.responses.200.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `post.responses.200.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `post.responses.200.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `post.responses.200.schema.submissionId` | `number` | - | -| `post.responses.200.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `post.responses.200.schema.updatedAt`? | `string` | `Description` When this object was last updated. | -| `post.responses.200.schema.uploaderUserId` | `number` | - | -| `post.responses.200.schema.url`? | `string` | - | -| `post.responses.200.schema.viewable`? | `boolean` | - | -| `post.responses.400` | { `schema`: { }; } | There was an error when uploading the file or the values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `post.responses.400.schema` | { } | - | -| `post.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You are not allowed to upload a file to the specified file stage of this submission. | -| `post.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.403.schema.error`? | `string` | - | -| `post.responses.403.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L160) +| Member | Type | Description | +| :---------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------- | --------------------------- | ---------------------------------- | ----------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | --------------------------------------------------------------------------------------------------- | -------------------------------------------------------- | --- | ------------------------------------------------- | --------------------------------------------------------------------------------- | --- | ------------------------------------------------- | ------------------------------------------------------------------------------------- | +| `get` | `object` | This will return all of a submission's files that the user is allowed to access, except review attachments and discussion files. A user is allowed to access different file stages depending on their stage assignment. \* Managers, subeditors and assistants can access all file stages if they are assigned to the matching workflow stage. For example, an assistant assigned to the copyediting stage can access files in `SUBMISSION_FILE_COPYEDIT` and `SUBMISSION_FILE_FINAL`. \* Authors are restricted to the `SUBMISSION_FILE_SUBMISSION`, `SUBMISSION_FILE_REVIEW_REVISION`, `SUBMISSION_FILE_COPYEDIT` and `SUBMISSION_FILE_PROOF` file stages. For example, an author with access to the copyediting stage will have access to `SUBMISSION_FILE_COPYEDIT` (copyedited files) but not `SUBMISSION_FILE_FINAL` (draft files). \* Reviewers and readers are not allowed to access this endpoint. \* Managers who are not assigned to the submission are allowed to access all file stages as though they are assigned to every workflow stage. | +| `get.parameters` | { `path`: { `submissionId`: `number`; }; `query`: { `fileStages`?: `number`[]; `reviewRoundIds`?: `number`[]; }; } | - | +| `get.parameters.path` | { `submissionId`: `number`; } | - | +| `get.parameters.path.submissionId` | `number` | Submission ID | +| `get.parameters.query` | { `fileStages`?: `number`[]; `reviewRoundIds`?: `number`[]; } | - | +| `get.parameters.query.fileStages`? | `number`[] | Filter results by those submission files assigned to one or more file stage. One of the `SUBMISSION_FILE_` constants. | +| `get.parameters.query.reviewRoundIds`? | `number`[] | Filter results by those submission files assigned to one or more review rounds. | +| `get.responses` | { `200`: { `schema`: { `items`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }[]; `itemsMax`: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `items`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }[]; `itemsMax`: `number`; }; } | An array of the requested submission files. | +| `get.responses.200.schema` | { `items`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }[]; `itemsMax`: `number`; } | - | +| `get.responses.200.schema.items` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }[] | - | +| `get.responses.200.schema.itemsMax` | `number` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You do not have permission to view the requested files. | Error Code | Description | | --- | --- | | `api.403.unauthorized` | You are not allowed to access files for this submission. | | `api.submissionFiles.403.unauthorizedFileStageId` | You are not allowed to access files in one or more of the `fileStages` requested. | | `api.submissionFiles.403.unauthorizedReviewRound` | You are not allowed to access files in one or more of the `reviewRoundIds` requested. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `post` | `object` | A user is allowed to upload to different file stages depending on their stage assignments. See the description for `GET /submission/{submissionId}/files` above. Once a submission has been completed, authors are no longer allowed to upload to `SUBMISSION_FILE_SUBMISSION`. Authors are not allowed to upload to `SUBMISSION_FILE_REVIEW_REVISION` until revisions have been requested. | +| `post.parameters` | { `body`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; } | - | +| `post.parameters.body` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | - | +| `post.parameters.body.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | +| `post.parameters.body.schema._href`? | `string` | Format: uri | +| `post.parameters.body.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `post.parameters.body.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `post.parameters.body.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `post.parameters.body.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `post.parameters.body.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `post.parameters.body.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `post.parameters.body.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `post.parameters.body.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `post.parameters.body.schema.dependentFiles`? | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `post.parameters.body.schema.description`? | `string` | - | +| `post.parameters.body.schema.documentType`? | `string` | - | +| `post.parameters.body.schema.file`? | `string` | Format: binary | +| `post.parameters.body.schema.fileId` | `number` | - | +| `post.parameters.body.schema.fileStage` | `number` | - | +| `post.parameters.body.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | +| `post.parameters.body.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `post.parameters.body.schema.genre.id`? | `number` | - | +| `post.parameters.body.schema.genre.name`? | `string` | - | +| `post.parameters.body.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `post.parameters.body.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `post.parameters.body.schema.id`? | `number` | - | +| `post.parameters.body.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `post.parameters.body.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `post.parameters.body.schema.mimetype`? | `string` | - | +| `post.parameters.body.schema.name` | { } | - | +| `post.parameters.body.schema.path`? | `string` | - | +| `post.parameters.body.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `post.parameters.body.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `post.parameters.body.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `post.parameters.body.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `post.parameters.body.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `post.parameters.body.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `post.parameters.body.schema.submissionId` | `number` | - | +| `post.parameters.body.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `post.parameters.body.schema.updatedAt`? | `string` | `Description` When this object was last updated. | +| `post.parameters.body.schema.uploaderUserId` | `number` | - | +| `post.parameters.body.schema.url`? | `string` | - | +| `post.parameters.body.schema.viewable`? | `boolean` | - | +| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `post.responses.200` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | The new submission file. | +| `post.responses.200.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | +| `post.responses.200.schema._href`? | `string` | Format: uri | +| `post.responses.200.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `post.responses.200.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `post.responses.200.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `post.responses.200.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `post.responses.200.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `post.responses.200.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `post.responses.200.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `post.responses.200.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `post.responses.200.schema.dependentFiles`? | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `post.responses.200.schema.description`? | `string` | - | +| `post.responses.200.schema.documentType`? | `string` | - | +| `post.responses.200.schema.file`? | `string` | Format: binary | +| `post.responses.200.schema.fileId` | `number` | - | +| `post.responses.200.schema.fileStage` | `number` | - | +| `post.responses.200.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | +| `post.responses.200.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `post.responses.200.schema.genre.id`? | `number` | - | +| `post.responses.200.schema.genre.name`? | `string` | - | +| `post.responses.200.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `post.responses.200.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `post.responses.200.schema.id`? | `number` | - | +| `post.responses.200.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `post.responses.200.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `post.responses.200.schema.mimetype`? | `string` | - | +| `post.responses.200.schema.name` | { } | - | +| `post.responses.200.schema.path`? | `string` | - | +| `post.responses.200.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `post.responses.200.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `post.responses.200.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `post.responses.200.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `post.responses.200.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `post.responses.200.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `post.responses.200.schema.submissionId` | `number` | - | +| `post.responses.200.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `post.responses.200.schema.updatedAt`? | `string` | `Description` When this object was last updated. | +| `post.responses.200.schema.uploaderUserId` | `number` | - | +| `post.responses.200.schema.url`? | `string` | - | +| `post.responses.200.schema.viewable`? | `boolean` | - | +| `post.responses.400` | { `schema`: { }; } | There was an error when uploading the file or the values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `post.responses.400.schema` | { } | - | +| `post.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You are not allowed to upload a file to the specified file stage of this submission. | +| `post.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.403.schema.error`? | `string` | - | +| `post.responses.403.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:160](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L160) ##### `/submissions/\{submissionId}/files/\{submissionFileId}` @@ -7733,212 +7733,212 @@ Defined in: [lib/swagger-types.ts:160](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `delete` | `object` | You must pass the correct `stageId` when deleting a file. | -| `delete.parameters` | { `path`: { `submissionFileId`: `number`; `submissionId`: `number`; }; `query`: { `stageId`: `number`; }; } | - | -| `delete.parameters.path` | { `submissionFileId`: `number`; `submissionId`: `number`; } | - | -| `delete.parameters.path.submissionFileId` | `number` | Submission File ID | -| `delete.parameters.path.submissionId` | `number` | Submission ID | -| `delete.parameters.query` | { `stageId`: `number`; } | - | -| `delete.parameters.query.stageId` | `number` | The workflow stage id of the file to be edited. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. | -| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `delete.responses.200` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | The submission file that was just deleted. | -| `delete.responses.200.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | -| `delete.responses.200.schema._href`? | `string` | Format: uri | -| `delete.responses.200.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `delete.responses.200.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `delete.responses.200.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `delete.responses.200.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `delete.responses.200.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `delete.responses.200.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `delete.responses.200.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `delete.responses.200.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `delete.responses.200.schema.dependentFiles`? | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `delete.responses.200.schema.description`? | `string` | - | -| `delete.responses.200.schema.documentType`? | `string` | - | -| `delete.responses.200.schema.file`? | `string` | Format: binary | -| `delete.responses.200.schema.fileId` | `number` | - | -| `delete.responses.200.schema.fileStage` | `number` | - | -| `delete.responses.200.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | -| `delete.responses.200.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `delete.responses.200.schema.genre.id`? | `number` | - | -| `delete.responses.200.schema.genre.name`? | `string` | - | -| `delete.responses.200.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `delete.responses.200.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `delete.responses.200.schema.id`? | `number` | - | -| `delete.responses.200.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `delete.responses.200.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `delete.responses.200.schema.mimetype`? | `string` | - | -| `delete.responses.200.schema.name` | { } | - | -| `delete.responses.200.schema.path`? | `string` | - | -| `delete.responses.200.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `delete.responses.200.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `delete.responses.200.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `delete.responses.200.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `delete.responses.200.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `delete.responses.200.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `delete.responses.200.schema.submissionId` | `number` | - | -| `delete.responses.200.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `delete.responses.200.schema.updatedAt`? | `string` | `Description` When this object was last updated. | -| `delete.responses.200.schema.uploaderUserId` | `number` | - | -| `delete.responses.200.schema.url`? | `string` | - | -| `delete.responses.200.schema.viewable`? | `boolean` | - | -| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You are not allowed to delete the requested file. | -| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.403.schema.error`? | `string` | - | -| `delete.responses.403.schema.errorMessage`? | `string` | - | -| `get` | `object` | You must pass the correct `stageId` when requesting a file. | -| `get.parameters` | { `path`: { `submissionFileId`: `number`; `submissionId`: `number`; }; `query`: { `stageId`: `number`; }; } | - | -| `get.parameters.path` | { `submissionFileId`: `number`; `submissionId`: `number`; } | - | -| `get.parameters.path.submissionFileId` | `number` | Submission File ID | -| `get.parameters.path.submissionId` | `number` | Submission ID | -| `get.parameters.query` | { `stageId`: `number`; } | - | -| `get.parameters.query.stageId` | `number` | The workflow stage id of the requested file. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. | -| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | Details of the submission file. | -| `get.responses.200.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | -| `get.responses.200.schema._href`? | `string` | Format: uri | -| `get.responses.200.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `get.responses.200.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `get.responses.200.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `get.responses.200.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `get.responses.200.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `get.responses.200.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `get.responses.200.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `get.responses.200.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `get.responses.200.schema.dependentFiles`? | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `get.responses.200.schema.description`? | `string` | - | -| `get.responses.200.schema.documentType`? | `string` | - | -| `get.responses.200.schema.file`? | `string` | Format: binary | -| `get.responses.200.schema.fileId` | `number` | - | -| `get.responses.200.schema.fileStage` | `number` | - | -| `get.responses.200.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | -| `get.responses.200.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `get.responses.200.schema.genre.id`? | `number` | - | -| `get.responses.200.schema.genre.name`? | `string` | - | -| `get.responses.200.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `get.responses.200.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `get.responses.200.schema.id`? | `number` | - | -| `get.responses.200.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `get.responses.200.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `get.responses.200.schema.mimetype`? | `string` | - | -| `get.responses.200.schema.name` | { } | - | -| `get.responses.200.schema.path`? | `string` | - | -| `get.responses.200.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `get.responses.200.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `get.responses.200.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `get.responses.200.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `get.responses.200.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `get.responses.200.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `get.responses.200.schema.submissionId` | `number` | - | -| `get.responses.200.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `get.responses.200.schema.updatedAt`? | `string` | `Description` When this object was last updated. | -| `get.responses.200.schema.uploaderUserId` | `number` | - | -| `get.responses.200.schema.url`? | `string` | - | -| `get.responses.200.schema.viewable`? | `boolean` | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You are not allowed to access the requested file. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `put` | `object` | You must pass the correct `stageId` when editing a file. | -| `put.parameters` | { `body`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `path`: { `submissionFileId`: `number`; `submissionId`: `number`; }; `query`: { `stageId`: `number`; }; } | - | -| `put.parameters.body` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | - | -| `put.parameters.body.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | -| `put.parameters.body.schema._href`? | `string` | Format: uri | -| `put.parameters.body.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `put.parameters.body.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `put.parameters.body.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `put.parameters.body.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `put.parameters.body.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `put.parameters.body.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `put.parameters.body.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `put.parameters.body.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `put.parameters.body.schema.dependentFiles`? | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `put.parameters.body.schema.description`? | `string` | - | -| `put.parameters.body.schema.documentType`? | `string` | - | -| `put.parameters.body.schema.file`? | `string` | Format: binary | -| `put.parameters.body.schema.fileId` | `number` | - | -| `put.parameters.body.schema.fileStage` | `number` | - | -| `put.parameters.body.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | -| `put.parameters.body.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `put.parameters.body.schema.genre.id`? | `number` | - | -| `put.parameters.body.schema.genre.name`? | `string` | - | -| `put.parameters.body.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `put.parameters.body.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `put.parameters.body.schema.id`? | `number` | - | -| `put.parameters.body.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `put.parameters.body.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `put.parameters.body.schema.mimetype`? | `string` | - | -| `put.parameters.body.schema.name` | { } | - | -| `put.parameters.body.schema.path`? | `string` | - | -| `put.parameters.body.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `put.parameters.body.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `put.parameters.body.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `put.parameters.body.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `put.parameters.body.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `put.parameters.body.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `put.parameters.body.schema.submissionId` | `number` | - | -| `put.parameters.body.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `put.parameters.body.schema.updatedAt`? | `string` | `Description` When this object was last updated. | -| `put.parameters.body.schema.uploaderUserId` | `number` | - | -| `put.parameters.body.schema.url`? | `string` | - | -| `put.parameters.body.schema.viewable`? | `boolean` | - | -| `put.parameters.path` | { `submissionFileId`: `number`; `submissionId`: `number`; } | - | -| `put.parameters.path.submissionFileId` | `number` | Submission File ID | -| `put.parameters.path.submissionId` | `number` | Submission ID | -| `put.parameters.query` | { `stageId`: `number`; } | - | -| `put.parameters.query.stageId` | `number` | The workflow stage id of the file to be edited. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. | -| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `put.responses.200` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | The submission file that was just edited with the new values after the update has occurred. | -| `put.responses.200.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | -| `put.responses.200.schema._href`? | `string` | Format: uri | -| `put.responses.200.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | -| `put.responses.200.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | -| `put.responses.200.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | -| `put.responses.200.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | -| `put.responses.200.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | -| `put.responses.200.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | -| `put.responses.200.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | -| `put.responses.200.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | -| `put.responses.200.schema.dependentFiles`? | `{ _href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | -| `put.responses.200.schema.description`? | `string` | - | -| `put.responses.200.schema.documentType`? | `string` | - | -| `put.responses.200.schema.file`? | `string` | Format: binary | -| `put.responses.200.schema.fileId` | `number` | - | -| `put.responses.200.schema.fileStage` | `number` | - | -| `put.responses.200.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | -| `put.responses.200.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | -| `put.responses.200.schema.genre.id`? | `number` | - | -| `put.responses.200.schema.genre.name`? | `string` | - | -| `put.responses.200.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | -| `put.responses.200.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | -| `put.responses.200.schema.id`? | `number` | - | -| `put.responses.200.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | -| `put.responses.200.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `put.responses.200.schema.mimetype`? | `string` | - | -| `put.responses.200.schema.name` | { } | - | -| `put.responses.200.schema.path`? | `string` | - | -| `put.responses.200.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | -| `put.responses.200.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | -| `put.responses.200.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | -| `put.responses.200.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | -| `put.responses.200.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | -| `put.responses.200.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | -| `put.responses.200.schema.submissionId` | `number` | - | -| `put.responses.200.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | -| `put.responses.200.schema.updatedAt`? | `string` | `Description` When this object was last updated. | -| `put.responses.200.schema.uploaderUserId` | `number` | - | -| `put.responses.200.schema.url`? | `string` | - | -| `put.responses.200.schema.viewable`? | `boolean` | - | -| `put.responses.400` | { `schema`: { }; } | There was an error when uploading the file or the values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `put.responses.400.schema` | { } | - | -| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You are not allowed to edit the requested file. | -| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.403.schema.error`? | `string` | - | -| `put.responses.403.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L224) +| Member | Type | Description | +| :---------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------- | --------------------------- | ---------------------------------- | ----------------------------- | ---------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `delete` | `object` | You must pass the correct `stageId` when deleting a file. | +| `delete.parameters` | { `path`: { `submissionFileId`: `number`; `submissionId`: `number`; }; `query`: { `stageId`: `number`; }; } | - | +| `delete.parameters.path` | { `submissionFileId`: `number`; `submissionId`: `number`; } | - | +| `delete.parameters.path.submissionFileId` | `number` | Submission File ID | +| `delete.parameters.path.submissionId` | `number` | Submission ID | +| `delete.parameters.query` | { `stageId`: `number`; } | - | +| `delete.parameters.query.stageId` | `number` | The workflow stage id of the file to be edited. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. | +| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `delete.responses.200` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | The submission file that was just deleted. | +| `delete.responses.200.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | +| `delete.responses.200.schema._href`? | `string` | Format: uri | +| `delete.responses.200.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `delete.responses.200.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `delete.responses.200.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `delete.responses.200.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `delete.responses.200.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `delete.responses.200.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `delete.responses.200.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `delete.responses.200.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `delete.responses.200.schema.dependentFiles`? | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `delete.responses.200.schema.description`? | `string` | - | +| `delete.responses.200.schema.documentType`? | `string` | - | +| `delete.responses.200.schema.file`? | `string` | Format: binary | +| `delete.responses.200.schema.fileId` | `number` | - | +| `delete.responses.200.schema.fileStage` | `number` | - | +| `delete.responses.200.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | +| `delete.responses.200.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `delete.responses.200.schema.genre.id`? | `number` | - | +| `delete.responses.200.schema.genre.name`? | `string` | - | +| `delete.responses.200.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `delete.responses.200.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `delete.responses.200.schema.id`? | `number` | - | +| `delete.responses.200.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `delete.responses.200.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `delete.responses.200.schema.mimetype`? | `string` | - | +| `delete.responses.200.schema.name` | { } | - | +| `delete.responses.200.schema.path`? | `string` | - | +| `delete.responses.200.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `delete.responses.200.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `delete.responses.200.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `delete.responses.200.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `delete.responses.200.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `delete.responses.200.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `delete.responses.200.schema.submissionId` | `number` | - | +| `delete.responses.200.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `delete.responses.200.schema.updatedAt`? | `string` | `Description` When this object was last updated. | +| `delete.responses.200.schema.uploaderUserId` | `number` | - | +| `delete.responses.200.schema.url`? | `string` | - | +| `delete.responses.200.schema.viewable`? | `boolean` | - | +| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You are not allowed to delete the requested file. | +| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.403.schema.error`? | `string` | - | +| `delete.responses.403.schema.errorMessage`? | `string` | - | +| `get` | `object` | You must pass the correct `stageId` when requesting a file. | +| `get.parameters` | { `path`: { `submissionFileId`: `number`; `submissionId`: `number`; }; `query`: { `stageId`: `number`; }; } | - | +| `get.parameters.path` | { `submissionFileId`: `number`; `submissionId`: `number`; } | - | +| `get.parameters.path.submissionFileId` | `number` | Submission File ID | +| `get.parameters.path.submissionId` | `number` | Submission ID | +| `get.parameters.query` | { `stageId`: `number`; } | - | +| `get.parameters.query.stageId` | `number` | The workflow stage id of the requested file. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. | +| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | Details of the submission file. | +| `get.responses.200.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | +| `get.responses.200.schema._href`? | `string` | Format: uri | +| `get.responses.200.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `get.responses.200.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `get.responses.200.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `get.responses.200.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `get.responses.200.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `get.responses.200.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `get.responses.200.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `get.responses.200.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `get.responses.200.schema.dependentFiles`? | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `get.responses.200.schema.description`? | `string` | - | +| `get.responses.200.schema.documentType`? | `string` | - | +| `get.responses.200.schema.file`? | `string` | Format: binary | +| `get.responses.200.schema.fileId` | `number` | - | +| `get.responses.200.schema.fileStage` | `number` | - | +| `get.responses.200.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | +| `get.responses.200.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `get.responses.200.schema.genre.id`? | `number` | - | +| `get.responses.200.schema.genre.name`? | `string` | - | +| `get.responses.200.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `get.responses.200.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `get.responses.200.schema.id`? | `number` | - | +| `get.responses.200.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `get.responses.200.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `get.responses.200.schema.mimetype`? | `string` | - | +| `get.responses.200.schema.name` | { } | - | +| `get.responses.200.schema.path`? | `string` | - | +| `get.responses.200.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `get.responses.200.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `get.responses.200.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `get.responses.200.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `get.responses.200.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `get.responses.200.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `get.responses.200.schema.submissionId` | `number` | - | +| `get.responses.200.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `get.responses.200.schema.updatedAt`? | `string` | `Description` When this object was last updated. | +| `get.responses.200.schema.uploaderUserId` | `number` | - | +| `get.responses.200.schema.url`? | `string` | - | +| `get.responses.200.schema.viewable`? | `boolean` | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You are not allowed to access the requested file. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `put` | `object` | You must pass the correct `stageId` when editing a file. | +| `put.parameters` | { `body`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `path`: { `submissionFileId`: `number`; `submissionId`: `number`; }; `query`: { `stageId`: `number`; }; } | - | +| `put.parameters.body` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | - | +| `put.parameters.body.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | +| `put.parameters.body.schema._href`? | `string` | Format: uri | +| `put.parameters.body.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `put.parameters.body.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `put.parameters.body.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `put.parameters.body.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `put.parameters.body.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `put.parameters.body.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `put.parameters.body.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `put.parameters.body.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `put.parameters.body.schema.dependentFiles`? | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `put.parameters.body.schema.description`? | `string` | - | +| `put.parameters.body.schema.documentType`? | `string` | - | +| `put.parameters.body.schema.file`? | `string` | Format: binary | +| `put.parameters.body.schema.fileId` | `number` | - | +| `put.parameters.body.schema.fileStage` | `number` | - | +| `put.parameters.body.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | +| `put.parameters.body.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `put.parameters.body.schema.genre.id`? | `number` | - | +| `put.parameters.body.schema.genre.name`? | `string` | - | +| `put.parameters.body.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `put.parameters.body.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `put.parameters.body.schema.id`? | `number` | - | +| `put.parameters.body.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `put.parameters.body.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `put.parameters.body.schema.mimetype`? | `string` | - | +| `put.parameters.body.schema.name` | { } | - | +| `put.parameters.body.schema.path`? | `string` | - | +| `put.parameters.body.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `put.parameters.body.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `put.parameters.body.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `put.parameters.body.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `put.parameters.body.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `put.parameters.body.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `put.parameters.body.schema.submissionId` | `number` | - | +| `put.parameters.body.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `put.parameters.body.schema.updatedAt`? | `string` | `Description` When this object was last updated. | +| `put.parameters.body.schema.uploaderUserId` | `number` | - | +| `put.parameters.body.schema.url`? | `string` | - | +| `put.parameters.body.schema.viewable`? | `boolean` | - | +| `put.parameters.path` | { `submissionFileId`: `number`; `submissionId`: `number`; } | - | +| `put.parameters.path.submissionFileId` | `number` | Submission File ID | +| `put.parameters.path.submissionId` | `number` | Submission ID | +| `put.parameters.query` | { `stageId`: `number`; } | - | +| `put.parameters.query.stageId` | `number` | The workflow stage id of the file to be edited. For example, `WORKFLOW_STAGE_ID_PRODUCTION`. | +| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `put.responses.200` | { `schema`: { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; }; } | The submission file that was just edited with the new values after the update has occurred. | +| `put.responses.200.schema` | { `_href`?: `string`; `assocId`?: `number`; `assocType`?: `number`; `caption`?: `string`; `copyrightOwner`?: `string`; `createdAt`?: `string`; `creator`?: `string`; `credit`?: `string`; `dateCreated`?: `string`; `dependentFiles`?: `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[]; `description`?: `string`; `documentType`?: `string`; `file`?: `string`; `fileId`: `number`; `fileStage`: `number`; `genre`?: { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; }; `genreId`?: `number`; `id`?: `number`; `language`?: `string`; `locale`?: `string`; `mimetype`?: `string`; `name`: { }; `path`?: `string`; `publisher`?: `string`; `revisions`?: { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[]; `source`?: `string`; `sourceSubmissionFileId`?: `number`; `sponsor`?: `string`; `subject`?: `string`; `submissionId`: `number`; `terms`?: `string`; `updatedAt`?: `string`; `uploaderUserId`: `number`; `url`?: `string`; `viewable`?: `boolean`; } | - | +| `put.responses.200.schema._href`? | `string` | Format: uri | +| `put.responses.200.schema.assocId`? | `number` | `Description` Used with `assocType` to associate this file with an object such as a galley. | +| `put.responses.200.schema.assocType`? | `number` | `Description` Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round). | +| `put.responses.200.schema.caption`? | `string` | `Description` A caption for this file. Used with artwork such as images. | +| `put.responses.200.schema.copyrightOwner`? | `string` | `Description` The copyright owner of this file. Used with artwork such as images. | +| `put.responses.200.schema.createdAt`? | `string` | `Description` The date this submission file object was created in the system. Set automatically by the software. | +| `put.responses.200.schema.creator`? | `string` | `Description` An attribution for this file, such as the creator of a data set. Used with supplementary files. | +| `put.responses.200.schema.credit`? | `string` | `Description` An attribution for this file, such as a photographer's name. Used with artwork such as images. | +| `put.responses.200.schema.dateCreated`? | `string` | `Description` Public metadata about when this content was created. Used with supplementary files. | +| `put.responses.200.schema.dependentFiles`? | `{ \_href?: string | undefined; assocId?: number | undefined; assocType?: number | undefined; caption?: string | undefined; copyrightOwner?: string | undefined; createdAt?: string | undefined; ... 28 more ...; viewable?: boolean | undefined; }`[] | `Description` Any dependent files, typically images or audio files that are loaded by an HTML file. | +| `put.responses.200.schema.description`? | `string` | - | +| `put.responses.200.schema.documentType`? | `string` | - | +| `put.responses.200.schema.file`? | `string` | Format: binary | +| `put.responses.200.schema.fileId` | `number` | - | +| `put.responses.200.schema.fileStage` | `number` | - | +| `put.responses.200.schema.genre`? | { `dependent`?: `boolean`; `id`?: `number`; `name`?: `string`; `supplementary`?: `boolean`; } | `Description` The genre of this file, such as Article Text or Data Set. | +| `put.responses.200.schema.genre.dependent`? | `boolean` | `Description` Dependent files, such as images displayed by a HTML file, that are be displayed with published content. | +| `put.responses.200.schema.genre.id`? | `number` | - | +| `put.responses.200.schema.genre.name`? | `string` | - | +| `put.responses.200.schema.genre.supplementary`? | `boolean` | `Description` Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files. | +| `put.responses.200.schema.genreId`? | `number` | `Description` The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set. | +| `put.responses.200.schema.id`? | `number` | - | +| `put.responses.200.schema.language`? | `string` | `Description` The language of this file if it contains text. Used with supplementary files. | +| `put.responses.200.schema.locale`? | `string` | `Description` The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `put.responses.200.schema.mimetype`? | `string` | - | +| `put.responses.200.schema.name` | { } | - | +| `put.responses.200.schema.path`? | `string` | - | +| `put.responses.200.schema.publisher`? | `string` | `Description` The publisher of this file. Used with supplementary files. | +| `put.responses.200.schema.revisions`? | { `documentType`?: `string`; `fileId`?: `number`; `mimetype`?: `string`; `path`?: `string`; `url`?: `string`; }[] | `Description` Previous versions of this file. | +| `put.responses.200.schema.source`? | `string` | `Description` An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files. | +| `put.responses.200.schema.sourceSubmissionFileId`? | `number` | `Description` When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`. | +| `put.responses.200.schema.sponsor`? | `string` | `Description` Sponsorship or funding disclosure for this file. Used with supplementary files. | +| `put.responses.200.schema.subject`? | `string` | `Description` Subject metadata for this file. Used with supplementary files. | +| `put.responses.200.schema.submissionId` | `number` | - | +| `put.responses.200.schema.terms`? | `string` | `Description` Licensing terms for this file. Used with artwork such as images. | +| `put.responses.200.schema.updatedAt`? | `string` | `Description` When this object was last updated. | +| `put.responses.200.schema.uploaderUserId` | `number` | - | +| `put.responses.200.schema.url`? | `string` | - | +| `put.responses.200.schema.viewable`? | `boolean` | - | +| `put.responses.400` | { `schema`: { }; } | There was an error when uploading the file or the values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `put.responses.400.schema` | { } | - | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | You are not allowed to edit the requested file. | +| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.403.schema.error`? | `string` | - | +| `put.responses.403.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:224](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L224) ##### `/submissions/\{submissionId}/participants` @@ -8024,21 +8024,21 @@ Defined in: [lib/swagger-types.ts:224](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Get the participants assigned to a submisssion. | -| `get.parameters` | { `path`: { `submissionId`: `number`; }; } | - | -| `get.parameters.path` | { `submissionId`: `number`; } | - | -| `get.parameters.path.submissionId` | `number` | Submission ID | -| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; } | List of users assigned to a submission | -| `get.responses.200.schema` | { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[] | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission could not be found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L308) +| Member | Type | Description | +| :--------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------- | +| `get` | `object` | Get the participants assigned to a submisssion. | +| `get.parameters` | { `path`: { `submissionId`: `number`; }; } | - | +| `get.parameters.path` | { `submissionId`: `number`; } | - | +| `get.parameters.path.submissionId` | `number` | Submission ID | +| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; } | List of users assigned to a submission | +| `get.responses.200.schema` | { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[] | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission could not be found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:308](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L308) ##### `/submissions/\{submissionId}/participants/\{stageId}` @@ -8125,22 +8125,22 @@ Defined in: [lib/swagger-types.ts:308](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | Get all participants assigned to a submission for a specific workflow stage, such as the review or copyediting stage. | -| `get.parameters` | { `path`: { `stageId`: `number`; `submissionId`: `number`; }; } | - | -| `get.parameters.path` | { `stageId`: `number`; `submissionId`: `number`; } | - | -| `get.parameters.path.stageId` | `number` | Stage ID | -| `get.parameters.path.submissionId` | `number` | Submission ID | -| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; } | List of users assigned to the requested stage of the requested submission | -| `get.responses.200.schema` | { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[] | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission could not be found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L329) +| Member | Type | Description | +| :--------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | Get all participants assigned to a submission for a specific workflow stage, such as the review or copyediting stage. | +| `get.parameters` | { `path`: { `stageId`: `number`; `submissionId`: `number`; }; } | - | +| `get.parameters.path` | { `stageId`: `number`; `submissionId`: `number`; } | - | +| `get.parameters.path.stageId` | `number` | Stage ID | +| `get.parameters.path.submissionId` | `number` | Submission ID | +| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; } | List of users assigned to the requested stage of the requested submission | +| `get.responses.200.schema` | { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[] | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission could not be found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:329](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L329) ##### `/submissions/\{submissionId}/publications` @@ -8407,121 +8407,121 @@ Defined in: [lib/swagger-types.ts:329](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | - | -| `get.parameters` | { `path`: { `submissionId`: `number`; }; } | - | -| `get.parameters.path` | { `submissionId`: `number`; } | - | -| `get.parameters.path.submissionId` | `number` | Submission ID | -| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; } | List of publications for this submission. | -| `get.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission could not be found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | -| `post` | `object` | Create a new publication for a submission. | -| `post.body` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | - | -| `post.body.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | -| `post.body.schema._href`? | `string` | Format: uri | -| `post.body.schema.abstract`? | `string` | - | -| `post.body.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `post.body.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `post.body.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `post.body.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `post.body.schema.categoryIds`? | `number`[] | - | -| `post.body.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `post.body.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `post.body.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | -| `post.body.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | -| `post.body.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `post.body.schema.coverImage.altText`? | `string` | - | -| `post.body.schema.coverImage.dateUploaded`? | `string` | - | -| `post.body.schema.coverImage.temporaryFileId`? | `number` | - | -| `post.body.schema.coverImage.uploadName`? | `string` | - | -| `post.body.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `post.body.schema.datePublished`? | `string` | - | -| `post.body.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `post.body.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | -| `post.body.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `post.body.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | -| `post.body.schema.id`? | `number` | - | -| `post.body.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `post.body.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `post.body.schema.lastModified`? | `string` | - | -| `post.body.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `post.body.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `post.body.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `post.body.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `post.body.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `post.body.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `post.body.schema.seq`? | `number` | - | -| `post.body.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `post.body.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `post.body.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `post.body.schema.submissionId` | `number` | - | -| `post.body.schema.subtitle`? | { } | - | -| `post.body.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `post.body.schema.title` | { } | - | -| `post.body.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `post.body.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `post.body.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `post.body.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | -| `post.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `post.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | -| `post.parameters.path.publicationId` | `number` | Publication ID | -| `post.parameters.path.submissionId` | `number` | Submission ID | -| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `400`: { `schema`: { }; }; } | - | -| `post.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | Details of the publication that was just added. | -| `post.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | -| `post.responses.200.schema._href`? | `string` | Format: uri | -| `post.responses.200.schema.abstract`? | `string` | - | -| `post.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `post.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `post.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `post.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `post.responses.200.schema.categoryIds`? | `number`[] | - | -| `post.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `post.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `post.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | -| `post.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | -| `post.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `post.responses.200.schema.coverImage.altText`? | `string` | - | -| `post.responses.200.schema.coverImage.dateUploaded`? | `string` | - | -| `post.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | -| `post.responses.200.schema.coverImage.uploadName`? | `string` | - | -| `post.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `post.responses.200.schema.datePublished`? | `string` | - | -| `post.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `post.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | -| `post.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `post.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | -| `post.responses.200.schema.id`? | `number` | - | -| `post.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `post.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `post.responses.200.schema.lastModified`? | `string` | - | -| `post.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `post.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `post.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `post.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `post.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `post.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `post.responses.200.schema.seq`? | `number` | - | -| `post.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `post.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `post.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `post.responses.200.schema.submissionId` | `number` | - | -| `post.responses.200.schema.subtitle`? | { } | - | -| `post.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `post.responses.200.schema.title` | { } | - | -| `post.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `post.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `post.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `post.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | -| `post.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `post.responses.400.schema` | { } | - | - -Defined in: [lib/swagger-types.ts:352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L352) +| Member | Type | Description | +| :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | - | +| `get.parameters` | { `path`: { `submissionId`: `number`; }; } | - | +| `get.parameters.path` | { `submissionId`: `number`; } | - | +| `get.parameters.path.submissionId` | `number` | Submission ID | +| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[]; } | List of publications for this submission. | +| `get.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }[] | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission could not be found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | +| `post` | `object` | Create a new publication for a submission. | +| `post.body` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | - | +| `post.body.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | +| `post.body.schema._href`? | `string` | Format: uri | +| `post.body.schema.abstract`? | `string` | - | +| `post.body.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `post.body.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `post.body.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `post.body.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `post.body.schema.categoryIds`? | `number`[] | - | +| `post.body.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `post.body.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `post.body.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | +| `post.body.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | +| `post.body.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `post.body.schema.coverImage.altText`? | `string` | - | +| `post.body.schema.coverImage.dateUploaded`? | `string` | - | +| `post.body.schema.coverImage.temporaryFileId`? | `number` | - | +| `post.body.schema.coverImage.uploadName`? | `string` | - | +| `post.body.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `post.body.schema.datePublished`? | `string` | - | +| `post.body.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `post.body.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | +| `post.body.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `post.body.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | +| `post.body.schema.id`? | `number` | - | +| `post.body.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `post.body.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `post.body.schema.lastModified`? | `string` | - | +| `post.body.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `post.body.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `post.body.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `post.body.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `post.body.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `post.body.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `post.body.schema.seq`? | `number` | - | +| `post.body.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `post.body.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `post.body.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `post.body.schema.submissionId` | `number` | - | +| `post.body.schema.subtitle`? | { } | - | +| `post.body.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `post.body.schema.title` | { } | - | +| `post.body.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `post.body.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `post.body.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `post.body.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | +| `post.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `post.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | +| `post.parameters.path.publicationId` | `number` | Publication ID | +| `post.parameters.path.submissionId` | `number` | Submission ID | +| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `400`: { `schema`: { }; }; } | - | +| `post.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | Details of the publication that was just added. | +| `post.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | +| `post.responses.200.schema._href`? | `string` | Format: uri | +| `post.responses.200.schema.abstract`? | `string` | - | +| `post.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `post.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `post.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `post.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `post.responses.200.schema.categoryIds`? | `number`[] | - | +| `post.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `post.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `post.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | +| `post.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | +| `post.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `post.responses.200.schema.coverImage.altText`? | `string` | - | +| `post.responses.200.schema.coverImage.dateUploaded`? | `string` | - | +| `post.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | +| `post.responses.200.schema.coverImage.uploadName`? | `string` | - | +| `post.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `post.responses.200.schema.datePublished`? | `string` | - | +| `post.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `post.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | +| `post.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `post.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | +| `post.responses.200.schema.id`? | `number` | - | +| `post.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `post.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `post.responses.200.schema.lastModified`? | `string` | - | +| `post.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `post.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `post.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `post.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `post.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `post.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `post.responses.200.schema.seq`? | `number` | - | +| `post.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `post.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `post.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `post.responses.200.schema.submissionId` | `number` | - | +| `post.responses.200.schema.subtitle`? | { } | - | +| `post.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `post.responses.200.schema.title` | { } | - | +| `post.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `post.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `post.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `post.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | +| `post.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `post.responses.400.schema` | { } | - | + +Defined in: [lib/swagger-types.ts:352](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L352) ##### `/submissions/\{submissionId}/publications/\{publicationId}` @@ -8898,234 +8898,234 @@ Defined in: [lib/swagger-types.ts:352](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `delete` | `object` | Only journal managers and subeditors can make a request to this endpoint. | -| `delete.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `delete.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | -| `delete.parameters.path.publicationId` | `number` | Publication ID | -| `delete.parameters.path.submissionId` | `number` | Submission ID | -| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `delete.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | The publication that was just deleted. | -| `delete.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | -| `delete.responses.200.schema._href`? | `string` | Format: uri | -| `delete.responses.200.schema.abstract`? | `string` | - | -| `delete.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `delete.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `delete.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `delete.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `delete.responses.200.schema.categoryIds`? | `number`[] | - | -| `delete.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `delete.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `delete.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | -| `delete.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | -| `delete.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `delete.responses.200.schema.coverImage.altText`? | `string` | - | -| `delete.responses.200.schema.coverImage.dateUploaded`? | `string` | - | -| `delete.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | -| `delete.responses.200.schema.coverImage.uploadName`? | `string` | - | -| `delete.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `delete.responses.200.schema.datePublished`? | `string` | - | -| `delete.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `delete.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | -| `delete.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `delete.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | -| `delete.responses.200.schema.id`? | `number` | - | -| `delete.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `delete.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `delete.responses.200.schema.lastModified`? | `string` | - | -| `delete.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `delete.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `delete.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `delete.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `delete.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `delete.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `delete.responses.200.schema.seq`? | `number` | - | -| `delete.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `delete.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `delete.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `delete.responses.200.schema.submissionId` | `number` | - | -| `delete.responses.200.schema.subtitle`? | { } | - | -| `delete.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `delete.responses.200.schema.title` | { } | - | -| `delete.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `delete.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `delete.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `delete.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | -| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | This may mean one of the following: \* You are not allowed to delete this publication. \* The publication does not belong to this submission. \* This publication is published and can not be deleted. | -| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.403.schema.error`? | `string` | - | -| `delete.responses.403.schema.errorMessage`? | `string` | - | -| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The submission could not be found. | -| `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.404.schema.error`? | `string` | - | -| `delete.responses.404.schema.errorMessage`? | `string` | - | -| `get` | `object` | - | -| `get.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `get.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | -| `get.parameters.path.publicationId` | `number` | Publication ID | -| `get.parameters.path.submissionId` | `number` | Submission ID | -| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | The publication details | -| `get.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | -| `get.responses.200.schema._href`? | `string` | Format: uri | -| `get.responses.200.schema.abstract`? | `string` | - | -| `get.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `get.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `get.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `get.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `get.responses.200.schema.categoryIds`? | `number`[] | - | -| `get.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `get.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `get.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | -| `get.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | -| `get.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `get.responses.200.schema.coverImage.altText`? | `string` | - | -| `get.responses.200.schema.coverImage.dateUploaded`? | `string` | - | -| `get.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | -| `get.responses.200.schema.coverImage.uploadName`? | `string` | - | -| `get.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `get.responses.200.schema.datePublished`? | `string` | - | -| `get.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `get.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | -| `get.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `get.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | -| `get.responses.200.schema.id`? | `number` | - | -| `get.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `get.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `get.responses.200.schema.lastModified`? | `string` | - | -| `get.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `get.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `get.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `get.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `get.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `get.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `get.responses.200.schema.seq`? | `number` | - | -| `get.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `get.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `get.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `get.responses.200.schema.submissionId` | `number` | - | -| `get.responses.200.schema.subtitle`? | { } | - | -| `get.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `get.responses.200.schema.title` | { } | - | -| `get.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `get.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `get.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `get.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission or publication could not be found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | -| `put` | `object` | - | -| `put.parameters` | { `body`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `put.parameters.body` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | - | -| `put.parameters.body.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | -| `put.parameters.body.schema._href`? | `string` | Format: uri | -| `put.parameters.body.schema.abstract`? | `string` | - | -| `put.parameters.body.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `put.parameters.body.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `put.parameters.body.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `put.parameters.body.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `put.parameters.body.schema.categoryIds`? | `number`[] | - | -| `put.parameters.body.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `put.parameters.body.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `put.parameters.body.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | -| `put.parameters.body.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | -| `put.parameters.body.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `put.parameters.body.schema.coverImage.altText`? | `string` | - | -| `put.parameters.body.schema.coverImage.dateUploaded`? | `string` | - | -| `put.parameters.body.schema.coverImage.temporaryFileId`? | `number` | - | -| `put.parameters.body.schema.coverImage.uploadName`? | `string` | - | -| `put.parameters.body.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `put.parameters.body.schema.datePublished`? | `string` | - | -| `put.parameters.body.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `put.parameters.body.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | -| `put.parameters.body.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `put.parameters.body.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | -| `put.parameters.body.schema.id`? | `number` | - | -| `put.parameters.body.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `put.parameters.body.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `put.parameters.body.schema.lastModified`? | `string` | - | -| `put.parameters.body.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `put.parameters.body.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `put.parameters.body.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `put.parameters.body.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `put.parameters.body.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `put.parameters.body.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `put.parameters.body.schema.seq`? | `number` | - | -| `put.parameters.body.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `put.parameters.body.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `put.parameters.body.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `put.parameters.body.schema.submissionId` | `number` | - | -| `put.parameters.body.schema.subtitle`? | { } | - | -| `put.parameters.body.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `put.parameters.body.schema.title` | { } | - | -| `put.parameters.body.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `put.parameters.body.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `put.parameters.body.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `put.parameters.body.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | -| `put.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | -| `put.parameters.path.publicationId` | `number` | Publication ID | -| `put.parameters.path.submissionId` | `number` | Submission ID | -| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `put.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | The publication that was just edited with the new values after the update has occurred. | -| `put.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | -| `put.responses.200.schema._href`? | `string` | Format: uri | -| `put.responses.200.schema.abstract`? | `string` | - | -| `put.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `put.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `put.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `put.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `put.responses.200.schema.categoryIds`? | `number`[] | - | -| `put.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `put.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `put.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | -| `put.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | -| `put.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `put.responses.200.schema.coverImage.altText`? | `string` | - | -| `put.responses.200.schema.coverImage.dateUploaded`? | `string` | - | -| `put.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | -| `put.responses.200.schema.coverImage.uploadName`? | `string` | - | -| `put.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `put.responses.200.schema.datePublished`? | `string` | - | -| `put.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `put.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | -| `put.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `put.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | -| `put.responses.200.schema.id`? | `number` | - | -| `put.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `put.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `put.responses.200.schema.lastModified`? | `string` | - | -| `put.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `put.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `put.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `put.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `put.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `put.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `put.responses.200.schema.seq`? | `number` | - | -| `put.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `put.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `put.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `put.responses.200.schema.submissionId` | `number` | - | -| `put.responses.200.schema.subtitle`? | { } | - | -| `put.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `put.responses.200.schema.title` | { } | - | -| `put.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `put.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `put.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `put.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | -| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `put.responses.400.schema` | { } | - | -| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | This error indicates one of the following: \* The publication you want to edit does not belong to this submission. \* This publication is published and can not be edited. You must create and publish a new version. \* You do not have permission to edit this publication. \* You are not allowed to modify the `status` of a publication. You must use the `/submissions/{submissionId}/publications/{publicationId}/publish` and `.../unpublish` endpoints to modify the status of a publication. | -| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.403.schema.error`? | `string` | - | -| `put.responses.403.schema.errorMessage`? | `string` | - | -| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The publication could not be found. | -| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.404.schema.error`? | `string` | - | -| `put.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L396) +| Member | Type | Description | +| :---------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `delete` | `object` | Only journal managers and subeditors can make a request to this endpoint. | +| `delete.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `delete.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | +| `delete.parameters.path.publicationId` | `number` | Publication ID | +| `delete.parameters.path.submissionId` | `number` | Submission ID | +| `delete.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `delete.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | The publication that was just deleted. | +| `delete.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | +| `delete.responses.200.schema._href`? | `string` | Format: uri | +| `delete.responses.200.schema.abstract`? | `string` | - | +| `delete.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `delete.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `delete.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `delete.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `delete.responses.200.schema.categoryIds`? | `number`[] | - | +| `delete.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `delete.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `delete.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | +| `delete.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | +| `delete.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `delete.responses.200.schema.coverImage.altText`? | `string` | - | +| `delete.responses.200.schema.coverImage.dateUploaded`? | `string` | - | +| `delete.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | +| `delete.responses.200.schema.coverImage.uploadName`? | `string` | - | +| `delete.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `delete.responses.200.schema.datePublished`? | `string` | - | +| `delete.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `delete.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | +| `delete.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `delete.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | +| `delete.responses.200.schema.id`? | `number` | - | +| `delete.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `delete.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `delete.responses.200.schema.lastModified`? | `string` | - | +| `delete.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `delete.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `delete.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `delete.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `delete.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `delete.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `delete.responses.200.schema.seq`? | `number` | - | +| `delete.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `delete.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `delete.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `delete.responses.200.schema.submissionId` | `number` | - | +| `delete.responses.200.schema.subtitle`? | { } | - | +| `delete.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `delete.responses.200.schema.title` | { } | - | +| `delete.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `delete.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `delete.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `delete.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | +| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | This may mean one of the following: \* You are not allowed to delete this publication. \* The publication does not belong to this submission. \* This publication is published and can not be deleted. | +| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.403.schema.error`? | `string` | - | +| `delete.responses.403.schema.errorMessage`? | `string` | - | +| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The submission could not be found. | +| `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.404.schema.error`? | `string` | - | +| `delete.responses.404.schema.errorMessage`? | `string` | - | +| `get` | `object` | - | +| `get.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `get.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | +| `get.parameters.path.publicationId` | `number` | Publication ID | +| `get.parameters.path.submissionId` | `number` | Submission ID | +| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | The publication details | +| `get.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | +| `get.responses.200.schema._href`? | `string` | Format: uri | +| `get.responses.200.schema.abstract`? | `string` | - | +| `get.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `get.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `get.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `get.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `get.responses.200.schema.categoryIds`? | `number`[] | - | +| `get.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `get.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `get.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | +| `get.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | +| `get.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `get.responses.200.schema.coverImage.altText`? | `string` | - | +| `get.responses.200.schema.coverImage.dateUploaded`? | `string` | - | +| `get.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | +| `get.responses.200.schema.coverImage.uploadName`? | `string` | - | +| `get.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `get.responses.200.schema.datePublished`? | `string` | - | +| `get.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `get.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | +| `get.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `get.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | +| `get.responses.200.schema.id`? | `number` | - | +| `get.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `get.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `get.responses.200.schema.lastModified`? | `string` | - | +| `get.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `get.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `get.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `get.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `get.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `get.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `get.responses.200.schema.seq`? | `number` | - | +| `get.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `get.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `get.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `get.responses.200.schema.submissionId` | `number` | - | +| `get.responses.200.schema.subtitle`? | { } | - | +| `get.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `get.responses.200.schema.title` | { } | - | +| `get.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `get.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `get.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `get.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission or publication could not be found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | +| `put` | `object` | - | +| `put.parameters` | { `body`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `put.parameters.body` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | - | +| `put.parameters.body.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | +| `put.parameters.body.schema._href`? | `string` | Format: uri | +| `put.parameters.body.schema.abstract`? | `string` | - | +| `put.parameters.body.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `put.parameters.body.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `put.parameters.body.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `put.parameters.body.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `put.parameters.body.schema.categoryIds`? | `number`[] | - | +| `put.parameters.body.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `put.parameters.body.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `put.parameters.body.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | +| `put.parameters.body.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | +| `put.parameters.body.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `put.parameters.body.schema.coverImage.altText`? | `string` | - | +| `put.parameters.body.schema.coverImage.dateUploaded`? | `string` | - | +| `put.parameters.body.schema.coverImage.temporaryFileId`? | `number` | - | +| `put.parameters.body.schema.coverImage.uploadName`? | `string` | - | +| `put.parameters.body.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `put.parameters.body.schema.datePublished`? | `string` | - | +| `put.parameters.body.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `put.parameters.body.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | +| `put.parameters.body.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `put.parameters.body.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | +| `put.parameters.body.schema.id`? | `number` | - | +| `put.parameters.body.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `put.parameters.body.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `put.parameters.body.schema.lastModified`? | `string` | - | +| `put.parameters.body.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `put.parameters.body.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `put.parameters.body.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `put.parameters.body.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `put.parameters.body.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `put.parameters.body.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `put.parameters.body.schema.seq`? | `number` | - | +| `put.parameters.body.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `put.parameters.body.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `put.parameters.body.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `put.parameters.body.schema.submissionId` | `number` | - | +| `put.parameters.body.schema.subtitle`? | { } | - | +| `put.parameters.body.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `put.parameters.body.schema.title` | { } | - | +| `put.parameters.body.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `put.parameters.body.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `put.parameters.body.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `put.parameters.body.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | +| `put.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | +| `put.parameters.path.publicationId` | `number` | Publication ID | +| `put.parameters.path.submissionId` | `number` | Submission ID | +| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `put.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | The publication that was just edited with the new values after the update has occurred. | +| `put.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | +| `put.responses.200.schema._href`? | `string` | Format: uri | +| `put.responses.200.schema.abstract`? | `string` | - | +| `put.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `put.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `put.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `put.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `put.responses.200.schema.categoryIds`? | `number`[] | - | +| `put.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `put.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `put.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | +| `put.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | +| `put.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `put.responses.200.schema.coverImage.altText`? | `string` | - | +| `put.responses.200.schema.coverImage.dateUploaded`? | `string` | - | +| `put.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | +| `put.responses.200.schema.coverImage.uploadName`? | `string` | - | +| `put.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `put.responses.200.schema.datePublished`? | `string` | - | +| `put.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `put.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | +| `put.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `put.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | +| `put.responses.200.schema.id`? | `number` | - | +| `put.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `put.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `put.responses.200.schema.lastModified`? | `string` | - | +| `put.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `put.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `put.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `put.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `put.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `put.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `put.responses.200.schema.seq`? | `number` | - | +| `put.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `put.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `put.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `put.responses.200.schema.submissionId` | `number` | - | +| `put.responses.200.schema.subtitle`? | { } | - | +| `put.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `put.responses.200.schema.title` | { } | - | +| `put.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `put.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `put.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `put.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | +| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `put.responses.400.schema` | { } | - | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | This error indicates one of the following: \* The publication you want to edit does not belong to this submission. \* This publication is published and can not be edited. You must create and publish a new version. \* You do not have permission to edit this publication. \* You are not allowed to modify the `status` of a publication. You must use the `/submissions/{submissionId}/publications/{publicationId}/publish` and `.../unpublish` endpoints to modify the status of a publication. | +| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.403.schema.error`? | `string` | - | +| `put.responses.403.schema.errorMessage`? | `string` | - | +| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The publication could not be found. | +| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.404.schema.error`? | `string` | - | +| `put.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:396](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L396) ##### `/submissions/\{submissionId}/publications/\{publicationId}/contributors` @@ -9228,61 +9228,61 @@ Defined in: [lib/swagger-types.ts:396](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `get` | `object` | - | -| `get.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `get.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | -| `get.parameters.path.publicationId` | `number` | Publication ID | -| `get.parameters.path.submissionId` | `number` | Submission ID | -| `get.responses` | { `200`: { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; } | List of contributors for this publication. | -| `get.responses.200.schema` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | - | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested publication is not part of the requested submission. | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested publication could not be found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | -| `post` | `object` | Create a new contributor for a publication. | -| `post.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `post.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | -| `post.parameters.path.publicationId` | `number` | Publication ID | -| `post.parameters.path.submissionId` | `number` | Submission ID | -| `post.responses` | { `200`: { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `post.responses.200` | { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; } | Details of the contributor that was just added. | -| `post.responses.200.schema` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; } | - | -| `post.responses.200.schema.affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | -| `post.responses.200.schema.biography`? | `string` | `Description` An optional bio statement about this contributor. | -| `post.responses.200.schema.country`? | `string` | - | -| `post.responses.200.schema.email` | `string` | - | -| `post.responses.200.schema.familyName`? | `string` | - | -| `post.responses.200.schema.fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | -| `post.responses.200.schema.givenName` | `string` | - | -| `post.responses.200.schema.id`? | `number` | - | -| `post.responses.200.schema.includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | -| `post.responses.200.schema.orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | -| `post.responses.200.schema.preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | -| `post.responses.200.schema.publicationId` | `number` | - | -| `post.responses.200.schema.seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | -| `post.responses.200.schema.submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `post.responses.200.schema.url`? | `string` | `Description` An optional URL to this contributor's webpage. | -| `post.responses.200.schema.userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | -| `post.responses.200.schema.userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | -| `post.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `post.responses.400.schema` | { } | - | -| `post.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested publication is not part of the requested submission. It could be also because the publication is not editable by the requested user | -| `post.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.403.schema.error`? | `string` | - | -| `post.responses.403.schema.errorMessage`? | `string` | - | -| `post.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested publication could not be found. | -| `post.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.404.schema.error`? | `string` | - | -| `post.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L573) +| Member | Type | Description | +| :----------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | - | +| `get.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `get.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | +| `get.parameters.path.publicationId` | `number` | Publication ID | +| `get.parameters.path.submissionId` | `number` | Submission ID | +| `get.responses` | { `200`: { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; } | List of contributors for this publication. | +| `get.responses.200.schema` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | - | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested publication is not part of the requested submission. | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested publication could not be found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | +| `post` | `object` | Create a new contributor for a publication. | +| `post.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `post.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | +| `post.parameters.path.publicationId` | `number` | Publication ID | +| `post.parameters.path.submissionId` | `number` | Submission ID | +| `post.responses` | { `200`: { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `post.responses.200` | { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; } | Details of the contributor that was just added. | +| `post.responses.200.schema` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; } | - | +| `post.responses.200.schema.affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | +| `post.responses.200.schema.biography`? | `string` | `Description` An optional bio statement about this contributor. | +| `post.responses.200.schema.country`? | `string` | - | +| `post.responses.200.schema.email` | `string` | - | +| `post.responses.200.schema.familyName`? | `string` | - | +| `post.responses.200.schema.fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | +| `post.responses.200.schema.givenName` | `string` | - | +| `post.responses.200.schema.id`? | `number` | - | +| `post.responses.200.schema.includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | +| `post.responses.200.schema.orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | +| `post.responses.200.schema.preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | +| `post.responses.200.schema.publicationId` | `number` | - | +| `post.responses.200.schema.seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | +| `post.responses.200.schema.submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `post.responses.200.schema.url`? | `string` | `Description` An optional URL to this contributor's webpage. | +| `post.responses.200.schema.userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | +| `post.responses.200.schema.userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | +| `post.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `post.responses.400.schema` | { } | - | +| `post.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested publication is not part of the requested submission. It could be also because the publication is not editable by the requested user | +| `post.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.403.schema.error`? | `string` | - | +| `post.responses.403.schema.errorMessage`? | `string` | - | +| `post.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested publication could not be found. | +| `post.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.404.schema.error`? | `string` | - | +| `post.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:573](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L573) ##### `/submissions/\{submissionId}/publications/\{publicationId}/contributors/saveOrder` @@ -9392,70 +9392,70 @@ Defined in: [lib/swagger-types.ts:573](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | -| :------ | :------ | -| `put` | `object` | -| `put.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | -| `put.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | -| `put.parameters.path.publicationId` | `number` | -| `put.parameters.path.submissionId` | `number` | -| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | -| `put.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | -| `put.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | -| `put.responses.200.schema._href`? | `string` | -| `put.responses.200.schema.abstract`? | `string` | -| `put.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | -| `put.responses.200.schema.authorsString`? | `string` | -| `put.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | -| `put.responses.200.schema.authorsStringShort`? | `string` | -| `put.responses.200.schema.categoryIds`? | `number`[] | -| `put.responses.200.schema.citations`? | `string`[] | -| `put.responses.200.schema.citationsRaw`? | `string` | -| `put.responses.200.schema.copyrightHolder`? | `string` | -| `put.responses.200.schema.copyrightYear`? | `number` | -| `put.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | -| `put.responses.200.schema.coverImage.altText`? | `string` | -| `put.responses.200.schema.coverImage.dateUploaded`? | `string` | -| `put.responses.200.schema.coverImage.temporaryFileId`? | `number` | -| `put.responses.200.schema.coverImage.uploadName`? | `string` | -| `put.responses.200.schema.coverage`? | `string` | -| `put.responses.200.schema.datePublished`? | `string` | -| `put.responses.200.schema.disciplines`? | `string`[] | -| `put.responses.200.schema.doiId`? | `number` | -| `put.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | -| `put.responses.200.schema.fullTitle`? | `string` | -| `put.responses.200.schema.id`? | `number` | -| `put.responses.200.schema.keywords`? | `string`[] | -| `put.responses.200.schema.languages`? | `string`[] | -| `put.responses.200.schema.lastModified`? | `string` | -| `put.responses.200.schema.licenseUrl`? | `string` | -| `put.responses.200.schema.locale` | `string` | -| `put.responses.200.schema.prefix`? | `string` | -| `put.responses.200.schema.primaryContactId`? | `number` | -| `put.responses.200.schema.pub-id::publisher-id`? | `string` | -| `put.responses.200.schema.rights`? | `string` | -| `put.responses.200.schema.seq`? | `number` | -| `put.responses.200.schema.source`? | `string` | -| `put.responses.200.schema.status`? | `number` | -| `put.responses.200.schema.subjects`? | `string`[] | -| `put.responses.200.schema.submissionId` | `number` | -| `put.responses.200.schema.subtitle`? | { } | -| `put.responses.200.schema.supportingAgencies`? | `string`[] | -| `put.responses.200.schema.title` | { } | -| `put.responses.200.schema.type`? | `string` | -| `put.responses.200.schema.urlPath`? | `string` | -| `put.responses.200.schema.urlPublished`? | `string` | -| `put.responses.200.schema.version` | `number` | -| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | -| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | -| `put.responses.403.schema.error`? | `string` | -| `put.responses.403.schema.errorMessage`? | `string` | -| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | -| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | -| `put.responses.404.schema.error`? | `string` | -| `put.responses.404.schema.errorMessage`? | `string` | - -Defined in: [lib/swagger-types.ts:723](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L723) +| Member | Type | +| :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `put` | `object` | +| `put.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | +| `put.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | +| `put.parameters.path.publicationId` | `number` | +| `put.parameters.path.submissionId` | `number` | +| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | +| `put.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | +| `put.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | +| `put.responses.200.schema._href`? | `string` | +| `put.responses.200.schema.abstract`? | `string` | +| `put.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | +| `put.responses.200.schema.authorsString`? | `string` | +| `put.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | +| `put.responses.200.schema.authorsStringShort`? | `string` | +| `put.responses.200.schema.categoryIds`? | `number`[] | +| `put.responses.200.schema.citations`? | `string`[] | +| `put.responses.200.schema.citationsRaw`? | `string` | +| `put.responses.200.schema.copyrightHolder`? | `string` | +| `put.responses.200.schema.copyrightYear`? | `number` | +| `put.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | +| `put.responses.200.schema.coverImage.altText`? | `string` | +| `put.responses.200.schema.coverImage.dateUploaded`? | `string` | +| `put.responses.200.schema.coverImage.temporaryFileId`? | `number` | +| `put.responses.200.schema.coverImage.uploadName`? | `string` | +| `put.responses.200.schema.coverage`? | `string` | +| `put.responses.200.schema.datePublished`? | `string` | +| `put.responses.200.schema.disciplines`? | `string`[] | +| `put.responses.200.schema.doiId`? | `number` | +| `put.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | +| `put.responses.200.schema.fullTitle`? | `string` | +| `put.responses.200.schema.id`? | `number` | +| `put.responses.200.schema.keywords`? | `string`[] | +| `put.responses.200.schema.languages`? | `string`[] | +| `put.responses.200.schema.lastModified`? | `string` | +| `put.responses.200.schema.licenseUrl`? | `string` | +| `put.responses.200.schema.locale` | `string` | +| `put.responses.200.schema.prefix`? | `string` | +| `put.responses.200.schema.primaryContactId`? | `number` | +| `put.responses.200.schema.pub-id::publisher-id`? | `string` | +| `put.responses.200.schema.rights`? | `string` | +| `put.responses.200.schema.seq`? | `number` | +| `put.responses.200.schema.source`? | `string` | +| `put.responses.200.schema.status`? | `number` | +| `put.responses.200.schema.subjects`? | `string`[] | +| `put.responses.200.schema.submissionId` | `number` | +| `put.responses.200.schema.subtitle`? | { } | +| `put.responses.200.schema.supportingAgencies`? | `string`[] | +| `put.responses.200.schema.title` | { } | +| `put.responses.200.schema.type`? | `string` | +| `put.responses.200.schema.urlPath`? | `string` | +| `put.responses.200.schema.urlPublished`? | `string` | +| `put.responses.200.schema.version` | `number` | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | +| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | +| `put.responses.403.schema.error`? | `string` | +| `put.responses.403.schema.errorMessage`? | `string` | +| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | +| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | +| `put.responses.404.schema.error`? | `string` | +| `put.responses.404.schema.errorMessage`? | `string` | + +Defined in: [lib/swagger-types.ts:723](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L723) ##### `/submissions/\{submissionId}/publications/\{publicationId}/contributors/\{contributorId}` @@ -9604,114 +9604,114 @@ Defined in: [lib/swagger-types.ts:723](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `delete` | `object` | Only journal managers and subeditors can make a request to this endpoint. | -| `delete.parameters` | { `path`: { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `delete.parameters.path` | { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; } | - | -| `delete.parameters.path.contributorId` | `number` | Contributor ID | -| `delete.parameters.path.publicationId` | `number` | Publication ID | -| `delete.parameters.path.submissionId` | `number` | Submission ID | -| `delete.responses` | { `200`: { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `delete.responses.200` | { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; } | The contributor that was just deleted. | -| `delete.responses.200.schema` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; } | - | -| `delete.responses.200.schema.affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | -| `delete.responses.200.schema.biography`? | `string` | `Description` An optional bio statement about this contributor. | -| `delete.responses.200.schema.country`? | `string` | - | -| `delete.responses.200.schema.email` | `string` | - | -| `delete.responses.200.schema.familyName`? | `string` | - | -| `delete.responses.200.schema.fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | -| `delete.responses.200.schema.givenName` | `string` | - | -| `delete.responses.200.schema.id`? | `number` | - | -| `delete.responses.200.schema.includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | -| `delete.responses.200.schema.orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | -| `delete.responses.200.schema.preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | -| `delete.responses.200.schema.publicationId` | `number` | - | -| `delete.responses.200.schema.seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | -| `delete.responses.200.schema.submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `delete.responses.200.schema.url`? | `string` | `Description` An optional URL to this contributor's webpage. | -| `delete.responses.200.schema.userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | -| `delete.responses.200.schema.userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | -| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | This may mean one of the following: \* You are not allowed to edit the contributors for this publication. \* This contributor is assigned to a publication that is not part of the requested submission. \* This contributor is assigned to a published publication and can not be edited. | -| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.403.schema.error`? | `string` | - | -| `delete.responses.403.schema.errorMessage`? | `string` | - | -| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission or publication or author could not be found. | -| `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `delete.responses.404.schema.error`? | `string` | - | -| `delete.responses.404.schema.errorMessage`? | `string` | - | -| `get` | `object` | - | -| `get.parameters` | { `path`: { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `get.parameters.path` | { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; } | - | -| `get.parameters.path.contributorId` | `number` | Contributor ID | -| `get.parameters.path.publicationId` | `number` | Publication ID | -| `get.parameters.path.submissionId` | `number` | Submission ID | -| `get.responses` | { `200`: { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `get.responses.200` | { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; } | The contributor details | -| `get.responses.200.schema` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; } | - | -| `get.responses.200.schema.affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | -| `get.responses.200.schema.biography`? | `string` | `Description` An optional bio statement about this contributor. | -| `get.responses.200.schema.country`? | `string` | - | -| `get.responses.200.schema.email` | `string` | - | -| `get.responses.200.schema.familyName`? | `string` | - | -| `get.responses.200.schema.fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | -| `get.responses.200.schema.givenName` | `string` | - | -| `get.responses.200.schema.id`? | `number` | - | -| `get.responses.200.schema.includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | -| `get.responses.200.schema.orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | -| `get.responses.200.schema.preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | -| `get.responses.200.schema.publicationId` | `number` | - | -| `get.responses.200.schema.seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | -| `get.responses.200.schema.submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `get.responses.200.schema.url`? | `string` | `Description` An optional URL to this contributor's webpage. | -| `get.responses.200.schema.userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | -| `get.responses.200.schema.userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested publication is not part of the requested submission. It could be also because the publication is not editable by the requested user | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.403.schema.error`? | `string` | - | -| `get.responses.403.schema.errorMessage`? | `string` | - | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission or publication or author could not be found. | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `get.responses.404.schema.error`? | `string` | - | -| `get.responses.404.schema.errorMessage`? | `string` | - | -| `put` | `object` | - | -| `put.parameters` | { `path`: { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `put.parameters.path` | { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; } | - | -| `put.parameters.path.contributorId` | `number` | Contributor ID | -| `put.parameters.path.publicationId` | `number` | Publication ID | -| `put.parameters.path.submissionId` | `number` | Submission ID | -| `put.responses` | { `200`: { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `put.responses.200` | { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; } | The contributor that was just edited with the new values after the update has occurred. | -| `put.responses.200.schema` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; } | - | -| `put.responses.200.schema.affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | -| `put.responses.200.schema.biography`? | `string` | `Description` An optional bio statement about this contributor. | -| `put.responses.200.schema.country`? | `string` | - | -| `put.responses.200.schema.email` | `string` | - | -| `put.responses.200.schema.familyName`? | `string` | - | -| `put.responses.200.schema.fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | -| `put.responses.200.schema.givenName` | `string` | - | -| `put.responses.200.schema.id`? | `number` | - | -| `put.responses.200.schema.includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | -| `put.responses.200.schema.orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | -| `put.responses.200.schema.preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | -| `put.responses.200.schema.publicationId` | `number` | - | -| `put.responses.200.schema.seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | -| `put.responses.200.schema.submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `put.responses.200.schema.url`? | `string` | `Description` An optional URL to this contributor's webpage. | -| `put.responses.200.schema.userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | -| `put.responses.200.schema.userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | -| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | -| `put.responses.400.schema` | { } | - | -| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | This error indicates one of the following: \* This contributor is assigned to a publication that does not belong to this submission. \* This contributor is assigned to a publication that has already been published. You must create a new version of the publication to modify contributor details. \* You do not have permission to edit contributors for this publication. | -| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.403.schema.error`? | `string` | - | -| `put.responses.403.schema.errorMessage`? | `string` | - | -| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission or publication or author could not be found. | -| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.404.schema.error`? | `string` | - | -| `put.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L628) +| Member | Type | Description | +| :------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `delete` | `object` | Only journal managers and subeditors can make a request to this endpoint. | +| `delete.parameters` | { `path`: { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `delete.parameters.path` | { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; } | - | +| `delete.parameters.path.contributorId` | `number` | Contributor ID | +| `delete.parameters.path.publicationId` | `number` | Publication ID | +| `delete.parameters.path.submissionId` | `number` | Submission ID | +| `delete.responses` | { `200`: { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `delete.responses.200` | { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; } | The contributor that was just deleted. | +| `delete.responses.200.schema` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; } | - | +| `delete.responses.200.schema.affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | +| `delete.responses.200.schema.biography`? | `string` | `Description` An optional bio statement about this contributor. | +| `delete.responses.200.schema.country`? | `string` | - | +| `delete.responses.200.schema.email` | `string` | - | +| `delete.responses.200.schema.familyName`? | `string` | - | +| `delete.responses.200.schema.fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | +| `delete.responses.200.schema.givenName` | `string` | - | +| `delete.responses.200.schema.id`? | `number` | - | +| `delete.responses.200.schema.includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | +| `delete.responses.200.schema.orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | +| `delete.responses.200.schema.preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | +| `delete.responses.200.schema.publicationId` | `number` | - | +| `delete.responses.200.schema.seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | +| `delete.responses.200.schema.submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `delete.responses.200.schema.url`? | `string` | `Description` An optional URL to this contributor's webpage. | +| `delete.responses.200.schema.userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | +| `delete.responses.200.schema.userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | +| `delete.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | This may mean one of the following: \* You are not allowed to edit the contributors for this publication. \* This contributor is assigned to a publication that is not part of the requested submission. \* This contributor is assigned to a published publication and can not be edited. | +| `delete.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.403.schema.error`? | `string` | - | +| `delete.responses.403.schema.errorMessage`? | `string` | - | +| `delete.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission or publication or author could not be found. | +| `delete.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `delete.responses.404.schema.error`? | `string` | - | +| `delete.responses.404.schema.errorMessage`? | `string` | - | +| `get` | `object` | - | +| `get.parameters` | { `path`: { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `get.parameters.path` | { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; } | - | +| `get.parameters.path.contributorId` | `number` | Contributor ID | +| `get.parameters.path.publicationId` | `number` | Publication ID | +| `get.parameters.path.submissionId` | `number` | Submission ID | +| `get.responses` | { `200`: { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `get.responses.200` | { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; } | The contributor details | +| `get.responses.200.schema` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; } | - | +| `get.responses.200.schema.affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | +| `get.responses.200.schema.biography`? | `string` | `Description` An optional bio statement about this contributor. | +| `get.responses.200.schema.country`? | `string` | - | +| `get.responses.200.schema.email` | `string` | - | +| `get.responses.200.schema.familyName`? | `string` | - | +| `get.responses.200.schema.fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | +| `get.responses.200.schema.givenName` | `string` | - | +| `get.responses.200.schema.id`? | `number` | - | +| `get.responses.200.schema.includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | +| `get.responses.200.schema.orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | +| `get.responses.200.schema.preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | +| `get.responses.200.schema.publicationId` | `number` | - | +| `get.responses.200.schema.seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | +| `get.responses.200.schema.submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `get.responses.200.schema.url`? | `string` | `Description` An optional URL to this contributor's webpage. | +| `get.responses.200.schema.userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | +| `get.responses.200.schema.userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested publication is not part of the requested submission. It could be also because the publication is not editable by the requested user | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.403.schema.error`? | `string` | - | +| `get.responses.403.schema.errorMessage`? | `string` | - | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission or publication or author could not be found. | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `get.responses.404.schema.error`? | `string` | - | +| `get.responses.404.schema.errorMessage`? | `string` | - | +| `put` | `object` | - | +| `put.parameters` | { `path`: { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `put.parameters.path` | { `contributorId`: `number`; `publicationId`: `number`; `submissionId`: `number`; } | - | +| `put.parameters.path.contributorId` | `number` | Contributor ID | +| `put.parameters.path.publicationId` | `number` | Publication ID | +| `put.parameters.path.submissionId` | `number` | Submission ID | +| `put.responses` | { `200`: { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `put.responses.200` | { `schema`: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }; } | The contributor that was just edited with the new values after the update has occurred. | +| `put.responses.200.schema` | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; } | - | +| `put.responses.200.schema.affiliation`? | `string` | `Description` The scholarly institution this contributor is employed by or affiliated with. | +| `put.responses.200.schema.biography`? | `string` | `Description` An optional bio statement about this contributor. | +| `put.responses.200.schema.country`? | `string` | - | +| `put.responses.200.schema.email` | `string` | - | +| `put.responses.200.schema.familyName`? | `string` | - | +| `put.responses.200.schema.fullName`? | `string` | `Description` The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName. | +| `put.responses.200.schema.givenName` | `string` | - | +| `put.responses.200.schema.id`? | `number` | - | +| `put.responses.200.schema.includeInBrowse`? | `boolean` | `Description` Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. `Default` true | +| `put.responses.200.schema.orcid`? | `string` | `Description` The ORCID of this contributor. See: https\://orcid.org/ | +| `put.responses.200.schema.preferredPublicName`? | `string` | `Description` An optional field for contributors to specify how they prefer to be identified in this publication. | +| `put.responses.200.schema.publicationId` | `number` | - | +| `put.responses.200.schema.seq`? | `number` | `Description` The order in which this contributor should appear in a list of contriibutors. | +| `put.responses.200.schema.submissionLocale`? | `string` | `Description` The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `put.responses.200.schema.url`? | `string` | `Description` An optional URL to this contributor's webpage. | +| `put.responses.200.schema.userGroupId` | `number` | `Description` The ID of this contributor's assigned user group. See userGroupName. | +| `put.responses.200.schema.userGroupName`? | `string` | `Description` The name of this contributor's role in the publication, such as 'Author' or 'Translator'. | +| `put.responses.400` | { `schema`: { }; } | The values you sent with the request did not pass validation. The response will contain information about which parameters failed validation. | +| `put.responses.400.schema` | { } | - | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | This error indicates one of the following: \* This contributor is assigned to a publication that does not belong to this submission. \* This contributor is assigned to a publication that has already been published. You must create a new version of the publication to modify contributor details. \* You do not have permission to edit contributors for this publication. | +| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.403.schema.error`? | `string` | - | +| `put.responses.403.schema.errorMessage`? | `string` | - | +| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The requested submission or publication or author could not be found. | +| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.404.schema.error`? | `string` | - | +| `put.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:628](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L628) ##### `/submissions/\{submissionId}/publications/\{publicationId}/publish` @@ -9825,72 +9825,72 @@ Defined in: [lib/swagger-types.ts:628](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `put` | `object` | If the publication is assigned to an issue that is not yet published, it will be scheduled for publication and the `status` will be set to `PKPSubmission::STATUS_SCHEDULED`. If the issue is already published, it will be published immediately and the `status` will be set to `PKPSubmission::STATUS_PUBLISHED`. The publication will be validated against any publishing requirements before it is published and a `400` response will be returned if it fails validation. | -| `put.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `put.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | -| `put.parameters.path.publicationId` | `number` | Publication ID | -| `put.parameters.path.submissionId` | `number` | Submission ID | -| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `put.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | Details of the publication that was just published. | -| `put.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | -| `put.responses.200.schema._href`? | `string` | Format: uri | -| `put.responses.200.schema.abstract`? | `string` | - | -| `put.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `put.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `put.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `put.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `put.responses.200.schema.categoryIds`? | `number`[] | - | -| `put.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `put.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `put.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | -| `put.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | -| `put.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `put.responses.200.schema.coverImage.altText`? | `string` | - | -| `put.responses.200.schema.coverImage.dateUploaded`? | `string` | - | -| `put.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | -| `put.responses.200.schema.coverImage.uploadName`? | `string` | - | -| `put.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `put.responses.200.schema.datePublished`? | `string` | - | -| `put.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `put.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | -| `put.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `put.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | -| `put.responses.200.schema.id`? | `number` | - | -| `put.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `put.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `put.responses.200.schema.lastModified`? | `string` | - | -| `put.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `put.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `put.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `put.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `put.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `put.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `put.responses.200.schema.seq`? | `number` | - | -| `put.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `put.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `put.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `put.responses.200.schema.submissionId` | `number` | - | -| `put.responses.200.schema.subtitle`? | { } | - | -| `put.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `put.responses.200.schema.title` | { } | - | -| `put.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `put.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `put.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `put.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | -| `put.responses.400` | { `schema`: { }; } | One or more publication requirements have not been met. | -| `put.responses.400.schema` | { } | - | -| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | A 403 response means that the publication you want to version does not belong to this submission or that the publication is already published. | -| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.403.schema.error`? | `string` | - | -| `put.responses.403.schema.errorMessage`? | `string` | - | -| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The publication could not be found. | -| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `put.responses.404.schema.error`? | `string` | - | -| `put.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L512) +| Member | Type | Description | +| :------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `put` | `object` | If the publication is assigned to an issue that is not yet published, it will be scheduled for publication and the `status` will be set to `PKPSubmission::STATUS_SCHEDULED`. If the issue is already published, it will be published immediately and the `status` will be set to `PKPSubmission::STATUS_PUBLISHED`. The publication will be validated against any publishing requirements before it is published and a `400` response will be returned if it fails validation. | +| `put.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `put.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | +| `put.parameters.path.publicationId` | `number` | Publication ID | +| `put.parameters.path.submissionId` | `number` | Submission ID | +| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `400`: { `schema`: { }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `put.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | Details of the publication that was just published. | +| `put.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | +| `put.responses.200.schema._href`? | `string` | Format: uri | +| `put.responses.200.schema.abstract`? | `string` | - | +| `put.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `put.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `put.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `put.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `put.responses.200.schema.categoryIds`? | `number`[] | - | +| `put.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `put.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `put.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | +| `put.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | +| `put.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `put.responses.200.schema.coverImage.altText`? | `string` | - | +| `put.responses.200.schema.coverImage.dateUploaded`? | `string` | - | +| `put.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | +| `put.responses.200.schema.coverImage.uploadName`? | `string` | - | +| `put.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `put.responses.200.schema.datePublished`? | `string` | - | +| `put.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `put.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | +| `put.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `put.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | +| `put.responses.200.schema.id`? | `number` | - | +| `put.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `put.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `put.responses.200.schema.lastModified`? | `string` | - | +| `put.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `put.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `put.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `put.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `put.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `put.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `put.responses.200.schema.seq`? | `number` | - | +| `put.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `put.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `put.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `put.responses.200.schema.submissionId` | `number` | - | +| `put.responses.200.schema.subtitle`? | { } | - | +| `put.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `put.responses.200.schema.title` | { } | - | +| `put.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `put.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `put.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `put.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | +| `put.responses.400` | { `schema`: { }; } | One or more publication requirements have not been met. | +| `put.responses.400.schema` | { } | - | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | A 403 response means that the publication you want to version does not belong to this submission or that the publication is already published. | +| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.403.schema.error`? | `string` | - | +| `put.responses.403.schema.errorMessage`? | `string` | - | +| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The publication could not be found. | +| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `put.responses.404.schema.error`? | `string` | - | +| `put.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:512](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L512) ##### `/submissions/\{submissionId}/publications/\{publicationId}/unpublish` @@ -10000,70 +10000,70 @@ Defined in: [lib/swagger-types.ts:512](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | -| :------ | :------ | -| `put` | `object` | -| `put.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | -| `put.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | -| `put.parameters.path.publicationId` | `number` | -| `put.parameters.path.submissionId` | `number` | -| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | -| `put.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | -| `put.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | -| `put.responses.200.schema._href`? | `string` | -| `put.responses.200.schema.abstract`? | `string` | -| `put.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | -| `put.responses.200.schema.authorsString`? | `string` | -| `put.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | -| `put.responses.200.schema.authorsStringShort`? | `string` | -| `put.responses.200.schema.categoryIds`? | `number`[] | -| `put.responses.200.schema.citations`? | `string`[] | -| `put.responses.200.schema.citationsRaw`? | `string` | -| `put.responses.200.schema.copyrightHolder`? | `string` | -| `put.responses.200.schema.copyrightYear`? | `number` | -| `put.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | -| `put.responses.200.schema.coverImage.altText`? | `string` | -| `put.responses.200.schema.coverImage.dateUploaded`? | `string` | -| `put.responses.200.schema.coverImage.temporaryFileId`? | `number` | -| `put.responses.200.schema.coverImage.uploadName`? | `string` | -| `put.responses.200.schema.coverage`? | `string` | -| `put.responses.200.schema.datePublished`? | `string` | -| `put.responses.200.schema.disciplines`? | `string`[] | -| `put.responses.200.schema.doiId`? | `number` | -| `put.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | -| `put.responses.200.schema.fullTitle`? | `string` | -| `put.responses.200.schema.id`? | `number` | -| `put.responses.200.schema.keywords`? | `string`[] | -| `put.responses.200.schema.languages`? | `string`[] | -| `put.responses.200.schema.lastModified`? | `string` | -| `put.responses.200.schema.licenseUrl`? | `string` | -| `put.responses.200.schema.locale` | `string` | -| `put.responses.200.schema.prefix`? | `string` | -| `put.responses.200.schema.primaryContactId`? | `number` | -| `put.responses.200.schema.pub-id::publisher-id`? | `string` | -| `put.responses.200.schema.rights`? | `string` | -| `put.responses.200.schema.seq`? | `number` | -| `put.responses.200.schema.source`? | `string` | -| `put.responses.200.schema.status`? | `number` | -| `put.responses.200.schema.subjects`? | `string`[] | -| `put.responses.200.schema.submissionId` | `number` | -| `put.responses.200.schema.subtitle`? | { } | -| `put.responses.200.schema.supportingAgencies`? | `string`[] | -| `put.responses.200.schema.title` | { } | -| `put.responses.200.schema.type`? | `string` | -| `put.responses.200.schema.urlPath`? | `string` | -| `put.responses.200.schema.urlPublished`? | `string` | -| `put.responses.200.schema.version` | `number` | -| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | -| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | -| `put.responses.403.schema.error`? | `string` | -| `put.responses.403.schema.errorMessage`? | `string` | -| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | -| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | -| `put.responses.404.schema.error`? | `string` | -| `put.responses.404.schema.errorMessage`? | `string` | - -Defined in: [lib/swagger-types.ts:547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L547) +| Member | Type | +| :------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `put` | `object` | +| `put.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | +| `put.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | +| `put.parameters.path.publicationId` | `number` | +| `put.parameters.path.submissionId` | `number` | +| `put.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | +| `put.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | +| `put.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | +| `put.responses.200.schema._href`? | `string` | +| `put.responses.200.schema.abstract`? | `string` | +| `put.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | +| `put.responses.200.schema.authorsString`? | `string` | +| `put.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | +| `put.responses.200.schema.authorsStringShort`? | `string` | +| `put.responses.200.schema.categoryIds`? | `number`[] | +| `put.responses.200.schema.citations`? | `string`[] | +| `put.responses.200.schema.citationsRaw`? | `string` | +| `put.responses.200.schema.copyrightHolder`? | `string` | +| `put.responses.200.schema.copyrightYear`? | `number` | +| `put.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | +| `put.responses.200.schema.coverImage.altText`? | `string` | +| `put.responses.200.schema.coverImage.dateUploaded`? | `string` | +| `put.responses.200.schema.coverImage.temporaryFileId`? | `number` | +| `put.responses.200.schema.coverImage.uploadName`? | `string` | +| `put.responses.200.schema.coverage`? | `string` | +| `put.responses.200.schema.datePublished`? | `string` | +| `put.responses.200.schema.disciplines`? | `string`[] | +| `put.responses.200.schema.doiId`? | `number` | +| `put.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | +| `put.responses.200.schema.fullTitle`? | `string` | +| `put.responses.200.schema.id`? | `number` | +| `put.responses.200.schema.keywords`? | `string`[] | +| `put.responses.200.schema.languages`? | `string`[] | +| `put.responses.200.schema.lastModified`? | `string` | +| `put.responses.200.schema.licenseUrl`? | `string` | +| `put.responses.200.schema.locale` | `string` | +| `put.responses.200.schema.prefix`? | `string` | +| `put.responses.200.schema.primaryContactId`? | `number` | +| `put.responses.200.schema.pub-id::publisher-id`? | `string` | +| `put.responses.200.schema.rights`? | `string` | +| `put.responses.200.schema.seq`? | `number` | +| `put.responses.200.schema.source`? | `string` | +| `put.responses.200.schema.status`? | `number` | +| `put.responses.200.schema.subjects`? | `string`[] | +| `put.responses.200.schema.submissionId` | `number` | +| `put.responses.200.schema.subtitle`? | { } | +| `put.responses.200.schema.supportingAgencies`? | `string`[] | +| `put.responses.200.schema.title` | { } | +| `put.responses.200.schema.type`? | `string` | +| `put.responses.200.schema.urlPath`? | `string` | +| `put.responses.200.schema.urlPublished`? | `string` | +| `put.responses.200.schema.version` | `number` | +| `put.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | +| `put.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | +| `put.responses.403.schema.error`? | `string` | +| `put.responses.403.schema.errorMessage`? | `string` | +| `put.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | +| `put.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | +| `put.responses.404.schema.error`? | `string` | +| `put.responses.404.schema.errorMessage`? | `string` | + +Defined in: [lib/swagger-types.ts:547](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L547) ##### `/submissions/\{submissionId}/publications/\{publicationId}/version` @@ -10173,70 +10173,70 @@ Defined in: [lib/swagger-types.ts:547](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `post` | `object` | Duplicate a publication, including author and galley records, in order to create a new version of a publication that can be edited. | -| `post.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | -| `post.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | -| `post.parameters.path.publicationId` | `number` | Publication ID | -| `post.parameters.path.submissionId` | `number` | Submission ID | -| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `post.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | Details of the new publication that was created. | -| `post.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | -| `post.responses.200.schema._href`? | `string` | Format: uri | -| `post.responses.200.schema.abstract`? | `string` | - | -| `post.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | -| `post.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | -| `post.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | -| `post.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | -| `post.responses.200.schema.categoryIds`? | `number`[] | - | -| `post.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | -| `post.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | -| `post.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | -| `post.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | -| `post.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | -| `post.responses.200.schema.coverImage.altText`? | `string` | - | -| `post.responses.200.schema.coverImage.dateUploaded`? | `string` | - | -| `post.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | -| `post.responses.200.schema.coverImage.uploadName`? | `string` | - | -| `post.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | -| `post.responses.200.schema.datePublished`? | `string` | - | -| `post.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | -| `post.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | -| `post.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | -| `post.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | -| `post.responses.200.schema.id`? | `number` | - | -| `post.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | -| `post.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | -| `post.responses.200.schema.lastModified`? | `string` | - | -| `post.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | -| `post.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | -| `post.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | -| `post.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | -| `post.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | -| `post.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | -| `post.responses.200.schema.seq`? | `number` | - | -| `post.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | -| `post.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | -| `post.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | -| `post.responses.200.schema.submissionId` | `number` | - | -| `post.responses.200.schema.subtitle`? | { } | - | -| `post.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | -| `post.responses.200.schema.title` | { } | - | -| `post.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | -| `post.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | -| `post.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | -| `post.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | -| `post.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The publication you want to version does not belong to this submission. | -| `post.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.403.schema.error`? | `string` | - | -| `post.responses.403.schema.errorMessage`? | `string` | - | -| `post.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The publication could not be found. | -| `post.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.404.schema.error`? | `string` | - | -| `post.responses.404.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L485) +| Member | Type | Description | +| :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `post` | `object` | Duplicate a publication, including author and galley records, in order to create a new version of a publication that can be edited. | +| `post.parameters` | { `path`: { `publicationId`: `number`; `submissionId`: `number`; }; } | - | +| `post.parameters.path` | { `publicationId`: `number`; `submissionId`: `number`; } | - | +| `post.parameters.path.publicationId` | `number` | Publication ID | +| `post.parameters.path.submissionId` | `number` | Submission ID | +| `post.responses` | { `200`: { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `post.responses.200` | { `schema`: { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; }; } | Details of the new publication that was created. | +| `post.responses.200.schema` | { `_href`?: `string`; `abstract`?: `string`; `authors`?: { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[]; `authorsString`?: `string`; `authorsStringIncludeInBrowse`?: `string`; `authorsStringShort`?: `string`; `categoryIds`?: `number`[]; `citations`?: `string`[]; `citationsRaw`?: `string`; `copyrightHolder`?: `string`; `copyrightYear`?: `number`; `coverImage`?: { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; }; `coverage`?: `string`; `datePublished`?: `string`; `disciplines`?: `string`[]; `doiId`?: `number`; `doiObject`?: { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[]; `fullTitle`?: `string`; `id`?: `number`; `keywords`?: `string`[]; `languages`?: `string`[]; `lastModified`?: `string`; `licenseUrl`?: `string`; `locale`: `string`; `prefix`?: `string`; `primaryContactId`?: `number`; `pub-id::publisher-id`?: `string`; `rights`?: `string`; `seq`?: `number`; `source`?: `string`; `status`?: `number`; `subjects`?: `string`[]; `submissionId`: `number`; `subtitle`?: { }; `supportingAgencies`?: `string`[]; `title`: { }; `type`?: `string`; `urlPath`?: `string`; `urlPublished`?: `string`; `version`: `number`; } | - | +| `post.responses.200.schema._href`? | `string` | Format: uri | +| `post.responses.200.schema.abstract`? | `string` | - | +| `post.responses.200.schema.authors`? | { `affiliation`?: `string`; `biography`?: `string`; `country`?: `string`; `email`: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`: `string`; `id`?: `number`; `includeInBrowse`?: `boolean`; `orcid`?: `string`; `preferredPublicName`?: `string`; `publicationId`: `number`; `seq`?: `number`; `submissionLocale`?: `string`; `url`?: `string`; `userGroupId`: `number`; `userGroupName`?: `string`; }[] | `Description` A list of the authors for this publication. | +| `post.responses.200.schema.authorsString`? | `string` | `Description` All of the authors rendered with the appropriate separators according to the locale. | +| `post.responses.200.schema.authorsStringIncludeInBrowse`? | `string` | `Description` A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale. | +| `post.responses.200.schema.authorsStringShort`? | `string` | `Description` A shortened version of the authors rendered with the appropriate separators according to the locale. | +| `post.responses.200.schema.categoryIds`? | `number`[] | - | +| `post.responses.200.schema.citations`? | `string`[] | `Description` Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text. | +| `post.responses.200.schema.citationsRaw`? | `string` | `Description` Optional metadata that contains references for works cited in this submission as raw text. | +| `post.responses.200.schema.copyrightHolder`? | `string` | `Description` The copyright statement for this publication. | +| `post.responses.200.schema.copyrightYear`? | `number` | `Description` The copyright year for this publication. | +| `post.responses.200.schema.coverImage`? | { `altText`?: `string`; `dateUploaded`?: `string`; `temporaryFileId`?: `number`; `uploadName`?: `string`; } | - | +| `post.responses.200.schema.coverImage.altText`? | `string` | - | +| `post.responses.200.schema.coverImage.dateUploaded`? | `string` | - | +| `post.responses.200.schema.coverImage.temporaryFileId`? | `number` | - | +| `post.responses.200.schema.coverImage.uploadName`? | `string` | - | +| `post.responses.200.schema.coverage`? | `string` | `Description` Optional metadata that usually indicates a work's location, time period or jurisdiction. | +| `post.responses.200.schema.datePublished`? | `string` | - | +| `post.responses.200.schema.disciplines`? | `string`[] | `Description` Optional metadata that describes the submission's types of study or branches of knowledge. | +| `post.responses.200.schema.doiId`? | `number` | `Description` Reference to the DOI for this publication | +| `post.responses.200.schema.doiObject`? | { `contextId`: `number`; `doi`: `string`; `id`?: `number`; `resolvingUrl`?: `string`; `status`?: `number`; }[] | `Description` DOI object for this publication | +| `post.responses.200.schema.fullTitle`? | `string` | `Description` The combined prefix, title and subtitle. | +| `post.responses.200.schema.id`? | `number` | - | +| `post.responses.200.schema.keywords`? | `string`[] | `Description` Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. | +| `post.responses.200.schema.languages`? | `string`[] | `Description` Optional metadata that identifies the submission's primary language. | +| `post.responses.200.schema.lastModified`? | `string` | - | +| `post.responses.200.schema.licenseUrl`? | `string` | `Description` A URL to a webpage describing the license terms for this publication. | +| `post.responses.200.schema.locale` | `string` | `Description` The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property. | +| `post.responses.200.schema.prefix`? | `string` | `Description` A prefix to be prepended to the title. In English, words such as "The" and "A" are commonly entered in the prefix instead of the title. | +| `post.responses.200.schema.primaryContactId`? | `number` | `Description` Which `contributor` is the primary contact for this publication. | +| `post.responses.200.schema.pub-id::publisher-id`? | `string` | `Description` A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present. | +| `post.responses.200.schema.rights`? | `string` | `Description` Optional metadata that describes any rights held over the submission. | +| `post.responses.200.schema.seq`? | `number` | - | +| `post.responses.200.schema.source`? | `string` | `Description` Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived. | +| `post.responses.200.schema.status`? | `number` | `Description` Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`. `Default` 1 | +| `post.responses.200.schema.subjects`? | `string`[] | `Description` Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. | +| `post.responses.200.schema.submissionId` | `number` | - | +| `post.responses.200.schema.subtitle`? | { } | - | +| `post.responses.200.schema.supportingAgencies`? | `string`[] | `Description` Optional metadata that indicates the source of research funding or other institutional support. | +| `post.responses.200.schema.title` | { } | - | +| `post.responses.200.schema.type`? | `string` | `Description` Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary). | +| `post.responses.200.schema.urlPath`? | `string` | `Description` An optional path to use in the URL instead of the ID. | +| `post.responses.200.schema.urlPublished`? | `string` | `Description` The public URL for this publication or where it will be available if it has not yet been published. | +| `post.responses.200.schema.version` | `number` | `Description` The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them. | +| `post.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The publication you want to version does not belong to this submission. | +| `post.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.403.schema.error`? | `string` | - | +| `post.responses.403.schema.errorMessage`? | `string` | - | +| `post.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | The publication could not be found. | +| `post.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.404.schema.error`? | `string` | - | +| `post.responses.404.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:485](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L485) ##### `/temporaryFiles` @@ -10277,28 +10277,28 @@ Defined in: [lib/swagger-types.ts:485](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `options` | `object` | Responds with the appopriate headers to indicate file uploads maybe be sent, required by some file upload utilities which send a preflight request. | -| `options.responses` | { `200`: `unknown`; } | - | -| `options.responses.200` | `unknown` | An empty response body. | -| `post` | `object` | Upload a file to the temporary file storage area and receive a temporary file ID. | -| `post.parameters` | { `body`: { `...`?: `unknown`; }; } | - | -| `post.parameters.body` | { `...`?: `unknown`; } | - | -| `post.parameters.body....`? | `unknown` | Use any parameter key to upload your file. The API endpoint will retrieve the first uploaded file. | -| `post.responses` | { `200`: { `schema`: { `documentType`?: `string`; `id`?: `number`; `mimetype`?: `string`; `name`?: `string`; }; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | -| `post.responses.200` | { `schema`: { `documentType`?: `string`; `id`?: `number`; `mimetype`?: `string`; `name`?: `string`; }; } | The temporary file ID to use in other API requests. | -| `post.responses.200.schema` | { `documentType`?: `string`; `id`?: `number`; `mimetype`?: `string`; `name`?: `string`; } | - | -| `post.responses.200.schema.documentType`? | `string` | - | -| `post.responses.200.schema.id`? | `number` | - | -| `post.responses.200.schema.mimetype`? | `string` | - | -| `post.responses.200.schema.name`? | `string` | - | -| `post.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | No uploaded file could be found. | -| `post.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | -| `post.responses.400.schema.error`? | `string` | - | -| `post.responses.400.schema.errorMessage`? | `string` | - | - -Defined in: [lib/swagger-types.ts:1739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1739) +| Member | Type | Description | +| :---------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------- | +| `options` | `object` | Responds with the appopriate headers to indicate file uploads maybe be sent, required by some file upload utilities which send a preflight request. | +| `options.responses` | { `200`: `unknown`; } | - | +| `options.responses.200` | `unknown` | An empty response body. | +| `post` | `object` | Upload a file to the temporary file storage area and receive a temporary file ID. | +| `post.parameters` | { `body`: { `...`?: `unknown`; }; } | - | +| `post.parameters.body` | { `...`?: `unknown`; } | - | +| `post.parameters.body....`? | `unknown` | Use any parameter key to upload your file. The API endpoint will retrieve the first uploaded file. | +| `post.responses` | { `200`: { `schema`: { `documentType`?: `string`; `id`?: `number`; `mimetype`?: `string`; `name`?: `string`; }; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | - | +| `post.responses.200` | { `schema`: { `documentType`?: `string`; `id`?: `number`; `mimetype`?: `string`; `name`?: `string`; }; } | The temporary file ID to use in other API requests. | +| `post.responses.200.schema` | { `documentType`?: `string`; `id`?: `number`; `mimetype`?: `string`; `name`?: `string`; } | - | +| `post.responses.200.schema.documentType`? | `string` | - | +| `post.responses.200.schema.id`? | `number` | - | +| `post.responses.200.schema.mimetype`? | `string` | - | +| `post.responses.200.schema.name`? | `string` | - | +| `post.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | No uploaded file could be found. | +| `post.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | - | +| `post.responses.400.schema.error`? | `string` | - | +| `post.responses.400.schema.errorMessage`? | `string` | - | + +Defined in: [lib/swagger-types.ts:1739](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1739) ##### `/users` @@ -10396,32 +10396,32 @@ Defined in: [lib/swagger-types.ts:1739](https://github.com/TrialAndErrorOrg/par ###### Type declaration -| Member | Type | -| :------ | :------ | -| `get` | `object` | -| `get.parameters` | { `query`: { `assignedToSection`?: `number`; `assignedToSubmission`?: `number`; `assignedToSubmissionStage`?: `number`; `count`?: `number`; `offset`?: `number`; `orderBy`?: `"id"` | `"familyName"` | `"givenName"`; `orderDirection`?: `"ASC"` | `"DESC"`; `roleIds`?: `number`[]; `searchPhrase`?: `string`; `status`?: `"active"` | `"disabled"` | `"all"`; }; } | -| `get.parameters.query` | { `assignedToSection`?: `number`; `assignedToSubmission`?: `number`; `assignedToSubmissionStage`?: `number`; `count`?: `number`; `offset`?: `number`; `orderBy`?: `"id"` | `"familyName"` | `"givenName"`; `orderDirection`?: `"ASC"` | `"DESC"`; `roleIds`?: `number`[]; `searchPhrase`?: `string`; `status`?: `"active"` | `"disabled"` | `"all"`; } | -| `get.parameters.query.assignedToSection`? | `number` | -| `get.parameters.query.assignedToSubmission`? | `number` | -| `get.parameters.query.assignedToSubmissionStage`? | `number` | -| `get.parameters.query.count`? | `number` | -| `get.parameters.query.offset`? | `number` | -| `get.parameters.query.orderBy`? | `"id"` | `"familyName"` | `"givenName"` | -| `get.parameters.query.orderDirection`? | `"ASC"` | `"DESC"` | -| `get.parameters.query.roleIds`? | `number`[] | -| `get.parameters.query.searchPhrase`? | `string` | -| `get.parameters.query.status`? | `"active"` | `"disabled"` | `"all"` | -| `get.responses` | { `200`: { `schema`: { `items`?: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | -| `get.responses.200` | { `schema`: { `items`?: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; `itemsMax`?: `number`; }; } | -| `get.responses.200.schema` | { `items`?: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; `itemsMax`?: `number`; } | -| `get.responses.200.schema.items`? | { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[] | -| `get.responses.200.schema.itemsMax`? | `number` | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | -| `get.responses.403.schema.error`? | `string` | -| `get.responses.403.schema.errorMessage`? | `string` | - -Defined in: [lib/swagger-types.ts:826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L826) +| Member | Type | +| :------------------------------------------------ | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | ----------------------------------------- | ---------------------------------------------------------------------------------- | ------------ | ------------- | +| `get` | `object` | +| `get.parameters` | { `query`: { `assignedToSection`?: `number`; `assignedToSubmission`?: `number`; `assignedToSubmissionStage`?: `number`; `count`?: `number`; `offset`?: `number`; `orderBy`?: `"id"` | `"familyName"` | `"givenName"`; `orderDirection`?: `"ASC"` | `"DESC"`; `roleIds`?: `number`[]; `searchPhrase`?: `string`; `status`?: `"active"` | `"disabled"` | `"all"`; }; } | +| `get.parameters.query` | { `assignedToSection`?: `number`; `assignedToSubmission`?: `number`; `assignedToSubmissionStage`?: `number`; `count`?: `number`; `offset`?: `number`; `orderBy`?: `"id"` | `"familyName"` | `"givenName"`; `orderDirection`?: `"ASC"` | `"DESC"`; `roleIds`?: `number`[]; `searchPhrase`?: `string`; `status`?: `"active"` | `"disabled"` | `"all"`; } | +| `get.parameters.query.assignedToSection`? | `number` | +| `get.parameters.query.assignedToSubmission`? | `number` | +| `get.parameters.query.assignedToSubmissionStage`? | `number` | +| `get.parameters.query.count`? | `number` | +| `get.parameters.query.offset`? | `number` | +| `get.parameters.query.orderBy`? | `"id"` | `"familyName"` | `"givenName"` | +| `get.parameters.query.orderDirection`? | `"ASC"` | `"DESC"` | +| `get.parameters.query.roleIds`? | `number`[] | +| `get.parameters.query.searchPhrase`? | `string` | +| `get.parameters.query.status`? | `"active"` | `"disabled"` | `"all"` | +| `get.responses` | { `200`: { `schema`: { `items`?: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | +| `get.responses.200` | { `schema`: { `items`?: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; `itemsMax`?: `number`; }; } | +| `get.responses.200.schema` | { `items`?: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[]; `itemsMax`?: `number`; } | +| `get.responses.200.schema.items`? | { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }[] | +| `get.responses.200.schema.itemsMax`? | `number` | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | +| `get.responses.403.schema.error`? | `string` | +| `get.responses.403.schema.errorMessage`? | `string` | + +Defined in: [lib/swagger-types.ts:826](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L826) ##### `/users/reviewers` @@ -10497,34 +10497,34 @@ Defined in: [lib/swagger-types.ts:826](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | -| :------ | :------ | -| `get` | `object` | -| `get.parameters` | { `query`: { `averageCompletion`?: `number`; `count`?: `number`; `daysSinceLastAssignment`?: `string`; `offset`?: `number`; `orderBy`?: `"id"` | `"familyName"` | `"givenName"`; `orderDirection`?: `"ASC"` | `"DESC"`; `reviewStage`?: `number`; `reviewerRating`?: `number`; `reviewsActive`?: `string`; `reviewsCompleted`?: `string`; `searchPhrase`?: `string`; `status`?: `"active"` | `"disabled"` | `"all"`; }; } | -| `get.parameters.query` | { `averageCompletion`?: `number`; `count`?: `number`; `daysSinceLastAssignment`?: `string`; `offset`?: `number`; `orderBy`?: `"id"` | `"familyName"` | `"givenName"`; `orderDirection`?: `"ASC"` | `"DESC"`; `reviewStage`?: `number`; `reviewerRating`?: `number`; `reviewsActive`?: `string`; `reviewsCompleted`?: `string`; `searchPhrase`?: `string`; `status`?: `"active"` | `"disabled"` | `"all"`; } | -| `get.parameters.query.averageCompletion`? | `number` | -| `get.parameters.query.count`? | `number` | -| `get.parameters.query.daysSinceLastAssignment`? | `string` | -| `get.parameters.query.offset`? | `number` | -| `get.parameters.query.orderBy`? | `"id"` | `"familyName"` | `"givenName"` | -| `get.parameters.query.orderDirection`? | `"ASC"` | `"DESC"` | -| `get.parameters.query.reviewStage`? | `number` | -| `get.parameters.query.reviewerRating`? | `number` | -| `get.parameters.query.reviewsActive`? | `string` | -| `get.parameters.query.reviewsCompleted`? | `string` | -| `get.parameters.query.searchPhrase`? | `string` | -| `get.parameters.query.status`? | `"active"` | `"disabled"` | `"all"` | -| `get.responses` | { `200`: { `schema`: { `items`?: { `_href`?: `string`; `affiliation`?: { }; `averageReviewCompletionDays`?: `number`; `dateLastReviewAssignment`?: `string`; `disabled`?: `boolean`; `fullName`?: `string`; `gossip`?: { }; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `reviewsActive`?: `number`; `reviewsCancelled`?: `number`; `reviewsCompleted`?: `number`; `reviewsDeclined`?: `number`; `userName`?: `string`; }[]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | -| `get.responses.200` | { `schema`: { `items`?: { `_href`?: `string`; `affiliation`?: { }; `averageReviewCompletionDays`?: `number`; `dateLastReviewAssignment`?: `string`; `disabled`?: `boolean`; `fullName`?: `string`; `gossip`?: { }; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `reviewsActive`?: `number`; `reviewsCancelled`?: `number`; `reviewsCompleted`?: `number`; `reviewsDeclined`?: `number`; `userName`?: `string`; }[]; `itemsMax`?: `number`; }; } | -| `get.responses.200.schema` | { `items`?: { `_href`?: `string`; `affiliation`?: { }; `averageReviewCompletionDays`?: `number`; `dateLastReviewAssignment`?: `string`; `disabled`?: `boolean`; `fullName`?: `string`; `gossip`?: { }; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `reviewsActive`?: `number`; `reviewsCancelled`?: `number`; `reviewsCompleted`?: `number`; `reviewsDeclined`?: `number`; `userName`?: `string`; }[]; `itemsMax`?: `number`; } | -| `get.responses.200.schema.items`? | { `_href`?: `string`; `affiliation`?: { }; `averageReviewCompletionDays`?: `number`; `dateLastReviewAssignment`?: `string`; `disabled`?: `boolean`; `fullName`?: `string`; `gossip`?: { }; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `reviewsActive`?: `number`; `reviewsCancelled`?: `number`; `reviewsCompleted`?: `number`; `reviewsDeclined`?: `number`; `userName`?: `string`; }[] | -| `get.responses.200.schema.itemsMax`? | `number` | -| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | -| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | -| `get.responses.403.schema.error`? | `string` | -| `get.responses.403.schema.errorMessage`? | `string` | - -Defined in: [lib/swagger-types.ts:883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L883) +| Member | Type | +| :---------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------- | +| `get` | `object` | +| `get.parameters` | { `query`: { `averageCompletion`?: `number`; `count`?: `number`; `daysSinceLastAssignment`?: `string`; `offset`?: `number`; `orderBy`?: `"id"` | `"familyName"` | `"givenName"`; `orderDirection`?: `"ASC"` | `"DESC"`; `reviewStage`?: `number`; `reviewerRating`?: `number`; `reviewsActive`?: `string`; `reviewsCompleted`?: `string`; `searchPhrase`?: `string`; `status`?: `"active"` | `"disabled"` | `"all"`; }; } | +| `get.parameters.query` | { `averageCompletion`?: `number`; `count`?: `number`; `daysSinceLastAssignment`?: `string`; `offset`?: `number`; `orderBy`?: `"id"` | `"familyName"` | `"givenName"`; `orderDirection`?: `"ASC"` | `"DESC"`; `reviewStage`?: `number`; `reviewerRating`?: `number`; `reviewsActive`?: `string`; `reviewsCompleted`?: `string`; `searchPhrase`?: `string`; `status`?: `"active"` | `"disabled"` | `"all"`; } | +| `get.parameters.query.averageCompletion`? | `number` | +| `get.parameters.query.count`? | `number` | +| `get.parameters.query.daysSinceLastAssignment`? | `string` | +| `get.parameters.query.offset`? | `number` | +| `get.parameters.query.orderBy`? | `"id"` | `"familyName"` | `"givenName"` | +| `get.parameters.query.orderDirection`? | `"ASC"` | `"DESC"` | +| `get.parameters.query.reviewStage`? | `number` | +| `get.parameters.query.reviewerRating`? | `number` | +| `get.parameters.query.reviewsActive`? | `string` | +| `get.parameters.query.reviewsCompleted`? | `string` | +| `get.parameters.query.searchPhrase`? | `string` | +| `get.parameters.query.status`? | `"active"` | `"disabled"` | `"all"` | +| `get.responses` | { `200`: { `schema`: { `items`?: { `_href`?: `string`; `affiliation`?: { }; `averageReviewCompletionDays`?: `number`; `dateLastReviewAssignment`?: `string`; `disabled`?: `boolean`; `fullName`?: `string`; `gossip`?: { }; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `reviewsActive`?: `number`; `reviewsCancelled`?: `number`; `reviewsCompleted`?: `number`; `reviewsDeclined`?: `number`; `userName`?: `string`; }[]; `itemsMax`?: `number`; }; }; `403`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | +| `get.responses.200` | { `schema`: { `items`?: { `_href`?: `string`; `affiliation`?: { }; `averageReviewCompletionDays`?: `number`; `dateLastReviewAssignment`?: `string`; `disabled`?: `boolean`; `fullName`?: `string`; `gossip`?: { }; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `reviewsActive`?: `number`; `reviewsCancelled`?: `number`; `reviewsCompleted`?: `number`; `reviewsDeclined`?: `number`; `userName`?: `string`; }[]; `itemsMax`?: `number`; }; } | +| `get.responses.200.schema` | { `items`?: { `_href`?: `string`; `affiliation`?: { }; `averageReviewCompletionDays`?: `number`; `dateLastReviewAssignment`?: `string`; `disabled`?: `boolean`; `fullName`?: `string`; `gossip`?: { }; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `reviewsActive`?: `number`; `reviewsCancelled`?: `number`; `reviewsCompleted`?: `number`; `reviewsDeclined`?: `number`; `userName`?: `string`; }[]; `itemsMax`?: `number`; } | +| `get.responses.200.schema.items`? | { `_href`?: `string`; `affiliation`?: { }; `averageReviewCompletionDays`?: `number`; `dateLastReviewAssignment`?: `string`; `disabled`?: `boolean`; `fullName`?: `string`; `gossip`?: { }; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `reviewsActive`?: `number`; `reviewsCancelled`?: `number`; `reviewsCompleted`?: `number`; `reviewsDeclined`?: `number`; `userName`?: `string`; }[] | +| `get.responses.200.schema.itemsMax`? | `number` | +| `get.responses.403` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | +| `get.responses.403.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | +| `get.responses.403.schema.error`? | `string` | +| `get.responses.403.schema.errorMessage`? | `string` | + +Defined in: [lib/swagger-types.ts:883](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L883) ##### `/users/\{userId}` @@ -10604,57 +10604,57 @@ Defined in: [lib/swagger-types.ts:883](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | -| :------ | :------ | -| `get` | `object` | -| `get.parameters` | { `path`: { `userId`: `number`; }; } | -| `get.parameters.path` | { `userId`: `number`; } | -| `get.parameters.path.userId` | `number` | -| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }; }; } | -| `get.responses.200` | { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }; } | -| `get.responses.200.schema` | { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; } | -| `get.responses.200.schema._href`? | `string` | -| `get.responses.200.schema.affiliation`? | `string` | -| `get.responses.200.schema.apiKey`? | `string` | -| `get.responses.200.schema.apiKeyEnabled`? | `boolean` | -| `get.responses.200.schema.authId`? | `number` | -| `get.responses.200.schema.authStr`? | `string` | -| `get.responses.200.schema.billingAddress`? | `string` | -| `get.responses.200.schema.biography`? | `string` | -| `get.responses.200.schema.country`? | `string` | -| `get.responses.200.schema.dateLastEmail`? | `string` | -| `get.responses.200.schema.dateLastLogin`? | `string` | -| `get.responses.200.schema.dateRegistered`? | `string` | -| `get.responses.200.schema.dateValidated`? | `string` | -| `get.responses.200.schema.disabled`? | `boolean` | -| `get.responses.200.schema.disabledReason`? | `string` | -| `get.responses.200.schema.email`? | `string` | -| `get.responses.200.schema.familyName`? | `string` | -| `get.responses.200.schema.fullName`? | `string` | -| `get.responses.200.schema.givenName`? | `string` | -| `get.responses.200.schema.gossip`? | `string` | -| `get.responses.200.schema.groups`? | { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[] | -| `get.responses.200.schema.id`? | `number` | -| `get.responses.200.schema.inlineHelp`? | `boolean` | -| `get.responses.200.schema.interests`? | { `id`?: `number`; `interest`?: `string`; }[] | -| `get.responses.200.schema.locales`? | `string`[] | -| `get.responses.200.schema.mailingAddress`? | `string` | -| `get.responses.200.schema.mustChangePassword`? | `boolean` | -| `get.responses.200.schema.orcid`? | `string` | -| `get.responses.200.schema.password`? | `string` | -| `get.responses.200.schema.phone`? | `string` | -| `get.responses.200.schema.preferredPublicName`? | `string` | -| `get.responses.200.schema.profileImage`? | { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; } | -| `get.responses.200.schema.profileImage.dateUploaded`? | `string` | -| `get.responses.200.schema.profileImage.height`? | `number` | -| `get.responses.200.schema.profileImage.name`? | `string` | -| `get.responses.200.schema.profileImage.uploadName`? | `string` | -| `get.responses.200.schema.profileImage.width`? | `number` | -| `get.responses.200.schema.signature`? | `string` | -| `get.responses.200.schema.url`? | `string` | -| `get.responses.200.schema.userName`? | `string` | - -Defined in: [lib/swagger-types.ts:867](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L867) +| Member | Type | +| :---------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | +| `get.parameters` | { `path`: { `userId`: `number`; }; } | +| `get.parameters.path` | { `userId`: `number`; } | +| `get.parameters.path.userId` | `number` | +| `get.responses` | { `200`: { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }; }; } | +| `get.responses.200` | { `schema`: { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; }; } | +| `get.responses.200.schema` | { `_href`?: `string`; `affiliation`?: `string`; `apiKey`?: `string`; `apiKeyEnabled`?: `boolean`; `authId`?: `number`; `authStr`?: `string`; `billingAddress`?: `string`; `biography`?: `string`; `country`?: `string`; `dateLastEmail`?: `string`; `dateLastLogin`?: `string`; `dateRegistered`?: `string`; `dateValidated`?: `string`; `disabled`?: `boolean`; `disabledReason`?: `string`; `email`?: `string`; `familyName`?: `string`; `fullName`?: `string`; `givenName`?: `string`; `gossip`?: `string`; `groups`?: { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[]; `id`?: `number`; `inlineHelp`?: `boolean`; `interests`?: { `id`?: `number`; `interest`?: `string`; }[]; `locales`?: `string`[]; `mailingAddress`?: `string`; `mustChangePassword`?: `boolean`; `orcid`?: `string`; `password`?: `string`; `phone`?: `string`; `preferredPublicName`?: `string`; `profileImage`?: { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; }; `signature`?: `string`; `url`?: `string`; `userName`?: `string`; } | +| `get.responses.200.schema._href`? | `string` | +| `get.responses.200.schema.affiliation`? | `string` | +| `get.responses.200.schema.apiKey`? | `string` | +| `get.responses.200.schema.apiKeyEnabled`? | `boolean` | +| `get.responses.200.schema.authId`? | `number` | +| `get.responses.200.schema.authStr`? | `string` | +| `get.responses.200.schema.billingAddress`? | `string` | +| `get.responses.200.schema.biography`? | `string` | +| `get.responses.200.schema.country`? | `string` | +| `get.responses.200.schema.dateLastEmail`? | `string` | +| `get.responses.200.schema.dateLastLogin`? | `string` | +| `get.responses.200.schema.dateRegistered`? | `string` | +| `get.responses.200.schema.dateValidated`? | `string` | +| `get.responses.200.schema.disabled`? | `boolean` | +| `get.responses.200.schema.disabledReason`? | `string` | +| `get.responses.200.schema.email`? | `string` | +| `get.responses.200.schema.familyName`? | `string` | +| `get.responses.200.schema.fullName`? | `string` | +| `get.responses.200.schema.givenName`? | `string` | +| `get.responses.200.schema.gossip`? | `string` | +| `get.responses.200.schema.groups`? | { `abbrev`?: { }; `id`?: `number`; `name`?: { }; `permitSelfRegistration`?: `boolean`; `recommendOnly`?: `boolean`; `roleId`?: `number`; `showTitle`?: `boolean`; }[] | +| `get.responses.200.schema.id`? | `number` | +| `get.responses.200.schema.inlineHelp`? | `boolean` | +| `get.responses.200.schema.interests`? | { `id`?: `number`; `interest`?: `string`; }[] | +| `get.responses.200.schema.locales`? | `string`[] | +| `get.responses.200.schema.mailingAddress`? | `string` | +| `get.responses.200.schema.mustChangePassword`? | `boolean` | +| `get.responses.200.schema.orcid`? | `string` | +| `get.responses.200.schema.password`? | `string` | +| `get.responses.200.schema.phone`? | `string` | +| `get.responses.200.schema.preferredPublicName`? | `string` | +| `get.responses.200.schema.profileImage`? | { `dateUploaded`?: `string`; `height`?: `number`; `name`?: `string`; `uploadName`?: `string`; `width`?: `number`; } | +| `get.responses.200.schema.profileImage.dateUploaded`? | `string` | +| `get.responses.200.schema.profileImage.height`? | `number` | +| `get.responses.200.schema.profileImage.name`? | `string` | +| `get.responses.200.schema.profileImage.uploadName`? | `string` | +| `get.responses.200.schema.profileImage.width`? | `number` | +| `get.responses.200.schema.signature`? | `string` | +| `get.responses.200.schema.url`? | `string` | +| `get.responses.200.schema.userName`? | `string` | + +Defined in: [lib/swagger-types.ts:867](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L867) ##### `/vocabs` @@ -10692,43 +10692,43 @@ Defined in: [lib/swagger-types.ts:867](https://github.com/TrialAndErrorOrg/pars ###### Type declaration -| Member | Type | -| :------ | :------ | -| `get` | `object` | -| `get.parameters` | { `query`: { `locale`?: `string`; `vocab`: `string`; }; } | -| `get.parameters.query` | { `locale`?: `string`; `vocab`: `string`; } | -| `get.parameters.query.locale`? | `string` | -| `get.parameters.query.vocab` | `string` | -| `get.responses` | { `200`: { `schema`: `string`[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | -| `get.responses.200` | { `schema`: `string`[]; } | -| `get.responses.200.schema` | `string`[] | -| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | -| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | -| `get.responses.400.schema.error`? | `string` | -| `get.responses.400.schema.errorMessage`? | `string` | -| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | -| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | -| `get.responses.404.schema.error`? | `string` | -| `get.responses.404.schema.errorMessage`? | `string` | - -Defined in: [lib/swagger-types.ts:1713](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1713) - -*** +| Member | Type | +| :--------------------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `get` | `object` | +| `get.parameters` | { `query`: { `locale`?: `string`; `vocab`: `string`; }; } | +| `get.parameters.query` | { `locale`?: `string`; `vocab`: `string`; } | +| `get.parameters.query.locale`? | `string` | +| `get.parameters.query.vocab` | `string` | +| `get.responses` | { `200`: { `schema`: `string`[]; }; `400`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; `404`: { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; }; } | +| `get.responses.200` | { `schema`: `string`[]; } | +| `get.responses.200.schema` | `string`[] | +| `get.responses.400` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | +| `get.responses.400.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | +| `get.responses.400.schema.error`? | `string` | +| `get.responses.400.schema.errorMessage`? | `string` | +| `get.responses.404` | { `schema`: { `error`?: `string`; `errorMessage`?: `string`; }; } | +| `get.responses.404.schema` | { `error`?: `string`; `errorMessage`?: `string`; } | +| `get.responses.404.schema.error`? | `string` | +| `get.responses.404.schema.errorMessage`? | `string` | + +Defined in: [lib/swagger-types.ts:1713](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/swagger-types.ts#L1713) + +--- ### `Responses` -> <`path`, `method`> [`paths`](modules.md#paths)[`path`][`method`] *extends* { +> <`path`, `method`> [`paths`](modules.md#paths)[`path`][`method`] _extends_ { > `responses`: `any`; > } ? [`paths`](modules.md#paths)[`path`][`method`][keyof [`paths`](modules.md#paths)[`path`][`method`][`"responses"`]] : `never` #### Type parameters -* `path` *extends* keyof [`paths`](modules.md#paths) -* `method` *extends* keyof [`paths`](modules.md#paths)[`path`] +- `path` _extends_ keyof [`paths`](modules.md#paths) +- `method` _extends_ keyof [`paths`](modules.md#paths)[`path`] -Defined in: [lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/types.ts#L70) +Defined in: [lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/types.ts#L70) -*** +--- ### `SubmissionQuery` @@ -10753,22 +10753,22 @@ Defined in: [lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/ #### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `assignedTo` | `number`[] | Filter results by those assigned to one or more user ids. All users except managers and admins are automatically restricted to assigned submissions and do not need to pass this parameter. | -| `count` | `number` | Default: 20 How many results to return in a single request. Max is 100. | -| `daysInactive` | `number` | Filter the results by those which have not had activity for the last X days. | -| `isIncomplete` | `boolean` | Filter the results by those for which the author has not yet completed the submission process. | -| `isOverdue` | `boolean` | Filter the results by those for which a reviewer has missed a deadline. | -| `issueIds` | `number`[] | Filter the results by those with one or more publications assigned to an issue. | -| `offset` | `number` | Offset the results returned. Use this to receive subsequent pages of requests. A count of 10 and offset of 15 will return results 15 to 25. | -| `orderBy` | `"dateSubmitted"` | `"dateLastActivity"` | `"lastModified"` | `"title"` | Default: "dateSubmitted" Order the results returned. | -| `orderDirection` | `"ASC"` | `"DESC"` | Default: "DESC" Return the results in ascending or descending order. | -| `searchPhrase` | `string` | Filter the results by a search phrase matched against the title and authors. | -| `sectionIds` | `number`[] | Filter the results by those with one or more publications assigned to a section. | -| `status` | (`1` | `2` | `3` | `4` | `5`)[] | Filter results by one or more submission statuses. Must match the value of one of the STATUS\_QUEUED, STATUS\_SCHEDULED, STATUS\_PUBLISHED or STATUS\_DECLINED constants. | - -Defined in: [lib/types.ts:3](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/types.ts#L3) +| Member | Type | Description | +| :--------------- | :---------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------- | --------- | ---------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `assignedTo` | `number`[] | Filter results by those assigned to one or more user ids. All users except managers and admins are automatically restricted to assigned submissions and do not need to pass this parameter. | +| `count` | `number` | Default: 20 How many results to return in a single request. Max is 100. | +| `daysInactive` | `number` | Filter the results by those which have not had activity for the last X days. | +| `isIncomplete` | `boolean` | Filter the results by those for which the author has not yet completed the submission process. | +| `isOverdue` | `boolean` | Filter the results by those for which a reviewer has missed a deadline. | +| `issueIds` | `number`[] | Filter the results by those with one or more publications assigned to an issue. | +| `offset` | `number` | Offset the results returned. Use this to receive subsequent pages of requests. A count of 10 and offset of 15 will return results 15 to 25. | +| `orderBy` | `"dateSubmitted"` | `"dateLastActivity"` | `"lastModified"` | `"title"` | Default: "dateSubmitted" Order the results returned. | +| `orderDirection` | `"ASC"` | `"DESC"` | Default: "DESC" Return the results in ascending or descending order. | +| `searchPhrase` | `string` | Filter the results by a search phrase matched against the title and authors. | +| `sectionIds` | `number`[] | Filter the results by those with one or more publications assigned to a section. | +| `status` | (`1` | `2` | `3` | `4` | `5`)[] | Filter results by one or more submission statuses. Must match the value of one of the STATUS_QUEUED, STATUS_SCHEDULED, STATUS_PUBLISHED or STATUS_DECLINED constants. | + +Defined in: [lib/types.ts:3](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-client/src/lib/types.ts#L3) ## Install diff --git a/libs/ojs/ojs-client/project.json b/libs/ojs/ojs-client/project.json index d694b8b8..94bad292 100755 --- a/libs/ojs/ojs-client/project.json +++ b/libs/ojs/ojs-client/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ojs/ojs-client/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ojs/ojs-client/src/lib/schemas/announcement.json b/libs/ojs/ojs-client/src/lib/schemas/announcement.json index 3499dfb8..0b2470f3 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/announcement.json +++ b/libs/ojs/ojs-client/src/lib/schemas/announcement.json @@ -1,91 +1,73 @@ { - "title": "Announcement", - "description": "An announcement or news item.", - "required": [ - "assocType", - "assocId", - "title" - ], - "properties": { - "_href": { - "type": "string", - "description": "The URL to this announcement in the REST API.", - "format": "uri", - "readOnly": true, - "apiSummary": true - }, - "assocId": { - "type": "integer", - "description": "The journal, press or preprint server ID.", - "apiSummary": true - }, - "assocType": { - "type": "integer", - "description": "The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS).", - "apiSummary": true - }, - "dateExpire": { - "type": "string", - "description": "(Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers.", - "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d" - ] - }, - "datePosted": { - "type": "string", - "description": "The date this announcement was posted.", - "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d H:i:s" - ] - }, - "description": { - "type": "string", - "description": "The full text of the announcement.", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "descriptionShort": { - "type": "string", - "description": "A summary of this announcement.", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "id": { - "type": "integer", - "apiSummary": true - }, - "title": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "typeId": { - "type": "integer", - "description": "(Optional) One of the announcement type ids.", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "url": { - "type": "string", - "format": "uri", - "readOnly": true, - "apiSummary": true, - "description": "The URL to the published announcement." - } - } + "title": "Announcement", + "description": "An announcement or news item.", + "required": ["assocType", "assocId", "title"], + "properties": { + "_href": { + "type": "string", + "description": "The URL to this announcement in the REST API.", + "format": "uri", + "readOnly": true, + "apiSummary": true + }, + "assocId": { + "type": "integer", + "description": "The journal, press or preprint server ID.", + "apiSummary": true + }, + "assocType": { + "type": "integer", + "description": "The assoc object. This should always be `ASSOC_TYPE_JOURNAL` (OJS), `ASSOC_TYPE_PRESS` (OMP) or `ASSOC_TYPE_SERVER` (OPS).", + "apiSummary": true + }, + "dateExpire": { + "type": "string", + "description": "(Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers.", + "apiSummary": true, + "validation": ["nullable", "date_format:Y-m-d"] + }, + "datePosted": { + "type": "string", + "description": "The date this announcement was posted.", + "apiSummary": true, + "validation": ["nullable", "date_format:Y-m-d H:i:s"] + }, + "description": { + "type": "string", + "description": "The full text of the announcement.", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "descriptionShort": { + "type": "string", + "description": "A summary of this announcement.", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "id": { + "type": "integer", + "apiSummary": true + }, + "title": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "typeId": { + "type": "integer", + "description": "(Optional) One of the announcement type ids.", + "apiSummary": true, + "validation": ["nullable"] + }, + "url": { + "type": "string", + "format": "uri", + "readOnly": true, + "apiSummary": true, + "description": "The URL to the published announcement." + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/author.json b/libs/ojs/ojs-client/src/lib/schemas/author.json index 327faca8..49d5a8e5 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/author.json +++ b/libs/ojs/ojs-client/src/lib/schemas/author.json @@ -1,123 +1,100 @@ { - "title": "Author", - "description": "An author of a publication.", - "required": [ - "email", - "givenName", - "publicationId", - "userGroupId" - ], - "properties": { - "affiliation": { - "type": "string", - "description": "The scholarly institution this contributor is employed by or affiliated with.", - "multilingual": "true", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "biography": { - "type": "string", - "description": "An optional bio statement about this contributor.", - "multilingual": "true", - "validation": [ - "nullable" - ] - }, - "country": { - "type": "string" - }, - "email": { - "type": "string", - "apiSummary": true, - "validation": [ - "email_or_localhost" - ] - }, - "familyName": { - "type": "string", - "multilingual": "true", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "fullName": { - "type": "string", - "description": "The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName.", - "apiSummary": true, - "readOnly": true - }, - "givenName": { - "type": "string", - "multilingual": "true", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "id": { - "type": "integer", - "apiSummary": true - }, - "includeInBrowse": { - "type": "boolean", - "description": "Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries.", - "default": true, - "apiSummary": true - }, - "orcid": { - "type": "string", - "description": "The ORCID of this contributor. See: https://orcid.org/", - "apiSummary": true, - "validation": [ - "nullable", - "orcid" - ] - }, - "preferredPublicName": { - "type": "string", - "description": "An optional field for contributors to specify how they prefer to be identified in this publication.", - "multilingual": "true", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "publicationId": { - "type": "integer", - "apiSummary": true - }, - "seq": { - "type": "integer", - "description": "The order in which this contributor should appear in a list of contriibutors.", - "apiSummary": true - }, - "submissionLocale": { - "type": "string", - "description": "The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property.", - "apiSummary": true, - "readOnly": true - }, - "url": { - "type": "string", - "description": "An optional URL to this contributor's webpage.", - "validation": [ - "url", - "nullable" - ] - }, - "userGroupId": { - "type": "integer", - "description": "The ID of this contributor's assigned user group. See userGroupName.", - "apiSummary": true - }, - "userGroupName": { - "type": "string", - "description": "The name of this contributor's role in the publication, such as 'Author' or 'Translator'.", - "apiSummary": true, - "readOnly": true - } - } + "title": "Author", + "description": "An author of a publication.", + "required": ["email", "givenName", "publicationId", "userGroupId"], + "properties": { + "affiliation": { + "type": "string", + "description": "The scholarly institution this contributor is employed by or affiliated with.", + "multilingual": "true", + "apiSummary": true, + "validation": ["nullable"] + }, + "biography": { + "type": "string", + "description": "An optional bio statement about this contributor.", + "multilingual": "true", + "validation": ["nullable"] + }, + "country": { + "type": "string" + }, + "email": { + "type": "string", + "apiSummary": true, + "validation": ["email_or_localhost"] + }, + "familyName": { + "type": "string", + "multilingual": "true", + "apiSummary": true, + "validation": ["nullable"] + }, + "fullName": { + "type": "string", + "description": "The full name of the author. This will be the preferredPublicName or, if that is not available, a string containing the givenName and familyName.", + "apiSummary": true, + "readOnly": true + }, + "givenName": { + "type": "string", + "multilingual": "true", + "apiSummary": true, + "validation": ["nullable"] + }, + "id": { + "type": "integer", + "apiSummary": true + }, + "includeInBrowse": { + "type": "boolean", + "description": "Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries.", + "default": true, + "apiSummary": true + }, + "orcid": { + "type": "string", + "description": "The ORCID of this contributor. See: https://orcid.org/", + "apiSummary": true, + "validation": ["nullable", "orcid"] + }, + "preferredPublicName": { + "type": "string", + "description": "An optional field for contributors to specify how they prefer to be identified in this publication.", + "multilingual": "true", + "apiSummary": true, + "validation": ["nullable"] + }, + "publicationId": { + "type": "integer", + "apiSummary": true + }, + "seq": { + "type": "integer", + "description": "The order in which this contributor should appear in a list of contriibutors.", + "apiSummary": true + }, + "submissionLocale": { + "type": "string", + "description": "The primary locale of the submission this author is attached to. This locale is used as the fallback when a language is missing from a multilingual property.", + "apiSummary": true, + "readOnly": true + }, + "url": { + "type": "string", + "description": "An optional URL to this contributor's webpage.", + "validation": ["url", "nullable"] + }, + "userGroupId": { + "type": "integer", + "description": "The ID of this contributor's assigned user group. See userGroupName.", + "apiSummary": true + }, + "userGroupName": { + "type": "string", + "description": "The name of this contributor's role in the publication, such as 'Author' or 'Translator'.", + "apiSummary": true, + "readOnly": true + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/category.json b/libs/ojs/ojs-client/src/lib/schemas/category.json index 7d3c8845..dcdf0b5a 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/category.json +++ b/libs/ojs/ojs-client/src/lib/schemas/category.json @@ -1,67 +1,53 @@ { - "title": "Category", - "description": "A category of content.", - "required": [ - "contextId", - "path", - "title" - ], - "properties": { - "contextId": { - "type": "integer", - "description": "The journal, press or preprint server ID.", - "apiSummary": true - }, - "sequence": { - "type": "number", - "description": "The sequence number for this category (for ordering)", - "apiSummary": true - }, - "parentId": { - "type": "integer", - "description": "The optional ID of the parent category.", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "sortOption": { - "type": "string", - "description": "The sorting order for contents of this category.", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "title": { - "type": "string", - "description": "The title of the category.", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "description": { - "type": "string", - "description": "A description of the category.", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "path": { - "type": "string", - "description": "A URL slug for this category.", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "id": { - "type": "integer", - "apiSummary": true - } - } + "title": "Category", + "description": "A category of content.", + "required": ["contextId", "path", "title"], + "properties": { + "contextId": { + "type": "integer", + "description": "The journal, press or preprint server ID.", + "apiSummary": true + }, + "sequence": { + "type": "number", + "description": "The sequence number for this category (for ordering)", + "apiSummary": true + }, + "parentId": { + "type": "integer", + "description": "The optional ID of the parent category.", + "apiSummary": true, + "validation": ["nullable"] + }, + "sortOption": { + "type": "string", + "description": "The sorting order for contents of this category.", + "apiSummary": true, + "validation": ["nullable"] + }, + "title": { + "type": "string", + "description": "The title of the category.", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "description": { + "type": "string", + "description": "A description of the category.", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "path": { + "type": "string", + "description": "A URL slug for this category.", + "apiSummary": true, + "validation": ["nullable"] + }, + "id": { + "type": "integer", + "apiSummary": true + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/context.json b/libs/ojs/ojs-client/src/lib/schemas/context.json index 38647973..70433d0f 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/context.json +++ b/libs/ojs/ojs-client/src/lib/schemas/context.json @@ -1,823 +1,611 @@ { - "title": "Context", - "description": "A journal or press.", - "type": "object", - "required": [ - "name", - "primaryLocale", - "supportedLocales", - "urlPath" - ], - "properties": { - "_href": { - "type": "string", - "format": "uri", - "readOnly": true, - "apiSummary": true - }, - "about": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "acronym": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "additionalHomeContent": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "agencies": { - "type": "string", - "description": "Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] - }, - "announcementsIntroduction": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "authorGuidelines": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "authorInformation": { - "type": "string", - "multilingual": true, - "defaultLocaleKey": "default.contextSettings.forAuthors", - "validation": [ - "nullable" - ] - }, - "automaticDoiDeposit": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "citations": { - "type": "string", - "description": "Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] - }, - "competingInterests": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "contactAffiliation": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "contactEmail": { - "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] - }, - "contactName": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "contactPhone": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "copyrightHolderType": { - "type": "string", - "validation": [ - "nullable", - "in:author,context,other" - ] - }, - "copyrightHolderOther": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "copyrightNotice": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "country": { - "type": "string", - "validation": [ - "country" - ] - }, - "coverage": { - "type": "string", - "description": "Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] - }, - "currency": { - "type": "string", - "validation": [ - "nullable", - "currency" - ] - }, - "customHeaders": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "dateFormatLong": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "dateFormatShort": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "datetimeFormatLong": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "datetimeFormatShort": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "defaultReviewMode": { - "type": "integer", - "default": 2, - "validation": [ - "nullable", - "in:1,2,3" - ] - }, - "defaultMetricType": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "description": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "disableBulkEmailUserGroups": { - "type": "array", - "description": "User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property.", - "items": { - "type": "integer" - } - }, - "disableUserReg": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "disciplines": { - "type": "string", - "description": "Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] - }, - "editorialTeam": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "copySubmissionAckPrimaryContact": { - "type": "boolean", - "default": false, - "description": "A copy of the submission acknowledgement email will be sent to this context's primary contact when true.", - "validation": [ - "nullable" - ] - }, - "copySubmissionAckAddress": { - "type": "string", - "default": "", - "description": "A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one@example.com,two@example.com", - "validation": [ - "nullable" - ] - }, - "emailSignature": { - "type": "string", - "defaultLocaleKey": "default.contextSettings.emailSignature", - "validation": [ - "nullable" - ] - }, - "enableAnnouncements": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "enableDois": { - "type": "boolean", - "default": false, - "validation": [ - "nullable" - ] - }, - "doiPrefix": { - "type": "string", - "validation": [ - "regex:/^10\\.[0-9]{4,7}$/" - ] - }, - "customDoiSuffixType": { - "type": "string" - }, - "registrationAgency": { - "type": "string", - "default": "none" - }, - "doiPublicationSuffixPattern": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "doiRepresentationSuffixPattern": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "disableSubmissions": { - "type": "boolean", - "default": false, - "validation": [ - "nullable" - ] - }, - "enableClockss": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "enabled": { - "type": "boolean", - "apiSummary": true - }, - "enableLockss": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "envelopeSender": { - "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] - }, - "favicon": { - "type": "object", - "multilingual": true, - "validation": [ - "nullable" - ], - "properties": { - "temporaryFileId": { - "type": "integer", - "writeOnly": true - }, - "name": { - "type": "string" - }, - "uploadName": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "dateUploaded": { - "type": "string" - }, - "altText": { - "type": "string" - } - } - }, - "homepageImage": { - "type": "object", - "multilingual": true, - "validation": [ - "nullable" - ], - "properties": { - "temporaryFileId": { - "type": "integer", - "writeOnly": true - }, - "name": { - "type": "string" - }, - "uploadName": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "dateUploaded": { - "type": "string" - }, - "altText": { - "type": "string" - } - } - }, - "id": { - "type": "integer", - "readOnly": true, - "apiSummary": true - }, - "itemsPerPage": { - "type": "integer", - "default": 25, - "validation": [ - "nullable", - "min:1" - ] - }, - "keywords": { - "type": "string", - "default": "request", - "description": "Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] - }, - "languages": { - "type": "string", - "description": "Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] - }, - "librarianInformation": { - "type": "string", - "multilingual": true, - "defaultLocaleKey": "default.contextSettings.forLibrarians", - "validation": [ - "nullable" - ] - }, - "licenseUrl": { - "type": "string", - "validation": [ - "nullable", - "url" - ] - }, - "mailingAddress": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "name": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "notifyAllAuthors": { - "type": "boolean", - "default": true, - "description": "When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified.", - "validation": [ - "nullable" - ] - }, - "numAnnouncementsHomepage": { - "type": "integer", - "validation": [ - "nullable", - "min:0" - ] - }, - "numDaysBeforeInviteReminder": { - "type": "integer", - "validation": [ - "nullable", - "min:0" - ] - }, - "numDaysBeforeSubmitReminder": { - "type": "integer", - "validation": [ - "nullable", - "min:0" - ] - }, - "numPageLinks": { - "type": "integer", - "default": 10, - "validation": [ - "nullable", - "min:1" - ] - }, - "numWeeksPerResponse": { - "type": "integer", - "default": 4, - "validation": [ - "nullable", - "min:0" - ] - }, - "numWeeksPerReview": { - "type": "integer", - "default": 4, - "validation": [ - "nullable", - "min:0" - ] - }, - "openAccessPolicy": { - "type": "string", - "multilingual": true, - "defaultLocaleKey": "default.contextSettings.openAccessPolicy", - "validation": [ - "nullable" - ] - }, - "pageFooter": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "pageHeaderLogoImage": { - "type": "object", - "multilingual": true, - "validation": [ - "nullable" - ], - "properties": { - "temporaryFileId": { - "type": "integer", - "writeOnly": true - }, - "name": { - "type": "string" - }, - "uploadName": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "dateUploaded": { - "type": "string" - }, - "altText": { - "type": "string" - } - } - }, - "paymentsEnabled": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "primaryLocale": { - "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] - }, - "privacyStatement": { - "type": "string", - "multilingual": true, - "defaultLocaleKey": "default.contextSettings.privacyStatement", - "validation": [ - "nullable" - ] - }, - "rateReviewerOnQuality": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "readerInformation": { - "type": "string", - "multilingual": true, - "defaultLocaleKey": "default.contextSettings.forReaders", - "validation": [ - "nullable" - ] - }, - "restrictReviewerFileAccess": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "restrictSiteAccess": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "reviewerAccessKeysEnabled": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "reviewGuidelines": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "rights": { - "type": "string", - "description": "Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] - }, - "searchDescription": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "seq": { - "type": "integer", - "apiSummary": true, - "validation": [ - "min:0" - ] - }, - "showEnsuringLink": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "sidebar": { - "type": "array", - "validation": [ - "nullable" - ], - "items": { - "type": "string", - "validation": [ - "alpha_dash" - ] - } - }, - "source": { - "type": "string", - "description": "Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] - }, - "styleSheet": { - "type": "object", - "validation": [ - "nullable" - ], - "properties": { - "temporaryFileId": { - "type": "integer", - "writeOnly": true - }, - "name": { - "type": "string" - }, - "uploadName": { - "type": "string" - }, - "dateUploaded": { - "type": "string" - } - } - }, - "subjects": { - "type": "string", - "description": "Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] - }, - "submissionChecklist": { - "type": "array", - "multilingual": true, - "validation": [ - "nullable" - ], - "items": { - "type": "object", - "properties": { - "order": { - "type": "integer", - "validation": [ - "nullable", - "min:0" - ] - }, - "content": { - "type": "string" - } - } - }, - "default": [ - { - "order": 1, - "content": { - "defaultLocaleKey": "default.contextSettings.checklist.notPreviouslyPublished" - } - }, - { - "order": 2, - "content": { - "defaultLocaleKey": "default.contextSettings.checklist.fileFormat" - } - }, - { - "order": 3, - "content": { - "defaultLocaleKey": "default.contextSettings.checklist.addressesLinked" - } - }, - { - "order": 4, - "content": { - "defaultLocaleKey": "default.contextSettings.checklist.submissionAppearance" - } - }, - { - "order": 5, - "content": { - "defaultLocaleKey": "default.contextSettings.checklist.bibliographicRequirements" - } - } - ] - }, - "supportedFormLocales": { - "type": "array", - "items": { - "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] - } - }, - "supportedLocales": { - "type": "array", - "items": { - "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] - } - }, - "supportedSubmissionLocales": { - "type": "array", - "items": { - "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] - } - }, - "supportEmail": { - "type": "string", - "validation": [ - "nullable", - "email_or_localhost" - ] - }, - "supportName": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "supportPhone": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "themePluginPath": { - "type": "string", - "default": "default" - }, - "timeFormat": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "type": { - "type": "string", - "description": "Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", - "validation": [ - "nullable", - "in:0,enable,request,require" - ] - }, - "url": { - "type": "string", - "readOnly": true, - "apiSummary": true - }, - "urlPath": { - "type": "string", - "validation": [ - "regex:/^[a-zA-Z0-9]+([\\-_][a-zA-Z0-9]+)*$/" - ], - "apiSummary": true - } - } + "title": "Context", + "description": "A journal or press.", + "type": "object", + "required": ["name", "primaryLocale", "supportedLocales", "urlPath"], + "properties": { + "_href": { + "type": "string", + "format": "uri", + "readOnly": true, + "apiSummary": true + }, + "about": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "acronym": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "additionalHomeContent": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "agencies": { + "type": "string", + "description": "Enable agencies metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", + "validation": ["nullable", "in:0,enable,request,require"] + }, + "announcementsIntroduction": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "authorGuidelines": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "authorInformation": { + "type": "string", + "multilingual": true, + "defaultLocaleKey": "default.contextSettings.forAuthors", + "validation": ["nullable"] + }, + "automaticDoiDeposit": { + "type": "boolean", + "validation": ["nullable"] + }, + "citations": { + "type": "string", + "description": "Enable citations metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", + "validation": ["nullable", "in:0,enable,request,require"] + }, + "competingInterests": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "contactAffiliation": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "contactEmail": { + "type": "string", + "validation": ["nullable", "email_or_localhost"] + }, + "contactName": { + "type": "string", + "validation": ["nullable"] + }, + "contactPhone": { + "type": "string", + "validation": ["nullable"] + }, + "copyrightHolderType": { + "type": "string", + "validation": ["nullable", "in:author,context,other"] + }, + "copyrightHolderOther": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "copyrightNotice": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "country": { + "type": "string", + "validation": ["country"] + }, + "coverage": { + "type": "string", + "description": "Enable coverage metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", + "validation": ["nullable", "in:0,enable,request,require"] + }, + "currency": { + "type": "string", + "validation": ["nullable", "currency"] + }, + "customHeaders": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "dateFormatLong": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "dateFormatShort": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "datetimeFormatLong": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "datetimeFormatShort": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "defaultReviewMode": { + "type": "integer", + "default": 2, + "validation": ["nullable", "in:1,2,3"] + }, + "defaultMetricType": { + "type": "string", + "validation": ["nullable"] + }, + "description": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "disableBulkEmailUserGroups": { + "type": "array", + "description": "User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property.", + "items": { + "type": "integer" + } + }, + "disableUserReg": { + "type": "boolean", + "validation": ["nullable"] + }, + "disciplines": { + "type": "string", + "description": "Enable disciplines metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", + "validation": ["nullable", "in:0,enable,request,require"] + }, + "editorialTeam": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "copySubmissionAckPrimaryContact": { + "type": "boolean", + "default": false, + "description": "A copy of the submission acknowledgement email will be sent to this context's primary contact when true.", + "validation": ["nullable"] + }, + "copySubmissionAckAddress": { + "type": "string", + "default": "", + "description": "A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one@example.com,two@example.com", + "validation": ["nullable"] + }, + "emailSignature": { + "type": "string", + "defaultLocaleKey": "default.contextSettings.emailSignature", + "validation": ["nullable"] + }, + "enableAnnouncements": { + "type": "boolean", + "validation": ["nullable"] + }, + "enableDois": { + "type": "boolean", + "default": false, + "validation": ["nullable"] + }, + "doiPrefix": { + "type": "string", + "validation": ["regex:/^10\\.[0-9]{4,7}$/"] + }, + "customDoiSuffixType": { + "type": "string" + }, + "registrationAgency": { + "type": "string", + "default": "none" + }, + "doiPublicationSuffixPattern": { + "type": "string", + "validation": ["nullable"] + }, + "doiRepresentationSuffixPattern": { + "type": "string", + "validation": ["nullable"] + }, + "disableSubmissions": { + "type": "boolean", + "default": false, + "validation": ["nullable"] + }, + "enableClockss": { + "type": "boolean", + "validation": ["nullable"] + }, + "enabled": { + "type": "boolean", + "apiSummary": true + }, + "enableLockss": { + "type": "boolean", + "validation": ["nullable"] + }, + "envelopeSender": { + "type": "string", + "validation": ["nullable", "email_or_localhost"] + }, + "favicon": { + "type": "object", + "multilingual": true, + "validation": ["nullable"], + "properties": { + "temporaryFileId": { + "type": "integer", + "writeOnly": true + }, + "name": { + "type": "string" + }, + "uploadName": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "dateUploaded": { + "type": "string" + }, + "altText": { + "type": "string" + } + } + }, + "homepageImage": { + "type": "object", + "multilingual": true, + "validation": ["nullable"], + "properties": { + "temporaryFileId": { + "type": "integer", + "writeOnly": true + }, + "name": { + "type": "string" + }, + "uploadName": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "dateUploaded": { + "type": "string" + }, + "altText": { + "type": "string" + } + } + }, + "id": { + "type": "integer", + "readOnly": true, + "apiSummary": true + }, + "itemsPerPage": { + "type": "integer", + "default": 25, + "validation": ["nullable", "min:1"] + }, + "keywords": { + "type": "string", + "default": "request", + "description": "Enable keywords metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", + "validation": ["nullable", "in:0,enable,request,require"] + }, + "languages": { + "type": "string", + "description": "Enable languages metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", + "validation": ["nullable", "in:0,enable,request,require"] + }, + "librarianInformation": { + "type": "string", + "multilingual": true, + "defaultLocaleKey": "default.contextSettings.forLibrarians", + "validation": ["nullable"] + }, + "licenseUrl": { + "type": "string", + "validation": ["nullable", "url"] + }, + "mailingAddress": { + "type": "string", + "validation": ["nullable"] + }, + "name": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "notifyAllAuthors": { + "type": "boolean", + "default": true, + "description": "When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified.", + "validation": ["nullable"] + }, + "numAnnouncementsHomepage": { + "type": "integer", + "validation": ["nullable", "min:0"] + }, + "numDaysBeforeInviteReminder": { + "type": "integer", + "validation": ["nullable", "min:0"] + }, + "numDaysBeforeSubmitReminder": { + "type": "integer", + "validation": ["nullable", "min:0"] + }, + "numPageLinks": { + "type": "integer", + "default": 10, + "validation": ["nullable", "min:1"] + }, + "numWeeksPerResponse": { + "type": "integer", + "default": 4, + "validation": ["nullable", "min:0"] + }, + "numWeeksPerReview": { + "type": "integer", + "default": 4, + "validation": ["nullable", "min:0"] + }, + "openAccessPolicy": { + "type": "string", + "multilingual": true, + "defaultLocaleKey": "default.contextSettings.openAccessPolicy", + "validation": ["nullable"] + }, + "pageFooter": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "pageHeaderLogoImage": { + "type": "object", + "multilingual": true, + "validation": ["nullable"], + "properties": { + "temporaryFileId": { + "type": "integer", + "writeOnly": true + }, + "name": { + "type": "string" + }, + "uploadName": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "dateUploaded": { + "type": "string" + }, + "altText": { + "type": "string" + } + } + }, + "paymentsEnabled": { + "type": "boolean", + "validation": ["nullable"] + }, + "primaryLocale": { + "type": "string", + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] + }, + "privacyStatement": { + "type": "string", + "multilingual": true, + "defaultLocaleKey": "default.contextSettings.privacyStatement", + "validation": ["nullable"] + }, + "rateReviewerOnQuality": { + "type": "boolean", + "validation": ["nullable"] + }, + "readerInformation": { + "type": "string", + "multilingual": true, + "defaultLocaleKey": "default.contextSettings.forReaders", + "validation": ["nullable"] + }, + "restrictReviewerFileAccess": { + "type": "boolean", + "validation": ["nullable"] + }, + "restrictSiteAccess": { + "type": "boolean", + "validation": ["nullable"] + }, + "reviewerAccessKeysEnabled": { + "type": "boolean", + "validation": ["nullable"] + }, + "reviewGuidelines": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "rights": { + "type": "string", + "description": "Enable rights metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", + "validation": ["nullable", "in:0,enable,request,require"] + }, + "searchDescription": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "seq": { + "type": "integer", + "apiSummary": true, + "validation": ["min:0"] + }, + "showEnsuringLink": { + "type": "boolean", + "validation": ["nullable"] + }, + "sidebar": { + "type": "array", + "validation": ["nullable"], + "items": { + "type": "string", + "validation": ["alpha_dash"] + } + }, + "source": { + "type": "string", + "description": "Enable source metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", + "validation": ["nullable", "in:0,enable,request,require"] + }, + "styleSheet": { + "type": "object", + "validation": ["nullable"], + "properties": { + "temporaryFileId": { + "type": "integer", + "writeOnly": true + }, + "name": { + "type": "string" + }, + "uploadName": { + "type": "string" + }, + "dateUploaded": { + "type": "string" + } + } + }, + "subjects": { + "type": "string", + "description": "Enable subjects metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", + "validation": ["nullable", "in:0,enable,request,require"] + }, + "submissionChecklist": { + "type": "array", + "multilingual": true, + "validation": ["nullable"], + "items": { + "type": "object", + "properties": { + "order": { + "type": "integer", + "validation": ["nullable", "min:0"] + }, + "content": { + "type": "string" + } + } + }, + "default": [ + { + "order": 1, + "content": { + "defaultLocaleKey": "default.contextSettings.checklist.notPreviouslyPublished" + } + }, + { + "order": 2, + "content": { + "defaultLocaleKey": "default.contextSettings.checklist.fileFormat" + } + }, + { + "order": 3, + "content": { + "defaultLocaleKey": "default.contextSettings.checklist.addressesLinked" + } + }, + { + "order": 4, + "content": { + "defaultLocaleKey": "default.contextSettings.checklist.submissionAppearance" + } + }, + { + "order": 5, + "content": { + "defaultLocaleKey": "default.contextSettings.checklist.bibliographicRequirements" + } + } + ] + }, + "supportedFormLocales": { + "type": "array", + "items": { + "type": "string", + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] + } + }, + "supportedLocales": { + "type": "array", + "items": { + "type": "string", + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] + } + }, + "supportedSubmissionLocales": { + "type": "array", + "items": { + "type": "string", + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] + } + }, + "supportEmail": { + "type": "string", + "validation": ["nullable", "email_or_localhost"] + }, + "supportName": { + "type": "string", + "validation": ["nullable"] + }, + "supportPhone": { + "type": "string", + "validation": ["nullable"] + }, + "themePluginPath": { + "type": "string", + "default": "default" + }, + "timeFormat": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "type": { + "type": "string", + "description": "Enable types metadata. `0` is disabled. `enable` will make it available in the workflow. `request` will allow an author to enter a value during submission. `require` will require that the author enter a value during submission.", + "validation": ["nullable", "in:0,enable,request,require"] + }, + "url": { + "type": "string", + "readOnly": true, + "apiSummary": true + }, + "urlPath": { + "type": "string", + "validation": ["regex:/^[a-zA-Z0-9]+([\\-_][a-zA-Z0-9]+)*$/"], + "apiSummary": true + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/decision.json b/libs/ojs/ojs-client/src/lib/schemas/decision.json index eb652938..b0eb62a6 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/decision.json +++ b/libs/ojs/ojs-client/src/lib/schemas/decision.json @@ -1,78 +1,65 @@ { - "title": "Editorial Decision", - "description": "An editorial decision such as accept, decline or request revisions.", - "required": [ - "dateDecided", - "decision", - "editorId", - "stageId", - "submissionId" - ], - "properties": { - "_href": { - "type": "string", - "description": "The URL to this decision in the REST API.", - "format": "uri", - "readOnly": true, - "apiSummary": true - }, - "actions": { - "type": "array", - "description": "A list of actions to be taken with this decision, such as sending an email. Each decision supports different actions with different properties. See the examples for support decision actions.", - "writeOnly": true, - "items": { - "type": "object" - } - }, - "dateDecided": { - "type": "string", - "description": "The date the decision was taken.", - "apiSummary": true, - "validation": [ - "date_format:Y-m-d H:i:s" - ] - }, - "decision": { - "type": "integer", - "description": "The decision that was made. One of the `SUBMISSION_EDITOR_DECISION_` constants.", - "apiSummary": true - }, - "editorId": { - "type": "integer", - "description": "The user id of the editor who took the decision.", - "apiSummary": true - }, - "id": { - "type": "integer", - "apiSummary": true, - "readOnly": true - }, - "reviewRoundId": { - "type": "integer", - "description": "The unique id of the review round when this decision was taken. This is a globally unique id. It does not represent whether the decision was taken in the first or second round of reviews for a submission. See `round` below.", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "round": { - "type": "integer", - "description": "The sequential review round when this decision was taken. For example, the first, second or third round of review for this submission.", - "apiSummary": true - }, - "stageId": { - "type": "integer", - "description": "The workflow stage when this decision was taken. One of the `WORKFLOW_STAGE_ID_` constants.", - "apiSummary": true, - "validation": [ - "min:1", - "max:5" - ] - }, - "submissionId": { - "type": "integer", - "description": "The decision applies to this submission.", - "apiSummary": true - } - } + "title": "Editorial Decision", + "description": "An editorial decision such as accept, decline or request revisions.", + "required": ["dateDecided", "decision", "editorId", "stageId", "submissionId"], + "properties": { + "_href": { + "type": "string", + "description": "The URL to this decision in the REST API.", + "format": "uri", + "readOnly": true, + "apiSummary": true + }, + "actions": { + "type": "array", + "description": "A list of actions to be taken with this decision, such as sending an email. Each decision supports different actions with different properties. See the examples for support decision actions.", + "writeOnly": true, + "items": { + "type": "object" + } + }, + "dateDecided": { + "type": "string", + "description": "The date the decision was taken.", + "apiSummary": true, + "validation": ["date_format:Y-m-d H:i:s"] + }, + "decision": { + "type": "integer", + "description": "The decision that was made. One of the `SUBMISSION_EDITOR_DECISION_` constants.", + "apiSummary": true + }, + "editorId": { + "type": "integer", + "description": "The user id of the editor who took the decision.", + "apiSummary": true + }, + "id": { + "type": "integer", + "apiSummary": true, + "readOnly": true + }, + "reviewRoundId": { + "type": "integer", + "description": "The unique id of the review round when this decision was taken. This is a globally unique id. It does not represent whether the decision was taken in the first or second round of reviews for a submission. See `round` below.", + "apiSummary": true, + "validation": ["nullable"] + }, + "round": { + "type": "integer", + "description": "The sequential review round when this decision was taken. For example, the first, second or third round of review for this submission.", + "apiSummary": true + }, + "stageId": { + "type": "integer", + "description": "The workflow stage when this decision was taken. One of the `WORKFLOW_STAGE_ID_` constants.", + "apiSummary": true, + "validation": ["min:1", "max:5"] + }, + "submissionId": { + "type": "integer", + "description": "The decision applies to this submission.", + "apiSummary": true + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/doi.json b/libs/ojs/ojs-client/src/lib/schemas/doi.json index f112bb53..c91a7e93 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/doi.json +++ b/libs/ojs/ojs-client/src/lib/schemas/doi.json @@ -1,43 +1,36 @@ { "title": "DOI", "description": "The Digital Object Identifier (DOI) is a persistent ID assigned to published items.", - "required": [ - "contextId", - "doi" - ], + "required": ["contextId", "doi"], "properties": { - "contextId": { - "type": "integer", - "description": "Context id for DOI", - "apiSummary": true - }, - "doi": { - "type": "string", - "description": "Persistent identifier", - "apiSummary": true, - "validation": [ - "regex:/^\\d+(.\\d+)+\\//" - ] - }, - "id": { - "type": "integer", - "apiSummary": true, - "readOnly": true - }, - "resolvingUrl": { - "type": "string", - "description": "DOI URL that resolves to the indicated item", - "apiSummary": true, - "readOnly": true - }, - "status": { - "type": "integer", - "description": "Persistent identifier status", - "apiSummary": true, - "default": 1, - "validation": [ - "in:1,2,3,4,5" - ] - } + "contextId": { + "type": "integer", + "description": "Context id for DOI", + "apiSummary": true + }, + "doi": { + "type": "string", + "description": "Persistent identifier", + "apiSummary": true, + "validation": ["regex:/^\\d+(.\\d+)+\\//"] + }, + "id": { + "type": "integer", + "apiSummary": true, + "readOnly": true + }, + "resolvingUrl": { + "type": "string", + "description": "DOI URL that resolves to the indicated item", + "apiSummary": true, + "readOnly": true + }, + "status": { + "type": "integer", + "description": "Persistent identifier status", + "apiSummary": true, + "default": 1, + "validation": ["in:1,2,3,4,5"] + } } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/emailTemplate.json b/libs/ojs/ojs-client/src/lib/schemas/emailTemplate.json index bd08f816..76b7669c 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/emailTemplate.json +++ b/libs/ojs/ojs-client/src/lib/schemas/emailTemplate.json @@ -1,102 +1,88 @@ { - "title": "Email Template", - "description": "A saved email message that can be sent by the application during registration, submission, peer review and all other operations of the application.", - "type": "object", - "required": [ - "contextId", - "body", - "key", - "subject" - ], - "properties": { - "_href": { - "type": "string", - "format": "uri", - "readOnly": true, - "apiSummary": true - }, - "body": { - "type": "string", - "description": "The email template to be used in the email's main body content.", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "canDisable": { - "type": "boolean", - "description": "Can this email template be disabled in the context settings area? Default is `true`.", - "apiSummary": true, - "readOnly": true - }, - "canEdit": { - "type": "boolean", - "description": "Can this email template be edited in the context settings area? Default is `true`.", - "apiSummary": true, - "readOnly": true - }, - "contextId": { - "type": "integer", - "description": "The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`.", - "apiSummary": "true", - "validation": [ - "nullable", - "min:0" - ] - }, - "description": { - "type": "string", - "description": "A description of when this email template is used.", - "multilingual": true, - "apiSummary": true, - "readOnly": true - }, - "enabled": { - "type": "boolean", - "description": "Is this email template enabled? Default is `true`.", - "apiSummary": true - }, - "fromRoleId": { - "type": "integer", - "description": "The `ROLE_ID_*` of the user who will send this email.", - "apiSummary": true, - "readOnly": true - }, - "id": { - "type": "integer", - "description": "The email template ID.", - "apiSummary": true, - "readOnly": true - }, - "key": { - "type": "string", - "description": "A unique key for this email template.", - "apiSummary": true, - "validation": [ - "alpha_dash" - ] - }, - "subject": { - "type": "string", - "description": "The subject of the email to be used in the email's subject header.", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "toRoleId": { - "type": "integer", - "description": "The `ROLE_ID_*` of the user who will receive this email.", - "apiSummary": true, - "readOnly": true - }, - "stageId": { - "type": "integer", - "description": "The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage.", - "apiSummary": true, - "readOnly": true - } - } + "title": "Email Template", + "description": "A saved email message that can be sent by the application during registration, submission, peer review and all other operations of the application.", + "type": "object", + "required": ["contextId", "body", "key", "subject"], + "properties": { + "_href": { + "type": "string", + "format": "uri", + "readOnly": true, + "apiSummary": true + }, + "body": { + "type": "string", + "description": "The email template to be used in the email's main body content.", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "canDisable": { + "type": "boolean", + "description": "Can this email template be disabled in the context settings area? Default is `true`.", + "apiSummary": true, + "readOnly": true + }, + "canEdit": { + "type": "boolean", + "description": "Can this email template be edited in the context settings area? Default is `true`.", + "apiSummary": true, + "readOnly": true + }, + "contextId": { + "type": "integer", + "description": "The ID of the context (journal/press) this email is related to. Only used for custom email templates. Default is `null`.", + "apiSummary": "true", + "validation": ["nullable", "min:0"] + }, + "description": { + "type": "string", + "description": "A description of when this email template is used.", + "multilingual": true, + "apiSummary": true, + "readOnly": true + }, + "enabled": { + "type": "boolean", + "description": "Is this email template enabled? Default is `true`.", + "apiSummary": true + }, + "fromRoleId": { + "type": "integer", + "description": "The `ROLE_ID_*` of the user who will send this email.", + "apiSummary": true, + "readOnly": true + }, + "id": { + "type": "integer", + "description": "The email template ID.", + "apiSummary": true, + "readOnly": true + }, + "key": { + "type": "string", + "description": "A unique key for this email template.", + "apiSummary": true, + "validation": ["alpha_dash"] + }, + "subject": { + "type": "string", + "description": "The subject of the email to be used in the email's subject header.", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "toRoleId": { + "type": "integer", + "description": "The `ROLE_ID_*` of the user who will receive this email.", + "apiSummary": true, + "readOnly": true + }, + "stageId": { + "type": "integer", + "description": "The `WORKFLOW_STAGE_ID_*` that email template is associated with or `null` if it is not associated with a stage.", + "apiSummary": true, + "readOnly": true + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/publication.json b/libs/ojs/ojs-client/src/lib/schemas/publication.json index a54cd593..e40c326e 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/publication.json +++ b/libs/ojs/ojs-client/src/lib/schemas/publication.json @@ -1,336 +1,276 @@ { - "title": "Publication", - "description": "A published version of a submission.", - "type": "object", - "required": [ - "locale", - "submissionId", - "title", - "version" - ], - "properties": { - "_href": { - "type": "string", - "format": "uri", - "readOnly": true, - "apiSummary": true - }, - "abstract": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "authors": { - "type": "array", - "description": "A list of the authors for this publication.", - "readOnly": true, - "items": { - "$ref": "#/definitions/Author" - } - }, - "authorsString": { - "type": "string", - "description": "All of the authors rendered with the appropriate separators according to the locale.", - "apiSummary": true, - "readOnly": true - }, - "authorsStringIncludeInBrowse": { - "type": "string", - "description": "A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale.", - "apiSummary": true, - "readOnly": true - }, - "authorsStringShort": { - "type": "string", - "description": "A shortened version of the authors rendered with the appropriate separators according to the locale.", - "apiSummary": true, - "readOnly": true - }, - "categoryIds": { - "type": "array", - "apiSummary": true, - "items": { - "type": "integer" - } - }, - "citations": { - "type": "array", - "description": "Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text.", - "readOnly": true, - "items": { - "type": "string" - } - }, - "citationsRaw": { - "type": "string", - "description": "Optional metadata that contains references for works cited in this submission as raw text.", - "validation": [ - "nullable" - ] - }, - "copyrightHolder": { - "type": "string", - "description": "The copyright statement for this publication.", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "copyrightYear": { - "type": "integer", - "description": "The copyright year for this publication.", - "validation": [ - "nullable" - ] - }, - "coverage": { - "type": "string", - "description": "Optional metadata that usually indicates a work's location, time period or jurisdiction.", - "multilingual": "true", - "validation": [ - "nullable" - ] - }, - "coverImage": { - "type": "object", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ], - "properties": { - "temporaryFileId": { - "type": "integer", - "writeOnly": true - }, - "dateUploaded": { - "type": "string" - }, - "uploadName": { - "type": "string" - }, - "altText": { - "type": "string" - } - } - }, - "datePublished": { - "type": "string", - "apiSummary": true, - "validation": [ - "nullable", - "date_format:Y-m-d" - ] - }, - "disciplines": { - "type": "array", - "description": "Optional metadata that describes the submission's types of study or branches of knowledge.", - "multilingual": true, - "validation": [ - "nullable" - ], - "items": { - "type": "string" - } - }, - "doiObject": { - "type": "object", - "description": "DOI object for this publication", - "apiSummary": true, - "readOnly": true, - "items": { - "$ref": "#/definitions/Doi" - } - }, - "doiId": { - "type": "integer", - "description": "Reference to the DOI for this publication", - "writeOnly": true, - "validation": [ - "nullable" - ] - }, - "fullTitle": { - "type": "string", - "description": "The combined prefix, title and subtitle.", - "multilingual": true, - "readOnly": true, - "apiSummary": true - }, - "id": { - "type": "integer", - "readOnly": true, - "apiSummary": true - }, - "keywords": { - "type": "array", - "description": "Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission.", - "multilingual": true, - "validation": [ - "nullable" - ], - "items": { - "type": "string" - } - }, - "languages": { - "type": "array", - "description": "Optional metadata that identifies the submission's primary language.", - "multilingual": true, - "validation": [ - "nullable" - ], - "items": { - "type": "string" - } - }, - "lastModified": { - "type": "string", - "validation": [ - "date_format:Y-m-d H:i:s" - ] - }, - "licenseUrl": { - "type": "string", - "description": "A URL to a webpage describing the license terms for this publication.", - "validation": [ - "nullable", - "url" - ] - }, - "locale": { - "type": "string", - "description": "The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property.", - "apiSummary": true, - "readOnly": true - }, - "prefix": { - "type": "string", - "description": "A prefix to be prepended to the title. In English, words such as \"The\" and \"A\" are commonly entered in the prefix instead of the title.", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "primaryContactId": { - "type": "integer", - "description": "Which `contributor` is the primary contact for this publication.", - "apiSummary": true - }, - "pub-id::publisher-id": { - "type": "string", - "description": "A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present.", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "rights": { - "type": "string", - "description": "Optional metadata that describes any rights held over the submission.", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "seq": { - "type": "integer", - "default": 0, - "validation": [ - "nullable" - ] - }, - "source": { - "type": "string", - "description": "Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived.", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "subjects": { - "type": "array", - "description": "Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics.", - "multilingual": true, - "validation": [ - "nullable" - ], - "items": { - "type": "string" - } - }, - "submissionId": { - "type": "integer", - "apiSummary": true - }, - "subtitle": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "supportingAgencies": { - "type": "array", - "description": "Optional metadata that indicates the source of research funding or other institutional support.", - "multilingual": true, - "validation": [ - "nullable" - ], - "items": { - "type": "string" - } - }, - "status": { - "type": "integer", - "description": "Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`.", - "apiSummary": true, - "default": 1, - "validation": [ - "in:1,3,4,5" - ] - }, - "title": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "type": { - "type": "string", - "description": "Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary).", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "urlPath": { - "type": "string", - "description": "An optional path to use in the URL instead of the ID.", - "validation": [ - "nullable", - "regex:/^[a-zA-Z0-9]+([\\.\\-_][a-zA-Z0-9]+)*$/" - ] - }, - "urlPublished": { - "type": "string", - "description": "The public URL for this publication or where it will be available if it has not yet been published.", - "apiSummary": true, - "readOnly": true - }, - "version": { - "type": "integer", - "description": "The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them.", - "apiSummary": true, - "validation": [ - "min:1" - ] - } - } + "title": "Publication", + "description": "A published version of a submission.", + "type": "object", + "required": ["locale", "submissionId", "title", "version"], + "properties": { + "_href": { + "type": "string", + "format": "uri", + "readOnly": true, + "apiSummary": true + }, + "abstract": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "authors": { + "type": "array", + "description": "A list of the authors for this publication.", + "readOnly": true, + "items": { + "$ref": "#/definitions/Author" + } + }, + "authorsString": { + "type": "string", + "description": "All of the authors rendered with the appropriate separators according to the locale.", + "apiSummary": true, + "readOnly": true + }, + "authorsStringIncludeInBrowse": { + "type": "string", + "description": "A list of authors that are included in publication lists, like tables of content and search results, rendered with the appropriate separators according to the locale.", + "apiSummary": true, + "readOnly": true + }, + "authorsStringShort": { + "type": "string", + "description": "A shortened version of the authors rendered with the appropriate separators according to the locale.", + "apiSummary": true, + "readOnly": true + }, + "categoryIds": { + "type": "array", + "apiSummary": true, + "items": { + "type": "integer" + } + }, + "citations": { + "type": "array", + "description": "Optional metadata that contains an array of references for works cited in this submission. References have been split and parsed from the raw text.", + "readOnly": true, + "items": { + "type": "string" + } + }, + "citationsRaw": { + "type": "string", + "description": "Optional metadata that contains references for works cited in this submission as raw text.", + "validation": ["nullable"] + }, + "copyrightHolder": { + "type": "string", + "description": "The copyright statement for this publication.", + "multilingual": true, + "validation": ["nullable"] + }, + "copyrightYear": { + "type": "integer", + "description": "The copyright year for this publication.", + "validation": ["nullable"] + }, + "coverage": { + "type": "string", + "description": "Optional metadata that usually indicates a work's location, time period or jurisdiction.", + "multilingual": "true", + "validation": ["nullable"] + }, + "coverImage": { + "type": "object", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"], + "properties": { + "temporaryFileId": { + "type": "integer", + "writeOnly": true + }, + "dateUploaded": { + "type": "string" + }, + "uploadName": { + "type": "string" + }, + "altText": { + "type": "string" + } + } + }, + "datePublished": { + "type": "string", + "apiSummary": true, + "validation": ["nullable", "date_format:Y-m-d"] + }, + "disciplines": { + "type": "array", + "description": "Optional metadata that describes the submission's types of study or branches of knowledge.", + "multilingual": true, + "validation": ["nullable"], + "items": { + "type": "string" + } + }, + "doiObject": { + "type": "object", + "description": "DOI object for this publication", + "apiSummary": true, + "readOnly": true, + "items": { + "$ref": "#/definitions/Doi" + } + }, + "doiId": { + "type": "integer", + "description": "Reference to the DOI for this publication", + "writeOnly": true, + "validation": ["nullable"] + }, + "fullTitle": { + "type": "string", + "description": "The combined prefix, title and subtitle.", + "multilingual": true, + "readOnly": true, + "apiSummary": true + }, + "id": { + "type": "integer", + "readOnly": true, + "apiSummary": true + }, + "keywords": { + "type": "array", + "description": "Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission.", + "multilingual": true, + "validation": ["nullable"], + "items": { + "type": "string" + } + }, + "languages": { + "type": "array", + "description": "Optional metadata that identifies the submission's primary language.", + "multilingual": true, + "validation": ["nullable"], + "items": { + "type": "string" + } + }, + "lastModified": { + "type": "string", + "validation": ["date_format:Y-m-d H:i:s"] + }, + "licenseUrl": { + "type": "string", + "description": "A URL to a webpage describing the license terms for this publication.", + "validation": ["nullable", "url"] + }, + "locale": { + "type": "string", + "description": "The primary locale of the submission this publication is attached to. This locale is used as the fallback when a language is missing from a multilingual property.", + "apiSummary": true, + "readOnly": true + }, + "prefix": { + "type": "string", + "description": "A prefix to be prepended to the title. In English, words such as \"The\" and \"A\" are commonly entered in the prefix instead of the title.", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "primaryContactId": { + "type": "integer", + "description": "Which `contributor` is the primary contact for this publication.", + "apiSummary": true + }, + "pub-id::publisher-id": { + "type": "string", + "description": "A unique ID provided by the publisher. It will be used in the publication's URL path instead of the `id` when present.", + "apiSummary": true, + "validation": ["nullable"] + }, + "rights": { + "type": "string", + "description": "Optional metadata that describes any rights held over the submission.", + "multilingual": true, + "validation": ["nullable"] + }, + "seq": { + "type": "integer", + "default": 0, + "validation": ["nullable"] + }, + "source": { + "type": "string", + "description": "Optional metadata that may be an ID, such as a DOI, of another work from which the submission is derived.", + "multilingual": true, + "validation": ["nullable"] + }, + "subjects": { + "type": "array", + "description": "Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics.", + "multilingual": true, + "validation": ["nullable"], + "items": { + "type": "string" + } + }, + "submissionId": { + "type": "integer", + "apiSummary": true + }, + "subtitle": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "supportingAgencies": { + "type": "array", + "description": "Optional metadata that indicates the source of research funding or other institutional support.", + "multilingual": true, + "validation": ["nullable"], + "items": { + "type": "string" + } + }, + "status": { + "type": "integer", + "description": "Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`.", + "apiSummary": true, + "default": 1, + "validation": ["in:1,3,4,5"] + }, + "title": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "type": { + "type": "string", + "description": "Optional metadata that describes the type of the submission and usually matches on of the [Dublin Core Types](http://dublincore.org/documents/dcmi-type-vocabulary/#section-7-dcmi-type-vocabulary).", + "multilingual": true, + "validation": ["nullable"] + }, + "urlPath": { + "type": "string", + "description": "An optional path to use in the URL instead of the ID.", + "validation": ["nullable", "regex:/^[a-zA-Z0-9]+([\\.\\-_][a-zA-Z0-9]+)*$/"] + }, + "urlPublished": { + "type": "string", + "description": "The public URL for this publication or where it will be available if it has not yet been published.", + "apiSummary": true, + "readOnly": true + }, + "version": { + "type": "integer", + "description": "The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number `3`. Version numbers should typically be set automatically and editorial staff should not be encouraged to modify them.", + "apiSummary": true, + "validation": ["min:1"] + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/reviewRound.json b/libs/ojs/ojs-client/src/lib/schemas/reviewRound.json index 152819fd..c74fe07b 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/reviewRound.json +++ b/libs/ojs/ojs-client/src/lib/schemas/reviewRound.json @@ -1,22 +1,22 @@ { - "title": "Review Round", - "description": "A round of review assignments in the review stage.", - "properties": { - "id": { - "type": "integer" - }, - "round": { - "type": "integer" - }, - "stageId": { - "type": "integer" - }, - "status": { - "type": "string", - "readOnly": true - }, - "statusId": { - "type": "integer" - } - } + "title": "Review Round", + "description": "A round of review assignments in the review stage.", + "properties": { + "id": { + "type": "integer" + }, + "round": { + "type": "integer" + }, + "stageId": { + "type": "integer" + }, + "status": { + "type": "string", + "readOnly": true + }, + "statusId": { + "type": "integer" + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/site.json b/libs/ojs/ojs-client/src/lib/schemas/site.json index 27939835..d1fb5c1e 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/site.json +++ b/libs/ojs/ojs-client/src/lib/schemas/site.json @@ -1,163 +1,130 @@ { - "title": "Site", - "description": "The overall site hosting one or more contexts (journals/presses).", - "required": [ - "title", - "contactName", - "contactEmail" - ], - "properties": { - "about": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "contactEmail": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable", - "email_or_localhost" - ] - }, - "contactName": { - "type": "string", - "multilingual": true, - "defaultLocaleKey": "common.software", - "validation": [ - "nullable" - ] - }, - "enableBulkEmails": { - "type": "array", - "description": "Which hosted journals, presses or preprint servers are allowed to send bulk emails.", - "items": { - "type": "integer" - } - }, - "installedLocales": { - "type": "array", - "items": { - "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] - } - }, - "minPasswordLength": { - "type": "integer", - "validation": [ - "min:4" - ] - }, - "pageFooter": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "pageHeaderTitleImage": { - "type": "object", - "multilingual": true, - "validation": [ - "nullable" - ], - "properties": { - "temporaryFileId": { - "type": "integer", - "writeOnly": true - }, - "name": { - "type": "string" - }, - "uploadName": { - "type": "string" - }, - "width": { - "type": "integer" - }, - "height": { - "type": "integer" - }, - "dateUploaded": { - "type": "string" - }, - "altText": { - "type": "string" - } - } - }, - "primaryLocale": { - "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] - }, - "privacyStatement": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "redirect": { - "type": "integer", - "validation": [ - "nullable" - ] - }, - "sidebar": { - "type": "array", - "items": { - "type": "string", - "validation": [ - "alpha_num" - ] - } - }, - "styleSheet": { - "type": "object", - "validation": [ - "nullable" - ], - "properties": { - "temporaryFileId": { - "type": "integer", - "writeOnly": true - }, - "name": { - "type": "string" - }, - "uploadName": { - "type": "string" - }, - "dateUploaded": { - "type": "string" - } - } - }, - "supportedLocales": { - "type": "array", - "items": { - "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] - } - }, - "themePluginPath": { - "type": "string", - "default": "default" - }, - "title": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - } - } + "title": "Site", + "description": "The overall site hosting one or more contexts (journals/presses).", + "required": ["title", "contactName", "contactEmail"], + "properties": { + "about": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "contactEmail": { + "type": "string", + "multilingual": true, + "validation": ["nullable", "email_or_localhost"] + }, + "contactName": { + "type": "string", + "multilingual": true, + "defaultLocaleKey": "common.software", + "validation": ["nullable"] + }, + "enableBulkEmails": { + "type": "array", + "description": "Which hosted journals, presses or preprint servers are allowed to send bulk emails.", + "items": { + "type": "integer" + } + }, + "installedLocales": { + "type": "array", + "items": { + "type": "string", + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] + } + }, + "minPasswordLength": { + "type": "integer", + "validation": ["min:4"] + }, + "pageFooter": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "pageHeaderTitleImage": { + "type": "object", + "multilingual": true, + "validation": ["nullable"], + "properties": { + "temporaryFileId": { + "type": "integer", + "writeOnly": true + }, + "name": { + "type": "string" + }, + "uploadName": { + "type": "string" + }, + "width": { + "type": "integer" + }, + "height": { + "type": "integer" + }, + "dateUploaded": { + "type": "string" + }, + "altText": { + "type": "string" + } + } + }, + "primaryLocale": { + "type": "string", + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] + }, + "privacyStatement": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "redirect": { + "type": "integer", + "validation": ["nullable"] + }, + "sidebar": { + "type": "array", + "items": { + "type": "string", + "validation": ["alpha_num"] + } + }, + "styleSheet": { + "type": "object", + "validation": ["nullable"], + "properties": { + "temporaryFileId": { + "type": "integer", + "writeOnly": true + }, + "name": { + "type": "string" + }, + "uploadName": { + "type": "string" + }, + "dateUploaded": { + "type": "string" + } + } + }, + "supportedLocales": { + "type": "array", + "items": { + "type": "string", + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] + } + }, + "themePluginPath": { + "type": "string", + "default": "default" + }, + "title": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/submission.json b/libs/ojs/ojs-client/src/lib/schemas/submission.json index fe5efbd4..8e41edf7 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/submission.json +++ b/libs/ojs/ojs-client/src/lib/schemas/submission.json @@ -1,244 +1,222 @@ { - "title": "Submission", - "description": "A submission to the journal or press.", - "required": [ - "contextId", - "sectionId" - ], - "properties": { - "_href": { - "type": "string", - "readOnly": true, - "apiSummary": true - }, - "contextId": { - "type": "integer", - "apiSummary": true - }, - "currentPublicationId": { - "type": "integer", - "description": "Which publication is the latest published version.", - "apiSummary": true - }, - "dateLastActivity": { - "type": "string", - "description": "The last time activity was recorded related to this submission.", - "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] - }, - "dateSubmitted": { - "type": "string", - "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] - }, - "id": { - "type": "integer", - "apiSummary": true - }, - "lastModified": { - "type": "string", - "description": "The last time a modification was made to this submission or any of its associated objects.", - "apiSummary": true, - "validation": [ - "date:Y-m-d H:i:s" - ] - }, - "locale": { - "type": "string", - "description": "The primary language of this submission.", - "apiSummary": true, - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] - }, - "publications": { - "type": "array", - "description": "A list of publications that have been created for this submission.", - "apiSummary": true, - "readOnly": true, - "items": { - "$ref": "#/definitions/Publication" - } - }, - "reviewRounds": { - "type": "array", - "description": "A list of review rounds that have been opened for this submission.", - "readOnly": true, - "items": { - "$ref": "#/definitions/ReviewRound" - } - }, - "reviewAssignments": { - "type": "array", - "description": "Information about pending and completed review assignments.", - "readOnly": "true", - "items": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "isCurrentUserAssigned": { - "type": "integer", - "readOnly": true - }, - "status": { - "type": "integer", - "readOnly": true - }, - "statusLabel": { - "type": "integer", - "readOnly": true - }, - "dateDue": { - "type": "integer", - "validation": [ - "date|Y-m-d H:i:s" - ] - }, - "dateResponseDue": { - "type": "integer", - "validation": [ - "date|Y-m-d H:i:s" - ] - }, - "round": { - "type": "integer" - }, - "reviewRoundId": { - "type": "integer" - } - } - } - }, - "sectionId": { - "type": "integer", - "description": "The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the `sectionId`.", - "writeOnly": true - }, - "stageId": { - "type": "integer", - "description": "The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`.", - "apiSummary": true, - "default": 1, - "validation": [ - "min:1", - "max:5" - ] - }, - "stages": { - "type": "array", - "description": "Key data about the status, files and discussions of each stage.", - "readOnly": true, - "items": { - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "label": { - "type": "string" - }, - "isActiveStage": { - "type": "boolean" - }, - "currentUserAssignedRoles": { - "type": "array", - "items": { - "type": "integer" - } - }, - "status": { - "type": "string" - }, - "statusId": { - "type": "integer" - }, - "files": { - "type": "object", - "properties": { - "count": { - "type": "integer" - } - } - }, - "queries": { - "type": "array", - "items": { - "id": { - "type": "integer" - }, - "assocType": { - "type": "integer" - }, - "assocId": { - "type": "integer" - }, - "stageId": { - "type": "integer" - }, - "seq": { - "type": "integer" - }, - "closed": { - "type": "boolean" - } - } - } - } - } - }, - "status": { - "type": "integer", - "description": "Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`.", - "apiSummary": true, - "default": 1, - "validation": [ - "in:1,2,3,4,5" - ] - }, - "statusLabel": { - "type": "string", - "description": "A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled.", - "readOnly": true, - "apiSummary": true - }, - "submissionProgress": { - "type": "integer", - "description": "This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration.", - "apiSummary": true, - "default": 1, - "validation": [ - "in:0,1,2,3,4" - ] - }, - "urlAuthorWorkflow": { - "type": "string", - "description": "A URL to the author's editorial workflow.", - "apiSummary": true, - "readOnly": true - }, - "urlEditorialWorkflow": { - "type": "string", - "description": "A URL to the editors' and assistants' editorial workflow.", - "apiSummary": true, - "readOnly": true - }, - "urlWorkflow": { - "type": "string", - "description": "A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or `urlEditorialWorkflow.", - "apiSummary": true, - "readOnly": true - }, - "urlPublished": { - "type": "string", - "description": "A URL to the current publication or where it will be published.", - "apiSummary": true, - "readOnly": true - } - } + "title": "Submission", + "description": "A submission to the journal or press.", + "required": ["contextId", "sectionId"], + "properties": { + "_href": { + "type": "string", + "readOnly": true, + "apiSummary": true + }, + "contextId": { + "type": "integer", + "apiSummary": true + }, + "currentPublicationId": { + "type": "integer", + "description": "Which publication is the latest published version.", + "apiSummary": true + }, + "dateLastActivity": { + "type": "string", + "description": "The last time activity was recorded related to this submission.", + "apiSummary": true, + "validation": ["date:Y-m-d H:i:s"] + }, + "dateSubmitted": { + "type": "string", + "apiSummary": true, + "validation": ["date:Y-m-d H:i:s"] + }, + "id": { + "type": "integer", + "apiSummary": true + }, + "lastModified": { + "type": "string", + "description": "The last time a modification was made to this submission or any of its associated objects.", + "apiSummary": true, + "validation": ["date:Y-m-d H:i:s"] + }, + "locale": { + "type": "string", + "description": "The primary language of this submission.", + "apiSummary": true, + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] + }, + "publications": { + "type": "array", + "description": "A list of publications that have been created for this submission.", + "apiSummary": true, + "readOnly": true, + "items": { + "$ref": "#/definitions/Publication" + } + }, + "reviewRounds": { + "type": "array", + "description": "A list of review rounds that have been opened for this submission.", + "readOnly": true, + "items": { + "$ref": "#/definitions/ReviewRound" + } + }, + "reviewAssignments": { + "type": "array", + "description": "Information about pending and completed review assignments.", + "readOnly": "true", + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "isCurrentUserAssigned": { + "type": "integer", + "readOnly": true + }, + "status": { + "type": "integer", + "readOnly": true + }, + "statusLabel": { + "type": "integer", + "readOnly": true + }, + "dateDue": { + "type": "integer", + "validation": ["date|Y-m-d H:i:s"] + }, + "dateResponseDue": { + "type": "integer", + "validation": ["date|Y-m-d H:i:s"] + }, + "round": { + "type": "integer" + }, + "reviewRoundId": { + "type": "integer" + } + } + } + }, + "sectionId": { + "type": "integer", + "description": "The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. Edit the publication to change the `sectionId`.", + "writeOnly": true + }, + "stageId": { + "type": "integer", + "description": "The stage of the editorial workflow that this submission is currently in. One of the `WORKFLOW_STAGE_` constants. Default is `WORKFLOW_STAGE_SUBMISSION`.", + "apiSummary": true, + "default": 1, + "validation": ["min:1", "max:5"] + }, + "stages": { + "type": "array", + "description": "Key data about the status, files and discussions of each stage.", + "readOnly": true, + "items": { + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "label": { + "type": "string" + }, + "isActiveStage": { + "type": "boolean" + }, + "currentUserAssignedRoles": { + "type": "array", + "items": { + "type": "integer" + } + }, + "status": { + "type": "string" + }, + "statusId": { + "type": "integer" + }, + "files": { + "type": "object", + "properties": { + "count": { + "type": "integer" + } + } + }, + "queries": { + "type": "array", + "items": { + "id": { + "type": "integer" + }, + "assocType": { + "type": "integer" + }, + "assocId": { + "type": "integer" + }, + "stageId": { + "type": "integer" + }, + "seq": { + "type": "integer" + }, + "closed": { + "type": "boolean" + } + } + } + } + } + }, + "status": { + "type": "integer", + "description": "Whether the submission is Published, Declined, Scheduled or Queued (still in the workflow). One of the `PKPSubmission::STATUS_*` constants. Default is `PKPSubmission::STATUS_QUEUED`.", + "apiSummary": true, + "default": 1, + "validation": ["in:1,2,3,4,5"] + }, + "statusLabel": { + "type": "string", + "description": "A human-readable version of the submission's status. It will be Published, Declined, Queued (still in the workflow) or Scheduled.", + "readOnly": true, + "apiSummary": true + }, + "submissionProgress": { + "type": "integer", + "description": "This number tracks a submission's progress before it is submitted to the journal or press. After submission, it will be set to `0`, indicating it is ready for an editor's consideration.", + "apiSummary": true, + "default": 1, + "validation": ["in:0,1,2,3,4"] + }, + "urlAuthorWorkflow": { + "type": "string", + "description": "A URL to the author's editorial workflow.", + "apiSummary": true, + "readOnly": true + }, + "urlEditorialWorkflow": { + "type": "string", + "description": "A URL to the editors' and assistants' editorial workflow.", + "apiSummary": true, + "readOnly": true + }, + "urlWorkflow": { + "type": "string", + "description": "A URL to the workflow most appropriate for the current user. It will match the `urlAuthorWorkflow` or `urlEditorialWorkflow.", + "apiSummary": true, + "readOnly": true + }, + "urlPublished": { + "type": "string", + "description": "A URL to the current publication or where it will be published.", + "apiSummary": true, + "readOnly": true + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/submissionFile.json b/libs/ojs/ojs-client/src/lib/schemas/submissionFile.json index 471af8eb..25013c71 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/submissionFile.json +++ b/libs/ojs/ojs-client/src/lib/schemas/submissionFile.json @@ -1,288 +1,250 @@ { - "title": "Submission File", - "description": "A submission file including associated metadata.", - "required": [ - "fileId", - "fileStage", - "name", - "submissionId", - "uploaderUserId" - ], - "properties": { - "_href": { - "type": "string", - "format": "uri", - "readOnly": true, - "apiSummary": true - }, - "assocId": { - "type": "integer", - "apiSummary": true, - "description": "Used with `assocType` to associate this file with an object such as a galley.", - "validation": [ - "nullable" - ] - }, - "assocType": { - "type": "integer", - "apiSummary": true, - "description": "Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round).", - "validation": [ - "in:515,517,520,521,523" - ] - }, - "caption": { - "type": "string", - "apiSummary": true, - "description": "A caption for this file. Used with artwork such as images.", - "validation": [ - "nullable" - ] - }, - "copyrightOwner": { - "type": "string", - "apiSummary": true, - "description": "The copyright owner of this file. Used with artwork such as images.", - "validation": [ - "nullable" - ] - }, - "createdAt": { - "type": "string", - "apiSummary": true, - "description": "The date this submission file object was created in the system. Set automatically by the software.", - "validation": [ - "date:Y-m-d H:i:s" - ] - }, - "creator": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "description": "An attribution for this file, such as the creator of a data set. Used with supplementary files.", - "validation": [ - "nullable" - ] - }, - "credit": { - "type": "string", - "description": "An attribution for this file, such as a photographer's name. Used with artwork such as images.", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "dateCreated": { - "type": "string", - "description": "Public metadata about when this content was created. Used with supplementary files.", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "dependentFiles": { - "type": "array", - "readOnly": true, - "description": "Any dependent files, typically images or audio files that are loaded by an HTML file.", - "items": { - "$ref": "#/definitions/SubmissionFile" - } - }, - "description": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "documentType": { - "type": "string", - "apiSummary": true, - "readOnly": true - }, - "fileId": { - "type": "integer", - "apiSummary": true - }, - "id": { - "type": "integer", - "apiSummary": true, - "readOnly": true - }, - "file": { - "type": "string", - "format": "binary", - "writeOnly": true - }, - "fileStage": { - "type": "integer", - "apiSummary": true, - "validation": [ - "in:2,3,4,5,6,7,8,9,10,11,13,15,17,18" - ] - }, - "genre": { - "type": "object", - "description": "The genre of this file, such as Article Text or Data Set.", - "apiSummary": true, - "readOnly": true, - "properties": { - "id": { - "type": "integer", - "apiSummary": true, - "readOnly": true - }, - "dependent": { - "type": "boolean", - "description": "Dependent files, such as images displayed by a HTML file, that are be displayed with published content.", - "apiSummary": true, - "readOnly": true - }, - "name": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "readOnly": true - }, - "supplementary": { - "type": "boolean", - "description": "Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files.", - "apiSummary": true, - "readOnly": true - } - } - }, - "genreId": { - "type": "integer", - "description": "The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set.", - "apiSummary": true, - "writeOnly": true - }, - "language": { - "type": "string", - "apiSummary": true, - "description": "The language of this file if it contains text. Used with supplementary files.", - "validation": [ - "nullable" - ] - }, - "locale": { - "type": "string", - "apiSummary": "true", - "description": "The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property.", - "readOnly": "true" - }, - "mimetype": { - "type": "string", - "apiSummary": true, - "readOnly": true - }, - "name": { - "type": "string", - "multilingual": true, - "apiSummary": true - }, - "path": { - "type": "string", - "apiSummary": true, - "readOnly": true - }, - "publisher": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "description": "The publisher of this file. Used with supplementary files.", - "validation": [ - "nullable" - ] - }, - "revisions": { - "type": "array", - "readOnly": true, - "description": "Previous versions of this file.", - "items": { - "type": "object", - "properties": { - "documentType": { - "type": "string" - }, - "fileId": { - "type": "integer" - }, - "mimetype": { - "type": "string" - }, - "path": { - "type": "string" - }, - "url": { - "type": "string" - } - } - } - }, - "sourceSubmissionFileId": { - "type": "integer", - "apiSummary": true, - "description": "When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`." - }, - "source": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "description": "An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files.", - "validation": [ - "nullable" - ] - }, - "sponsor": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "description": "Sponsorship or funding disclosure for this file. Used with supplementary files.", - "validation": [ - "nullable" - ] - }, - "subject": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "description": "Subject metadata for this file. Used with supplementary files.", - "validation": [ - "nullable" - ] - }, - "submissionId": { - "type": "integer", - "apiSummary": true - }, - "terms": { - "type": "string", - "apiSummary": true, - "description": "Licensing terms for this file. Used with artwork such as images." - }, - "updatedAt": { - "type": "string", - "apiSummary": true, - "description": "When this object was last updated.", - "validation": [ - "date:Y-m-d H:i:s" - ] - }, - "uploaderUserId": { - "type": "integer", - "apiSummary": true - }, - "url": { - "type": "string", - "apiSummary": true, - "readOnly": true - }, - "viewable": { - "type": "boolean", - "apiSummary": true - } - } + "title": "Submission File", + "description": "A submission file including associated metadata.", + "required": ["fileId", "fileStage", "name", "submissionId", "uploaderUserId"], + "properties": { + "_href": { + "type": "string", + "format": "uri", + "readOnly": true, + "apiSummary": true + }, + "assocId": { + "type": "integer", + "apiSummary": true, + "description": "Used with `assocType` to associate this file with an object such as a galley.", + "validation": ["nullable"] + }, + "assocType": { + "type": "integer", + "apiSummary": true, + "description": "Used with `assocId` to associate this file with an object such as a galley. One of the following constants: `ASSOC_TYPE_SUBMISSION_FILE` (dependent files), `ASSOC_TYPE_REVIEW_ASSIGNMENT` (files uploaded by a reviewer), `ASSOC_TYPE_NOTE` (files uploaded with a discussion), `ASSOC_TYPE_REPRESENTATION` (files uploaded to a galley or publication format), `ASSOC_TYPE_REVIEW_ROUND` (review files and revisions for a particular review round).", + "validation": ["in:515,517,520,521,523"] + }, + "caption": { + "type": "string", + "apiSummary": true, + "description": "A caption for this file. Used with artwork such as images.", + "validation": ["nullable"] + }, + "copyrightOwner": { + "type": "string", + "apiSummary": true, + "description": "The copyright owner of this file. Used with artwork such as images.", + "validation": ["nullable"] + }, + "createdAt": { + "type": "string", + "apiSummary": true, + "description": "The date this submission file object was created in the system. Set automatically by the software.", + "validation": ["date:Y-m-d H:i:s"] + }, + "creator": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "description": "An attribution for this file, such as the creator of a data set. Used with supplementary files.", + "validation": ["nullable"] + }, + "credit": { + "type": "string", + "description": "An attribution for this file, such as a photographer's name. Used with artwork such as images.", + "apiSummary": true, + "validation": ["nullable"] + }, + "dateCreated": { + "type": "string", + "description": "Public metadata about when this content was created. Used with supplementary files.", + "apiSummary": true, + "validation": ["nullable"] + }, + "dependentFiles": { + "type": "array", + "readOnly": true, + "description": "Any dependent files, typically images or audio files that are loaded by an HTML file.", + "items": { + "$ref": "#/definitions/SubmissionFile" + } + }, + "description": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "documentType": { + "type": "string", + "apiSummary": true, + "readOnly": true + }, + "fileId": { + "type": "integer", + "apiSummary": true + }, + "id": { + "type": "integer", + "apiSummary": true, + "readOnly": true + }, + "file": { + "type": "string", + "format": "binary", + "writeOnly": true + }, + "fileStage": { + "type": "integer", + "apiSummary": true, + "validation": ["in:2,3,4,5,6,7,8,9,10,11,13,15,17,18"] + }, + "genre": { + "type": "object", + "description": "The genre of this file, such as Article Text or Data Set.", + "apiSummary": true, + "readOnly": true, + "properties": { + "id": { + "type": "integer", + "apiSummary": true, + "readOnly": true + }, + "dependent": { + "type": "boolean", + "description": "Dependent files, such as images displayed by a HTML file, that are be displayed with published content.", + "apiSummary": true, + "readOnly": true + }, + "name": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "readOnly": true + }, + "supplementary": { + "type": "boolean", + "description": "Supplementary files, such as data sets and research materials, that are displayed separately from the main publication files.", + "apiSummary": true, + "readOnly": true + } + } + }, + "genreId": { + "type": "integer", + "description": "The genre ID of this file. Use this to change the file's genre, for example from Article Text to Data Set.", + "apiSummary": true, + "writeOnly": true + }, + "language": { + "type": "string", + "apiSummary": true, + "description": "The language of this file if it contains text. Used with supplementary files.", + "validation": ["nullable"] + }, + "locale": { + "type": "string", + "apiSummary": "true", + "description": "The primary locale of the submission this file is attached to. This locale is used as the fallback when a language is missing from a multilingual property.", + "readOnly": "true" + }, + "mimetype": { + "type": "string", + "apiSummary": true, + "readOnly": true + }, + "name": { + "type": "string", + "multilingual": true, + "apiSummary": true + }, + "path": { + "type": "string", + "apiSummary": true, + "readOnly": true + }, + "publisher": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "description": "The publisher of this file. Used with supplementary files.", + "validation": ["nullable"] + }, + "revisions": { + "type": "array", + "readOnly": true, + "description": "Previous versions of this file.", + "items": { + "type": "object", + "properties": { + "documentType": { + "type": "string" + }, + "fileId": { + "type": "integer" + }, + "mimetype": { + "type": "string" + }, + "path": { + "type": "string" + }, + "url": { + "type": "string" + } + } + } + }, + "sourceSubmissionFileId": { + "type": "integer", + "apiSummary": true, + "description": "When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: `null`." + }, + "source": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "description": "An attribution for this file that identifies its source, such as a dataset from which this file was generated. Used with supplementary files.", + "validation": ["nullable"] + }, + "sponsor": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "description": "Sponsorship or funding disclosure for this file. Used with supplementary files.", + "validation": ["nullable"] + }, + "subject": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "description": "Subject metadata for this file. Used with supplementary files.", + "validation": ["nullable"] + }, + "submissionId": { + "type": "integer", + "apiSummary": true + }, + "terms": { + "type": "string", + "apiSummary": true, + "description": "Licensing terms for this file. Used with artwork such as images." + }, + "updatedAt": { + "type": "string", + "apiSummary": true, + "description": "When this object was last updated.", + "validation": ["date:Y-m-d H:i:s"] + }, + "uploaderUserId": { + "type": "integer", + "apiSummary": true + }, + "url": { + "type": "string", + "apiSummary": true, + "readOnly": true + }, + "viewable": { + "type": "boolean", + "apiSummary": true + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/user.json b/libs/ojs/ojs-client/src/lib/schemas/user.json index d3dc1115..094b5013 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/user.json +++ b/libs/ojs/ojs-client/src/lib/schemas/user.json @@ -1,243 +1,188 @@ { - "title": "User", - "description": "A registered user.", - "properties": { - "_href": { - "type": "string", - "apiSummary": true, - "readOnly": true - }, - "affiliation": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "authId": { - "type": "integer", - "validation": [ - "nullable" - ] - }, - "authStr": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "billingAddress": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "biography": { - "type": "string", - "multilingual": true, - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "country": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "dateRegistered": { - "type": "string", - "validation": [ - "date:Y-m-d H:i:s" - ] - }, - "dateValidated": { - "type": "string", - "validation": [ - "date:Y-m-d H:i:s", - "nullable" - ] - }, - "dateLastEmail": { - "type": "string", - "validation": [ - "date:Y-m-d H:i:s", - "nullable" - ] - }, - "dateLastLogin": { - "type": "string", - "validation": [ - "date:Y-m-d H:i:s", - "nullable" - ] - }, - "apiKey": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "apiKeyEnabled": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "inlineHelp": { - "type": "boolean", - "validation": [ - "nullable" - ] - }, - "disabled": { - "type": "boolean", - "apiSummary": true - }, - "disabledReason": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "email": { - "type": "string", - "apiSummary": true, - "validation": [ - "email_or_localhost" - ] - }, - "familyName": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "fullName": { - "type": "string", - "apiSummary": true, - "readOnly": true - }, - "givenName": { - "type": "string", - "multilingual": true - }, - "gossip": { - "type": "string", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "groups": { - "type": "array", - "apiSummary": true, - "readOnly": true, - "items": { - "$ref": "#/definitions/UserGroup" - } - }, - "id": { - "type": "integer", - "apiSummary": true, - "readOnly": true - }, - "profileImage": { - "type": "object", - "validation": [ - "nullable" - ], - "properties": { - "dateUploaded": { - "type": "string" - }, - "name": { - "type": "string" - }, - "uploadName": { - "type": "string" - }, - "height": { - "type": "integer" - }, - "width": { - "type": "integer" - } - } - }, - "interests": { - "type": "array", - "readOnly": true, - "apiSummary": true, - "items": { - "$ref": "#/definitions/UserInterest" - } - }, - "locales": { - "type": "array", - "items": { - "type": "string", - "validation": [ - "regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/" - ] - } - }, - "mailingAddress": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "mustChangePassword": { - "type": "boolean" - }, - "orcid": { - "type": "string", - "apiSummary": true, - "validation": [ - "orcid", - "nullable" - ] - }, - "password": { - "type": "string", - "writeOnly": true - }, - "phone": { - "type": "string", - "validation": [ - "nullable" - ] - }, - "preferredPublicName": { - "type": "string", - "description": "An optional field for users to specify how they prefer to be identified.", - "multilingual": "true", - "apiSummary": true, - "validation": [ - "nullable" - ] - }, - "signature": { - "type": "string", - "multilingual": true, - "validation": [ - "nullable" - ] - }, - "url": { - "type": "string", - "validation": [ - "url", - "nullable" - ] - }, - "userName": { - "type": "string", - "apiSummary": true - } - } + "title": "User", + "description": "A registered user.", + "properties": { + "_href": { + "type": "string", + "apiSummary": true, + "readOnly": true + }, + "affiliation": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "authId": { + "type": "integer", + "validation": ["nullable"] + }, + "authStr": { + "type": "string", + "validation": ["nullable"] + }, + "billingAddress": { + "type": "string", + "validation": ["nullable"] + }, + "biography": { + "type": "string", + "multilingual": true, + "apiSummary": true, + "validation": ["nullable"] + }, + "country": { + "type": "string", + "validation": ["nullable"] + }, + "dateRegistered": { + "type": "string", + "validation": ["date:Y-m-d H:i:s"] + }, + "dateValidated": { + "type": "string", + "validation": ["date:Y-m-d H:i:s", "nullable"] + }, + "dateLastEmail": { + "type": "string", + "validation": ["date:Y-m-d H:i:s", "nullable"] + }, + "dateLastLogin": { + "type": "string", + "validation": ["date:Y-m-d H:i:s", "nullable"] + }, + "apiKey": { + "type": "string", + "validation": ["nullable"] + }, + "apiKeyEnabled": { + "type": "boolean", + "validation": ["nullable"] + }, + "inlineHelp": { + "type": "boolean", + "validation": ["nullable"] + }, + "disabled": { + "type": "boolean", + "apiSummary": true + }, + "disabledReason": { + "type": "string", + "validation": ["nullable"] + }, + "email": { + "type": "string", + "apiSummary": true, + "validation": ["email_or_localhost"] + }, + "familyName": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "fullName": { + "type": "string", + "apiSummary": true, + "readOnly": true + }, + "givenName": { + "type": "string", + "multilingual": true + }, + "gossip": { + "type": "string", + "apiSummary": true, + "validation": ["nullable"] + }, + "groups": { + "type": "array", + "apiSummary": true, + "readOnly": true, + "items": { + "$ref": "#/definitions/UserGroup" + } + }, + "id": { + "type": "integer", + "apiSummary": true, + "readOnly": true + }, + "profileImage": { + "type": "object", + "validation": ["nullable"], + "properties": { + "dateUploaded": { + "type": "string" + }, + "name": { + "type": "string" + }, + "uploadName": { + "type": "string" + }, + "height": { + "type": "integer" + }, + "width": { + "type": "integer" + } + } + }, + "interests": { + "type": "array", + "readOnly": true, + "apiSummary": true, + "items": { + "$ref": "#/definitions/UserInterest" + } + }, + "locales": { + "type": "array", + "items": { + "type": "string", + "validation": ["regex:/^[a-z]{2}_[A-Z]{2}(@[a-z]{0,})?$/"] + } + }, + "mailingAddress": { + "type": "string", + "validation": ["nullable"] + }, + "mustChangePassword": { + "type": "boolean" + }, + "orcid": { + "type": "string", + "apiSummary": true, + "validation": ["orcid", "nullable"] + }, + "password": { + "type": "string", + "writeOnly": true + }, + "phone": { + "type": "string", + "validation": ["nullable"] + }, + "preferredPublicName": { + "type": "string", + "description": "An optional field for users to specify how they prefer to be identified.", + "multilingual": "true", + "apiSummary": true, + "validation": ["nullable"] + }, + "signature": { + "type": "string", + "multilingual": true, + "validation": ["nullable"] + }, + "url": { + "type": "string", + "validation": ["url", "nullable"] + }, + "userName": { + "type": "string", + "apiSummary": true + } + } } diff --git a/libs/ojs/ojs-client/src/lib/schemas/userGroup.json b/libs/ojs/ojs-client/src/lib/schemas/userGroup.json index bda0c2d6..72a89b08 100755 --- a/libs/ojs/ojs-client/src/lib/schemas/userGroup.json +++ b/libs/ojs/ojs-client/src/lib/schemas/userGroup.json @@ -1,30 +1,28 @@ { - "title": "UserGroup", - "description": "A user group assigned to one of the allowed roles.", - "properties": { - "abbrev": { - "$ref": "#/definitions/LocaleObject" - }, - "id": { - "type": "integer" - }, - "name": { - "$ref": "#/definitions/LocaleObject" - }, - "permitSelfRegistration": { - "type": "boolean" - }, - "recommendOnly": { - "type": "boolean" - }, - "roleId": { - "type": "integer", - "validation": [ - "in:16,1,17,65536,4096,4097,1048576,209715" - ] - }, - "showTitle": { - "type": "boolean" - } - } + "title": "UserGroup", + "description": "A user group assigned to one of the allowed roles.", + "properties": { + "abbrev": { + "$ref": "#/definitions/LocaleObject" + }, + "id": { + "type": "integer" + }, + "name": { + "$ref": "#/definitions/LocaleObject" + }, + "permitSelfRegistration": { + "type": "boolean" + }, + "recommendOnly": { + "type": "boolean" + }, + "roleId": { + "type": "integer", + "validation": ["in:16,1,17,65536,4096,4097,1048576,209715"] + }, + "showTitle": { + "type": "boolean" + } + } } diff --git a/libs/ojs/ojs-relatex/README.md b/libs/ojs/ojs-relatex/README.md index b13979ff..2b6aa7da 100755 --- a/libs/ojs/ojs-relatex/README.md +++ b/libs/ojs/ojs-relatex/README.md @@ -7,20 +7,20 @@ Convert ojs data to relatex ## Contents -* [ojs-relatex](#ojs-relatex) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ojs-relatex](#ojs-relatex) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -42,7 +42,7 @@ pnpm add ojs-relatex ## API -*** +--- ### `ojsRelatex()` @@ -54,15 +54,15 @@ ojsRelatex(node: Node): void; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :------------- | | `node` | `Node`<`Data`> | #### Returns `void` -Defined in: [lib/ojs-relatex.ts:3](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-relatex/src/lib/ojs-relatex.ts#L3) +Defined in: [lib/ojs-relatex.ts:3](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ojs/ojs-relatex/src/lib/ojs-relatex.ts#L3) ## Syntax tree @@ -81,59 +81,31 @@ Defined in: [lib/ojs-relatex.ts:3](https://github.com/TrialAndErrorOrg/parsers/ [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-parse - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast - [ojs-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ojs-relatex diff --git a/libs/ojs/ojs-relatex/project.json b/libs/ojs/ojs-relatex/project.json index cff61012..c3a8fad6 100755 --- a/libs/ojs/ojs-relatex/project.json +++ b/libs/ojs/ojs-relatex/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ojs/ojs-relatex/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "make-publishable": { "executor": "better-nx-tsc:publishable" diff --git a/libs/ojs/ojs-relatex/src/lib/ojs-relatex.spec.ts b/libs/ojs/ojs-relatex/src/lib/ojs-relatex.spec.ts deleted file mode 100755 index 99e8dbac..00000000 --- a/libs/ojs/ojs-relatex/src/lib/ojs-relatex.spec.ts +++ /dev/null @@ -1,10 +0,0 @@ -import {Node} from 'unist' -import { ojs-relatex } from './ojs-relatex.js'; - -describe('ojs-relatex', () => { - - it('should work', () => { - - expect(ojs-relatex({type:'root',children:[]} as Node)).toBeDefined(); - }) -}) diff --git a/libs/ojs/ojs-relatex/src/lib/ojs-relatex.ts b/libs/ojs/ojs-relatex/src/lib/ojs-relatex.ts index 9db99ce2..251b65a9 100755 --- a/libs/ojs/ojs-relatex/src/lib/ojs-relatex.ts +++ b/libs/ojs/ojs-relatex/src/lib/ojs-relatex.ts @@ -1,5 +1,3 @@ -import {Node} from 'unist' +import { Node } from 'unist' -export function ojsRelatex(node: Node){ - -} +export function ojsRelatex(node: Node) {} diff --git a/libs/ooxast/ooxast-util-citation-plugin/CHANGELOG.md b/libs/ooxast/ooxast-util-citation-plugin/CHANGELOG.md index b38d7ce6..e5f24582 100644 --- a/libs/ooxast/ooxast-util-citation-plugin/CHANGELOG.md +++ b/libs/ooxast/ooxast-util-citation-plugin/CHANGELOG.md @@ -6,46 +6,47 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `docx-to-vfile` updated to version `0.8.2` -* `reoff-parse` updated to version `0.3.0` -* `ooxast` updated to version `0.1.4` -* `xast-util-is-element` updated to version `0.1.5` +- `docx-to-vfile` updated to version `0.8.2` +- `reoff-parse` updated to version `0.3.0` +- `ooxast` updated to version `0.1.4` +- `xast-util-is-element` updated to version `0.1.5` ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-citation-plugin-0.1.1...ooxast-util-citation-plugin-0.1.2) (2023-03-29) ### Dependency Updates -* `docx-to-vfile` updated to version `0.6.1` -* `reoff-parse` updated to version `0.2.7` +- `docx-to-vfile` updated to version `0.6.1` +- `reoff-parse` updated to version `0.2.7` + ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-citation-plugin-0.1.0...ooxast-util-citation-plugin-0.1.1) (2023-03-14) ### Dependency Updates -* `docx-to-vfile` updated to version `0.5.3` -* `reoff-parse` updated to version `0.2.5` -* `ooxast` updated to version `0.1.3` -* `xast-util-is-element` updated to version `0.1.4` +- `docx-to-vfile` updated to version `0.5.3` +- `reoff-parse` updated to version `0.2.5` +- `ooxast` updated to version `0.1.3` +- `xast-util-is-element` updated to version `0.1.4` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `docx-to-vfile` updated to version `0.5.1` -* `reoff-parse` updated to version `0.2.2` -* `ooxast` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.2` +- `docx-to-vfile` updated to version `0.5.1` +- `reoff-parse` updated to version `0.2.2` +- `ooxast` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.2` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **citations:** infer plugin type, don't break as often ([fd6a8af](https://github.com/TrialAndErrorOrg/parsers/commit/fd6a8af17f5900025cb2c23f3626113e617ba6bb)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **citations:** infer plugin type, don't break as often ([fd6a8af](https://github.com/TrialAndErrorOrg/parsers/commit/fd6a8af17f5900025cb2c23f3626113e617ba6bb)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/ooxast/ooxast-util-citation-plugin/README.md b/libs/ooxast/ooxast-util-citation-plugin/README.md index 65e961f0..bc403886 100755 --- a/libs/ooxast/ooxast-util-citation-plugin/README.md +++ b/libs/ooxast/ooxast-util-citation-plugin/README.md @@ -11,20 +11,20 @@ Not completely accurate, as it just identifies the first citation plugin it find ## Contents -* [ooxast-util-citation-plugin](#ooxast-util-citation-plugin) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-citation-plugin](#ooxast-util-citation-plugin) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -46,7 +46,7 @@ pnpm add ooxast-util-citation-plugin ## API -*** +--- ### `detectCitePlugin()` @@ -58,15 +58,15 @@ detectCitePlugin(node: Node): string; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :------------- | | `node` | `Node`<`Data`> | #### Returns `string` -Defined in: [lib/ooxast-util-citation-plugin.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citation-plugin/src/lib/ooxast-util-citation-plugin.ts#L8) +Defined in: [lib/ooxast-util-citation-plugin.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citation-plugin/src/lib/ooxast-util-citation-plugin.ts#L8) ## Syntax tree @@ -85,59 +85,31 @@ Defined in: [lib/ooxast-util-citation-plugin.ts:8](https://github.com/TrialAndE [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-parse - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast - [ooxast-util-citation-plugin]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast-util-citation-plugin diff --git a/libs/ooxast/ooxast-util-citation-plugin/package.json b/libs/ooxast/ooxast-util-citation-plugin/package.json index e13820f1..84b41b12 100755 --- a/libs/ooxast/ooxast-util-citation-plugin/package.json +++ b/libs/ooxast/ooxast-util-citation-plugin/package.json @@ -32,5 +32,11 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "xast-util-is-element": "*", + "unist-util-visit": "^4.1.2", + "xast-util-to-string": "^2.0.1" + } } diff --git a/libs/ooxast/ooxast-util-citation-plugin/project.json b/libs/ooxast/ooxast-util-citation-plugin/project.json index b008415c..fa0f72b6 100755 --- a/libs/ooxast/ooxast-util-citation-plugin/project.json +++ b/libs/ooxast/ooxast-util-citation-plugin/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-citation-plugin/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ooxast/ooxast-util-citation-plugin/src/lib/ooxast-util-citation-plugin.ts b/libs/ooxast/ooxast-util-citation-plugin/src/lib/ooxast-util-citation-plugin.ts index a8378c8b..0fc6afdf 100755 --- a/libs/ooxast/ooxast-util-citation-plugin/src/lib/ooxast-util-citation-plugin.ts +++ b/libs/ooxast/ooxast-util-citation-plugin/src/lib/ooxast-util-citation-plugin.ts @@ -26,9 +26,7 @@ export function detectCitePlugin(node: Node) { return } - if ( - Buffer.from(text, 'base64').toString().toLowerCase().includes('citavi') - ) { + if (Buffer.from(text, 'base64').toString().toLowerCase().includes('citavi')) { counter.citavi++ return } diff --git a/libs/ooxast/ooxast-util-citations/CHANGELOG.md b/libs/ooxast/ooxast-util-citations/CHANGELOG.md index e81a6ea9..2a9b22de 100644 --- a/libs/ooxast/ooxast-util-citations/CHANGELOG.md +++ b/libs/ooxast/ooxast-util-citations/CHANGELOG.md @@ -6,79 +6,78 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `csl-consolidate` updated to version `0.1.3` -* `ooxast` updated to version `0.1.4` -* `ooxast-util-get-style` updated to version `0.2.2` -* `parse-text-cite` updated to version `0.2.3` -* `xast-util-is-element` updated to version `0.1.5` -* `xast-util-select` updated to version `0.1.3` -* `ooxast-util-citation-plugin` updated to version `0.1.3` +- `csl-consolidate` updated to version `0.1.3` +- `ooxast` updated to version `0.1.4` +- `ooxast-util-get-style` updated to version `0.2.2` +- `parse-text-cite` updated to version `0.2.3` +- `xast-util-is-element` updated to version `0.1.5` +- `xast-util-select` updated to version `0.1.3` +- `ooxast-util-citation-plugin` updated to version `0.1.3` ### Features -* **ooxast-util-citations:** add optional VFile message parameter to findRef and constructCitation functions ([801ae49](https://github.com/TrialAndErrorOrg/parsers/commit/801ae49550c529cb79b2652fdb6da18456e37e31)) - +- **ooxast-util-citations:** add optional VFile message parameter to findRef and constructCitation functions ([801ae49](https://github.com/TrialAndErrorOrg/parsers/commit/801ae49550c529cb79b2652fdb6da18456e37e31)) ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-citations-0.1.1...ooxast-util-citations-0.1.2) (2023-03-29) ### Dependency Updates -* `ooxast-util-get-style` updated to version `0.2.0` -* `parse-text-cite` updated to version `0.2.1` -* `ooxast-util-citation-plugin` updated to version `0.1.2` +- `ooxast-util-get-style` updated to version `0.2.0` +- `parse-text-cite` updated to version `0.2.1` +- `ooxast-util-citation-plugin` updated to version `0.1.2` ### Bug Fixes -* **ooxast-util-citations:** fix slight issues ([975bc0f](https://github.com/TrialAndErrorOrg/parsers/commit/975bc0f55362d220e9ea14334ece8c22c63b038c)) -* **ooxast-util-citations:** fix slight issues ([b361dc5](https://github.com/TrialAndErrorOrg/parsers/commit/b361dc5bcea0a31c3e85530fc046884a870cb637)) +- **ooxast-util-citations:** fix slight issues ([975bc0f](https://github.com/TrialAndErrorOrg/parsers/commit/975bc0f55362d220e9ea14334ece8c22c63b038c)) +- **ooxast-util-citations:** fix slight issues ([b361dc5](https://github.com/TrialAndErrorOrg/parsers/commit/b361dc5bcea0a31c3e85530fc046884a870cb637)) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-citations-0.1.0...ooxast-util-citations-0.1.1) (2023-03-14) ### Dependency Updates -* `csl-consolidate` updated to version `0.1.1` -* `ooxast` updated to version `0.1.3` -* `ooxast-util-get-style` updated to version `0.1.2` -* `parse-text-cite` updated to version `0.1.3` -* `xast-util-is-element` updated to version `0.1.4` -* `xast-util-select` updated to version `0.1.2` -* `ooxast-util-citation-plugin` updated to version `0.1.1` +- `csl-consolidate` updated to version `0.1.1` +- `ooxast` updated to version `0.1.3` +- `ooxast-util-get-style` updated to version `0.1.2` +- `parse-text-cite` updated to version `0.1.3` +- `xast-util-is-element` updated to version `0.1.4` +- `xast-util-select` updated to version `0.1.2` +- `ooxast-util-citation-plugin` updated to version `0.1.1` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `csl-consolidate` updated to version `0.1.0` -* `ooxast` updated to version `0.1.2` -* `ooxast-util-get-style` updated to version `0.1.1` -* `parse-text-cite` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.2` -* `xast-util-select` updated to version `0.1.1` -* `ooxast-util-citation-plugin` updated to version `0.1.0` +- `csl-consolidate` updated to version `0.1.0` +- `ooxast` updated to version `0.1.2` +- `ooxast-util-get-style` updated to version `0.1.1` +- `parse-text-cite` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.2` +- `xast-util-select` updated to version `0.1.1` +- `ooxast-util-citation-plugin` updated to version `0.1.0` ### Features -* added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) -* **citations:** infer plugin type, don't break as often ([fd6a8af](https://github.com/TrialAndErrorOrg/parsers/commit/fd6a8af17f5900025cb2c23f3626113e617ba6bb)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) -* it... works ([cf52c8d](https://github.com/TrialAndErrorOrg/parsers/commit/cf52c8d4e0e45a1364ad7be39ca535593835c3ff)) -* **parser:** give up on efficient parsing for now ([92b9c45](https://github.com/TrialAndErrorOrg/parsers/commit/92b9c45361dbf38d7f9be244270ef81e40facd8c)) -* **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) -* **parser:** remember og res ([c46a740](https://github.com/TrialAndErrorOrg/parsers/commit/c46a740649051d9bb1d021f8c82c442ef6580215)) -* remove nx cloud again because it's a bitch ([4c546e3](https://github.com/TrialAndErrorOrg/parsers/commit/4c546e3a77a3618fb64665f6318eb567e440c309)) -* **reoff:** reoff clean plugin ([75b9016](https://github.com/TrialAndErrorOrg/parsers/commit/75b901685f856438750e9e11ac4d62a070f73c2c)) -* **reoff:** utiltiy to clean ooxast tree ([0827207](https://github.com/TrialAndErrorOrg/parsers/commit/082720772ffe4caff8d812962c2f42d4c71b5747)) -* **reoff:** validate csl bib against crossref api ([32f6538](https://github.com/TrialAndErrorOrg/parsers/commit/32f6538e745dac563c0d4c5ed9fd77c0e03af6d5)) - +- added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) +- **citations:** infer plugin type, don't break as often ([fd6a8af](https://github.com/TrialAndErrorOrg/parsers/commit/fd6a8af17f5900025cb2c23f3626113e617ba6bb)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) +- it... works ([cf52c8d](https://github.com/TrialAndErrorOrg/parsers/commit/cf52c8d4e0e45a1364ad7be39ca535593835c3ff)) +- **parser:** give up on efficient parsing for now ([92b9c45](https://github.com/TrialAndErrorOrg/parsers/commit/92b9c45361dbf38d7f9be244270ef81e40facd8c)) +- **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) +- **parser:** remember og res ([c46a740](https://github.com/TrialAndErrorOrg/parsers/commit/c46a740649051d9bb1d021f8c82c442ef6580215)) +- remove nx cloud again because it's a bitch ([4c546e3](https://github.com/TrialAndErrorOrg/parsers/commit/4c546e3a77a3618fb64665f6318eb567e440c309)) +- **reoff:** reoff clean plugin ([75b9016](https://github.com/TrialAndErrorOrg/parsers/commit/75b901685f856438750e9e11ac4d62a070f73c2c)) +- **reoff:** utiltiy to clean ooxast tree ([0827207](https://github.com/TrialAndErrorOrg/parsers/commit/082720772ffe4caff8d812962c2f42d4c71b5747)) +- **reoff:** validate csl bib against crossref api ([32f6538](https://github.com/TrialAndErrorOrg/parsers/commit/32f6538e745dac563c0d4c5ed9fd77c0e03af6d5)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/ooxast/ooxast-util-citations/README.md b/libs/ooxast/ooxast-util-citations/README.md index 5460869a..7e82fdec 100755 --- a/libs/ooxast/ooxast-util-citations/README.md +++ b/libs/ooxast/ooxast-util-citations/README.md @@ -5,24 +5,24 @@ [![npm version](https://badge.fury.io/js/ooxast-util-citations.svg)](https://badge.fury.io/js/ooxast-util-citations) [![npm downloads](https://img.shields.io/npm/dm/ooxast-util-citations.svg)](https://www.npmjs.com/package/ooxast-util-citations) -*[ooxast][ooxast]* util to visit in text office citations. +_[ooxast][ooxast]_ util to visit in text office citations. ## Contents -* [ooxast-util-visit-citations](#ooxast-util-visit-citations) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-visit-citations](#ooxast-util-visit-citations) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -44,7 +44,7 @@ pnpm add ooxast-util-citations ## API -*** +--- ### `constructCitation()` @@ -54,20 +54,20 @@ Construct a citation for Mendeley or Zotero. ```ts constructCitation( - curr: Citation, - type: string, - index: number, + curr: Citation, + type: string, + index: number, bibliography?: Data[]): object; ``` #### Parameters -| Name | Type | Description | -| :------ | :------ | :------ | -| `curr` | [`Citation`](modules.md#citation) | The citation to construct | -| `type` | `string` | The type of citation to construct | -| `index` | `number` | The index of the citation | -| `bibliography?` | `Data`[] | The bibliography to use | +| Name | Type | Description | +| :-------------- | :-------------------------------- | :-------------------------------- | +| `curr` | [`Citation`](modules.md#citation) | The citation to construct | +| `type` | `string` | The type of citation to construct | +| `index` | `number` | The index of the citation | +| `bibliography?` | `Data`[] | The bibliography to use | #### Returns @@ -75,14 +75,14 @@ constructCitation( The constructed citation and instruction -| Member | Type | -| :------ | :------ | +| Member | Type | +| :--------- | :------------------------------------------------ | --------------------------------------------- | | `citation` | [`MendeleyCitation`](modules.md#mendeleycitation) | [`ZoteroCitation`](modules.md#zoterocitation) | -| `instr` | `string` | +| `instr` | `string` | -Defined in: [lib/ooxast-util-citations.ts:197](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L197) +Defined in: [lib/ooxast-util-citations.ts:197](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L197) -*** +--- ### `findCitations()` @@ -94,27 +94,27 @@ findCitations(tree: Node, vfile?: VFile, options?: Options): Root; #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Node`<`Data`> | -| `vfile?` | `VFile` | +| Name | Type | +| :--------- | :------------------------------ | +| `tree` | `Node`<`Data`> | +| `vfile?` | `VFile` | | `options?` | [`Options`](modules.md#options) | #### Returns `Root` -Defined in: [lib/ooxast-util-citations.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L28) +Defined in: [lib/ooxast-util-citations.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L28) -*** +--- ### `citationTypesWithSuffixedForm` > **`Const`** `string`[] -Defined in: [lib/ooxast-util-citations.ts:21](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L21) +Defined in: [lib/ooxast-util-citations.ts:21](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L21) -*** +--- ### `Citation` @@ -124,27 +124,27 @@ Defined in: [lib/ooxast-util-citations.ts:21](https://github.com/TrialAndErrorO > `string` -Defined in: [lib/types.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L6) +Defined in: [lib/types.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L6) ##### `citationItems` > [`CitationItem`](modules.md#citationitem)[] -Defined in: [lib/types.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L7) +Defined in: [lib/types.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L7) ##### `originalText?` > `string` -Defined in: [lib/types.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L9) +Defined in: [lib/types.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L9) ##### `properties` > [`Properties`](modules.md#properties) -Defined in: [lib/types.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L8) +Defined in: [lib/types.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L8) -*** +--- ### `CitationItem` @@ -154,45 +154,45 @@ Defined in: [lib/types.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/m > `string` -Defined in: [lib/types.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L18) +Defined in: [lib/types.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L18) ##### `infix?` > `string` -Defined in: [lib/types.ts:22](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L22) +Defined in: [lib/types.ts:22](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L22) ##### `itemData` > `Data` -Defined in: [lib/types.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L19) +Defined in: [lib/types.ts:19](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L19) ##### `label?` > `string` -Defined in: [lib/types.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L23) +Defined in: [lib/types.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L23) ##### `locator?` > `string` -Defined in: [lib/types.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L24) +Defined in: [lib/types.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L24) ##### `prefix?` > `string` -Defined in: [lib/types.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L20) +Defined in: [lib/types.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L20) ##### `suffix?` > `string` -Defined in: [lib/types.ts:21](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L21) +Defined in: [lib/types.ts:21](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L21) -*** +--- ### `Mendeley` @@ -202,21 +202,21 @@ Defined in: [lib/types.ts:21](https://github.com/TrialAndErrorOrg/parsers/blob/ > `string` -Defined in: [lib/types.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L52) +Defined in: [lib/types.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L52) ##### `plainTextFormattedCitation` > `string` -Defined in: [lib/types.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L53) +Defined in: [lib/types.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L53) ##### `previouslyFormattedCitation` > `string` -Defined in: [lib/types.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L54) +Defined in: [lib/types.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L54) -*** +--- ### `MendeleyCitation` @@ -226,33 +226,33 @@ Defined in: [lib/types.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/ > `string` -Defined in: [lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L40) +Defined in: [lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L40) ##### `citationItems` > [`MendeleyCitationItem`](modules.md#mendeleycitationitem)[] -Defined in: [lib/types.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L41) +Defined in: [lib/types.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L41) ##### `mendeley` > [`Mendeley`](modules.md#mendeley) -Defined in: [lib/types.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L42) +Defined in: [lib/types.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L42) ##### `properties` > [`MendeleyProperties`](modules.md#mendeleyproperties) -Defined in: [lib/types.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L43) +Defined in: [lib/types.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L43) ##### `schema` > `string` -Defined in: [lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L44) +Defined in: [lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L44) -*** +--- ### `MendeleyCitationItem` @@ -262,21 +262,21 @@ Defined in: [lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/ > `string` -Defined in: [lib/types.ts:58](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L58) +Defined in: [lib/types.ts:58](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L58) ##### `itemData` > `Data` -Defined in: [lib/types.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L59) +Defined in: [lib/types.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L59) ##### `uris` > `string`[] -Defined in: [lib/types.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L60) +Defined in: [lib/types.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L60) -*** +--- ### `MendeleyProperties` @@ -286,9 +286,9 @@ Defined in: [lib/types.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/ > `number` -Defined in: [lib/types.ts:48](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L48) +Defined in: [lib/types.ts:48](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L48) -*** +--- ### `Options` @@ -298,21 +298,21 @@ Defined in: [lib/types.ts:48](https://github.com/TrialAndErrorOrg/parsers/blob/ > `Data`[] -Defined in: [lib/ooxast-util-citations.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L23) +Defined in: [lib/ooxast-util-citations.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L23) ##### `log?` > `boolean` -Defined in: [lib/ooxast-util-citations.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L24) +Defined in: [lib/ooxast-util-citations.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L24) ##### `type?` > `"endnote"` | `"citavi"` | `"mendeley"` | `"word"` | `"zotero"` -Defined in: [lib/ooxast-util-citations.ts:25](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L25) +Defined in: [lib/ooxast-util-citations.ts:25](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/ooxast-util-citations.ts#L25) -*** +--- ### `Properties` @@ -322,15 +322,15 @@ Defined in: [lib/ooxast-util-citations.ts:25](https://github.com/TrialAndErrorO > `string` -Defined in: [lib/types.ts:14](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L14) +Defined in: [lib/types.ts:14](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L14) ##### `noteIndex` > `number` -Defined in: [lib/types.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L13) +Defined in: [lib/types.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L13) -*** +--- ### `ZoteroCitation` @@ -340,27 +340,27 @@ Defined in: [lib/types.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/ > `string` -Defined in: [lib/types.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L28) +Defined in: [lib/types.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L28) ##### `citationItems` > [`MendeleyCitationItem`](modules.md#mendeleycitationitem)[] -Defined in: [lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L29) +Defined in: [lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L29) ##### `properties` > [`ZoteroProperties`](modules.md#zoteroproperties) -Defined in: [lib/types.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L30) +Defined in: [lib/types.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L30) ##### `schema` > `string` -Defined in: [lib/types.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L31) +Defined in: [lib/types.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L31) -*** +--- ### `ZoteroProperties` @@ -370,27 +370,27 @@ Defined in: [lib/types.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/ > `string` -Defined in: [lib/types.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L36) +Defined in: [lib/types.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L36) ##### `noteIndex` > `number` -Defined in: [lib/types.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L35) +Defined in: [lib/types.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L35) ##### `plainCitation` > `string` -Defined in: [lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L37) +Defined in: [lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L37) -*** +--- ### `CiteOutput` > (`string` | [`Citation`](modules.md#citation))[] -Defined in: [lib/types.ts:3](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L3) +Defined in: [lib/types.ts:3](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-citations/src/lib/types.ts#L3) ## Syntax tree @@ -409,57 +409,30 @@ Defined in: [lib/types.ts:3](https://github.com/TrialAndErrorOrg/parsers/blob/m [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/ooxast - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast diff --git a/libs/ooxast/ooxast-util-citations/package.json b/libs/ooxast/ooxast-util-citations/package.json index 32cb63cd..83788460 100755 --- a/libs/ooxast/ooxast-util-citations/package.json +++ b/libs/ooxast/ooxast-util-citations/package.json @@ -31,5 +31,20 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "csl-consolidate": "*", + "ooxast": "*", + "ooxast-util-get-style": "*", + "parse-text-cite": "*", + "xast-util-is-element": "*", + "xast-util-select": "*", + "ooxast-util-citation-plugin": "*", + "csl-json": "0.1.0", + "vfile": "^5.3.7", + "similarity": "^1.2.1", + "unist-util-visit-parents": "5.1.3", + "xast-util-to-string": "^2.0.1", + "xastscript": "^3.1.1" + } } diff --git a/libs/ooxast/ooxast-util-citations/project.json b/libs/ooxast/ooxast-util-citations/project.json index 14a5a460..98779619 100755 --- a/libs/ooxast/ooxast-util-citations/project.json +++ b/libs/ooxast/ooxast-util-citations/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-citations/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ooxast/ooxast-util-citations/src/lib/citetree.json b/libs/ooxast/ooxast-util-citations/src/lib/citetree.json index 2d33626a..832b5882 100755 --- a/libs/ooxast/ooxast-util-citations/src/lib/citetree.json +++ b/libs/ooxast/ooxast-util-citations/src/lib/citetree.json @@ -280586,4 +280586,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-get-style/CHANGELOG.md b/libs/ooxast/ooxast-util-get-style/CHANGELOG.md index 8b6c4ea8..0e898583 100644 --- a/libs/ooxast/ooxast-util-get-style/CHANGELOG.md +++ b/libs/ooxast/ooxast-util-get-style/CHANGELOG.md @@ -6,60 +6,59 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast` updated to version `0.1.4` -* `xast-util-select` updated to version `0.1.3` -* `xast-util-is-element` updated to version `0.1.5` +- `ooxast` updated to version `0.1.4` +- `xast-util-select` updated to version `0.1.3` +- `xast-util-is-element` updated to version `0.1.5` ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* **ooxast-util-get-style:** correct tsconfig.lib.json include ([203f185](https://github.com/TrialAndErrorOrg/parsers/commit/203f18532c1142f6c425d057ce71eda90112b974)) -* **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- **ooxast-util-get-style:** correct tsconfig.lib.json include ([203f185](https://github.com/TrialAndErrorOrg/parsers/commit/203f18532c1142f6c425d057ce71eda90112b974)) +- **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) ## [0.2.1](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-get-style-0.2.0...ooxast-util-get-style-0.2.1) (2023-05-30) - ### Bug Fixes -* **ooxast-util-get-style:** change 'w:val' property type from boolean to string in RPrJSON ([bb93a1f](https://github.com/TrialAndErrorOrg/parsers/commit/bb93a1f9b5b5d4ea216a04d80514fe1c80d54001)) +- **ooxast-util-get-style:** change 'w:val' property type from boolean to string in RPrJSON ([bb93a1f](https://github.com/TrialAndErrorOrg/parsers/commit/bb93a1f9b5b5d4ea216a04d80514fe1c80d54001)) ## [0.2.0](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-get-style-0.1.2...ooxast-util-get-style-0.2.0) (2023-03-27) - ### Features -* **ooxast-util-get-style:** improve ([27612f2](https://github.com/TrialAndErrorOrg/parsers/commit/27612f22da9f25a3c6a120b7b1d929f3da6bc28e)) +- **ooxast-util-get-style:** improve ([27612f2](https://github.com/TrialAndErrorOrg/parsers/commit/27612f22da9f25a3c6a120b7b1d929f3da6bc28e)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-get-style-0.1.1...ooxast-util-get-style-0.1.2) (2023-03-14) ### Dependency Updates -* `ooxast` updated to version `0.1.3` -* `xast-util-select` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.4` +- `ooxast` updated to version `0.1.3` +- `xast-util-select` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.4` + ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-get-style-0.1.0...ooxast-util-get-style-0.1.1) (2023-03-09) ### Dependency Updates -* `ooxast` updated to version `0.1.2` -* `xast-util-select` updated to version `0.1.1` -* `xast-util-is-element` updated to version `0.1.2` +- `ooxast` updated to version `0.1.2` +- `xast-util-select` updated to version `0.1.1` +- `xast-util-is-element` updated to version `0.1.2` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `ooxast` updated to version `0.1.0` -* `xast-util-select` updated to version `0.1.0` -* `xast-util-is-element` updated to version `0.1.0` +- `ooxast` updated to version `0.1.0` +- `xast-util-select` updated to version `0.1.0` +- `xast-util-is-element` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **reoff:** parse bibliography through api ([c14ffc5](https://github.com/TrialAndErrorOrg/parsers/commit/c14ffc579f7e9b52b8d72697cd8560920387671e)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **reoff:** parse bibliography through api ([c14ffc5](https://github.com/TrialAndErrorOrg/parsers/commit/c14ffc579f7e9b52b8d72697cd8560920387671e)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/ooxast/ooxast-util-get-style/README.md b/libs/ooxast/ooxast-util-get-style/README.md index 6d0beffc..9ee6cd31 100755 --- a/libs/ooxast/ooxast-util-get-style/README.md +++ b/libs/ooxast/ooxast-util-get-style/README.md @@ -9,20 +9,20 @@ Get style from a `w:p` element. ## Contents -* [ooxast-util-get-style](#ooxast-util-get-style) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-get-style](#ooxast-util-get-style) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -44,7 +44,7 @@ pnpm add ooxast-util-get-style ## API -*** +--- ### `getPStyle()` @@ -57,16 +57,16 @@ getPStyle(p: P): string | null | undefined; #### Parameters | Name | Type | -| :------ | :------ | -| `p` | `P` | +| :--- | :--- | +| `p` | `P` | #### Returns `string` | `null` | `undefined` -Defined in: [lib/ooxast-util-get-pstyle.ts:4](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-get-style/src/lib/ooxast-util-get-pstyle.ts#L4) +Defined in: [lib/ooxast-util-get-pstyle.ts:4](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-get-style/src/lib/ooxast-util-get-pstyle.ts#L4) -*** +--- ### `getRStyle()` @@ -79,32 +79,32 @@ getRStyle(r: P | R): RPrJSON | undefined; #### Parameters | Name | Type | -| :------ | :------ | -| `r` | `P` | `R` | +| :--- | :--- | --- | +| `r` | `P` | `R` | #### Returns [`RPrJSON`](modules.md#rprjson) | `undefined` -Defined in: [lib/ooxast-util-get-rstyle.ts:16](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-get-style/src/lib/ooxast-util-get-rstyle.ts#L16) +Defined in: [lib/ooxast-util-get-rstyle.ts:16](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-get-style/src/lib/ooxast-util-get-rstyle.ts#L16) -*** +--- ### `RPrAttributes` > keyof `RPrMap` -Defined in: [lib/ooxast-util-get-rstyle.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-get-style/src/lib/ooxast-util-get-rstyle.ts#L6) +Defined in: [lib/ooxast-util-get-rstyle.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-get-style/src/lib/ooxast-util-get-rstyle.ts#L6) -*** +--- ### `RPrJSON` -> [`RPrAttributes`](modules.md#rprattributes) *extends* keyof `RPrMap` ? `Partial`<`Record`<`w:${RPrAttributes}`, `NonNullable`<`RPrMap`[[`RPrAttributes`](modules.md#rprattributes)]>[`number`][`"attributes"`] | { +> [`RPrAttributes`](modules.md#rprattributes) _extends_ keyof `RPrMap` ? `Partial`<`Record`<`w:${RPrAttributes}`, `NonNullable`<`RPrMap`[[`RPrAttributes`](modules.md#rprattributes)]>[`number`][`"attributes"`] | { > `w:val`?: `string`; > }>> : `never` -Defined in: [lib/ooxast-util-get-rstyle.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-get-style/src/lib/ooxast-util-get-rstyle.ts#L7) +Defined in: [lib/ooxast-util-get-rstyle.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-get-style/src/lib/ooxast-util-get-rstyle.ts#L7) ## Syntax tree @@ -123,57 +123,30 @@ Defined in: [lib/ooxast-util-get-rstyle.ts:7](https://github.com/TrialAndErrorO [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [ooxast-util-to-jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/ooxast-util-to-jast - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast diff --git a/libs/ooxast/ooxast-util-get-style/package.json b/libs/ooxast/ooxast-util-get-style/package.json index a4dadcef..bfea72c7 100755 --- a/libs/ooxast/ooxast-util-get-style/package.json +++ b/libs/ooxast/ooxast-util-get-style/package.json @@ -31,5 +31,10 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "xast-util-select": "*", + "xast-util-is-element": "*" + } } diff --git a/libs/ooxast/ooxast-util-get-style/project.json b/libs/ooxast/ooxast-util-get-style/project.json index 1c5d1979..06bbd259 100755 --- a/libs/ooxast/ooxast-util-get-style/project.json +++ b/libs/ooxast/ooxast-util-get-style/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-get-style/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ooxast/ooxast-util-markup-to-style/CHANGELOG.md b/libs/ooxast/ooxast-util-markup-to-style/CHANGELOG.md index 7ad07820..2472da0d 100644 --- a/libs/ooxast/ooxast-util-markup-to-style/CHANGELOG.md +++ b/libs/ooxast/ooxast-util-markup-to-style/CHANGELOG.md @@ -6,48 +6,47 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast` updated to version `0.1.4` -* `xast-util-is-element` updated to version `0.1.5` -* `ooxast-util-get-style` updated to version `0.2.2` -* `xast-util-select` updated to version `0.1.3` +- `ooxast` updated to version `0.1.4` +- `xast-util-is-element` updated to version `0.1.5` +- `ooxast-util-get-style` updated to version `0.2.2` +- `xast-util-select` updated to version `0.1.3` ### Features -* book-converter! ([f2f74cb](https://github.com/TrialAndErrorOrg/parsers/commit/f2f74cb3f6d9a2ccee2e7fa8f08a435c8cf313a4)) - +- book-converter! ([f2f74cb](https://github.com/TrialAndErrorOrg/parsers/commit/f2f74cb3f6d9a2ccee2e7fa8f08a435c8cf313a4)) ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* stupid package.json issue ([e27ee3e](https://github.com/TrialAndErrorOrg/parsers/commit/e27ee3ed91619e8adb0de6ed96af99da0ec79198)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- stupid package.json issue ([e27ee3e](https://github.com/TrialAndErrorOrg/parsers/commit/e27ee3ed91619e8adb0de6ed96af99da0ec79198)) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-markup-to-style-0.1.0...ooxast-util-markup-to-style-0.1.1) (2023-05-30) ### Dependency Updates -* `ooxast-util-get-style` updated to version `0.2.1` -## [0.1.0](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-markup-to-style-0.0.2...ooxast-util-markup-to-style-0.1.0) (2023-03-29) +- `ooxast-util-get-style` updated to version `0.2.1` +## [0.1.0](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-markup-to-style-0.0.2...ooxast-util-markup-to-style-0.1.0) (2023-03-29) ### Features -* **ooxast-util-markup-to-style:** actually traverse trees lmao ([954233a](https://github.com/TrialAndErrorOrg/parsers/commit/954233a5237c1f2afa0fceabbe923655174698fb)) +- **ooxast-util-markup-to-style:** actually traverse trees lmao ([954233a](https://github.com/TrialAndErrorOrg/parsers/commit/954233a5237c1f2afa0fceabbe923655174698fb)) ## [0.0.2](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-markup-to-style-0.0.1...ooxast-util-markup-to-style-0.0.2) (2023-03-27) ### Dependency Updates -* `ooxast-util-get-style` updated to version `0.2.0` +- `ooxast-util-get-style` updated to version `0.2.0` ### Bug Fixes -* **ooxast-util-markup-to-style:** make better docs ([69fd7c7](https://github.com/TrialAndErrorOrg/parsers/commit/69fd7c75fd2830a54950a3cc2d295d79ea9cf8a6)) +- **ooxast-util-markup-to-style:** make better docs ([69fd7c7](https://github.com/TrialAndErrorOrg/parsers/commit/69fd7c75fd2830a54950a3cc2d295d79ea9cf8a6)) ## 0.0.1 (2023-03-27) ### Dependency Updates -* `ooxast` updated to version `0.1.3` -* `xast-util-is-element` updated to version `0.1.4` -* `ooxast-util-get-style` updated to version `0.1.2` -* `xast-util-select` updated to version `0.1.2` +- `ooxast` updated to version `0.1.3` +- `xast-util-is-element` updated to version `0.1.4` +- `ooxast-util-get-style` updated to version `0.1.2` +- `xast-util-select` updated to version `0.1.2` diff --git a/libs/ooxast/ooxast-util-markup-to-style/README.md b/libs/ooxast/ooxast-util-markup-to-style/README.md index 74c65cb0..121819d8 100644 --- a/libs/ooxast/ooxast-util-markup-to-style/README.md +++ b/libs/ooxast/ooxast-util-markup-to-style/README.md @@ -2,47 +2,48 @@ > This repository is automatically generated from the [main parser monorepo](https://github.com/TrialAndErrorOrg/parsers). Please submit any issues or pull requests there. # ooxast-util-markup-to-style + [![npm version](https://badge.fury.io/js/ooxast-util-markup-to-style.svg)](https://badge.fury.io/js/ooxast-util-markup-to-style) [![npm downloads](https://img.shields.io/npm/dm/ooxast-util-markup-to-style.svg)](https://www.npmjs.com/package/ooxast-util-markup-to-style) Find certain markup in an ooxast tree and turn it into styles. ## Contents -* [ooxast-util-markup-to-style](#ooxast-util-markup-to-style) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [`markupToStyle()`](#markuptostyle) - * [Signature](#signature) - * [Type parameters](#type-parameters) - * [Parameters](#parameters) - * [Returns](#returns) - * [`Option`](#option) - * [Properties](#properties) - * [`ignorePunctuation?`](#ignorepunctuation) - * [Default](#default) - * [`markup`](#markup) - * [Example](#example) - * [Example](#example-1) - * [Example](#example-2) - * [Example](#example-3) - * [`matchAll?`](#matchall) - * [Default](#default-1) - * [`matchFull?`](#matchfull) - * [Default](#default-2) - * [`style`](#style) - * [Example](#example-4) - * [`Options`](#options) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-markup-to-style](#ooxast-util-markup-to-style) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [`markupToStyle()`](#markuptostyle) + - [Signature](#signature) + - [Type parameters](#type-parameters) + - [Parameters](#parameters) + - [Returns](#returns) + - [`Option`](#option) + - [Properties](#properties) + - [`ignorePunctuation?`](#ignorepunctuation) + - [Default](#default) + - [`markup`](#markup) + - [Example](#example) + - [Example](#example-1) + - [Example](#example-2) + - [Example](#example-3) + - [`matchAll?`](#matchall) + - [Default](#default-1) + - [`matchFull?`](#matchfull) + - [Default](#default-2) + - [`style`](#style) + - [Example](#example-4) + - [`Options`](#options) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -68,7 +69,7 @@ pnpm add ooxast-util-markup-to-style ## API -*** +--- ### `markupToStyle()` @@ -80,22 +81,22 @@ markupToStyle(tree: I, options: Options = ...): I; #### Type parameters -* `I` *extends* `P` | `Root` = `Root` +- `I` _extends_ `P` | `Root` = `Root` #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `I` | +| Name | Type | +| :-------- | :------------------------------ | +| `tree` | `I` | | `options` | [`Options`](modules.md#options) | #### Returns `I` -Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:87](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L87) +Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:87](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L87) -*** +--- ### `Option` @@ -114,7 +115,7 @@ Likewise, if `markup: 'w:b'` is specified and only a period at the end of the pa true -Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L59) +Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L59) ##### `markup` @@ -209,7 +210,7 @@ You can also specify a matcher function which takes a JSON representation of the ###### Example ```ts -['w:b', 'w:i'] +;['w:b', 'w:i'] ``` ###### Example @@ -223,10 +224,10 @@ Match text that is bold and italic, and red: ###### Example ```ts -(rPr) => rPr['w:b'] && rPr['w:i'] && rPr['w:color']?.['w:val'] === 'FF0000' +;(rPr) => rPr['w:b'] && rPr['w:i'] && rPr['w:color']?.['w:val'] === 'FF0000' ``` -Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L23) +Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:23](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L23) ##### `matchAll?` @@ -236,10 +237,10 @@ If true (default), the style is applied if all of the markup elements are presen If false, the style is applied if any of the markup elements are present. -*Example* -If `['b', 'i']` is specified with `matchAll: true`, the style will only be applied if the text is bold *and* italic. +_Example_ +If `['b', 'i']` is specified with `matchAll: true`, the style will only be applied if the text is bold _and_ italic. -If `['b', 'i']` is specified with `matchAll: false`, the style will be applied if the text is bold *or* italic. +If `['b', 'i']` is specified with `matchAll: false`, the style will be applied if the text is bold _or_ italic. ###### Default @@ -247,7 +248,7 @@ true Does not apply if `markup` is a function. -Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L44) +Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L44) ##### `matchFull?` @@ -259,7 +260,7 @@ Whether the entire paragraph should contain the markup, or the markup can be pre true -Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:50](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L50) +Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:50](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L50) ##### `style` @@ -273,9 +274,9 @@ The style to apply if the markup is present. 'Heading 1' ``` -Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L29) +Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L29) -*** +--- ### `Options` @@ -285,20 +286,20 @@ Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts ```ts const options: Options = [ -// find all paragraphs that are bold and larger than 24pt and make it a Title - { - markup: (rPr) => rPr['w:b'] && rPr['w:sz'] && rPr['w:sz']['w:val'] > 24, - style: 'Title', - }, -// find all paragraphs that are strikethrough text and make it a Comment - { - markup: 'w:strike', - style: 'Comment', - }, + // find all paragraphs that are bold and larger than 24pt and make it a Title + { + markup: (rPr) => rPr['w:b'] && rPr['w:sz'] && rPr['w:sz']['w:val'] > 24, + style: 'Title', + }, + // find all paragraphs that are strikethrough text and make it a Comment + { + markup: 'w:strike', + style: 'Comment', + }, ] ``` -Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:80](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L80) +Defined in: [ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts:80](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-markup-to-style/src/lib/ooxast-util-markup-to-style.ts#L80) ## Syntax tree @@ -319,59 +320,31 @@ This package uses the [ooxast][ooxast] syntax tree. [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-parse - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast - [ooxast-util-markup-to-style]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast-util-markup-to-style diff --git a/libs/ooxast/ooxast-util-markup-to-style/package.json b/libs/ooxast/ooxast-util-markup-to-style/package.json index aa6d7b4f..a2ec98ce 100644 --- a/libs/ooxast/ooxast-util-markup-to-style/package.json +++ b/libs/ooxast/ooxast-util-markup-to-style/package.json @@ -32,5 +32,14 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "xast-util-is-element": "*", + "ooxast-util-get-style": "*", + "xast-util-select": "*", + "unist-util-visit": "^4.1.2", + "xastscript": "^3.1.1", + "xast-util-to-string": "^2.0.1" + } } diff --git a/libs/ooxast/ooxast-util-markup-to-style/project.json b/libs/ooxast/ooxast-util-markup-to-style/project.json index 58366c95..aad576df 100644 --- a/libs/ooxast/ooxast-util-markup-to-style/project.json +++ b/libs/ooxast/ooxast-util-markup-to-style/project.json @@ -81,10 +81,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-markup-to-style/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/vite:test", diff --git a/libs/ooxast/ooxast-util-parse-bib-browser/README.md b/libs/ooxast/ooxast-util-parse-bib-browser/README.md index 70eee86c..ef938f45 100755 --- a/libs/ooxast/ooxast-util-parse-bib-browser/README.md +++ b/libs/ooxast/ooxast-util-parse-bib-browser/README.md @@ -11,23 +11,23 @@ You need to either: set up an anystyle API on your own (very easy to do, just cl ## Contents -* [ooxast-util-parse-bib](#ooxast-util-parse-bib) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Web API](#web-api) - * [Locally](#locally) - * [Use](#use) - * [Options](#options) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-parse-bib](#ooxast-util-parse-bib) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Web API](#web-api) + - [Locally](#locally) + - [Use](#use) + - [Options](#options) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -61,7 +61,7 @@ If no options are provided it will try to use Anystyle on your path, and probabl ## API -*** +--- ### `parseBib()` @@ -73,18 +73,18 @@ parseBib(tree: Node, options: Options): Promise; #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Node`<`Data`> | +| Name | Type | +| :-------- | :------------------------------ | +| `tree` | `Node`<`Data`> | | `options` | [`Options`](modules.md#options) | #### Returns `Promise`<`undefined` | `Data`[]> -Defined in: [lib/ooxast-util-parse-bib-browser.ts:12](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L12) +Defined in: [lib/ooxast-util-parse-bib-browser.ts:12](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L12) -*** +--- ### `Options` @@ -96,23 +96,23 @@ Defined in: [lib/ooxast-util-parse-bib-browser.ts:12](https://github.com/TrialA ```ts { - param: string; + param: string } ``` ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------ | :------- | | `param` | `string` | -Defined in: [lib/ooxast-util-parse-bib-browser.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L6) +Defined in: [lib/ooxast-util-parse-bib-browser.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L6) ##### `apiUrl` > `string` -Defined in: [lib/ooxast-util-parse-bib-browser.ts:5](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L5) +Defined in: [lib/ooxast-util-parse-bib-browser.ts:5](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L5) ##### `headers?` @@ -120,29 +120,29 @@ Defined in: [lib/ooxast-util-parse-bib-browser.ts:5](https://github.com/TrialAn ```ts { - header: string; + header: string } ``` ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------- | :------- | | `header` | `string` | -Defined in: [lib/ooxast-util-parse-bib-browser.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L7) +Defined in: [lib/ooxast-util-parse-bib-browser.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L7) ##### `mailto?` > `string` -Defined in: [lib/ooxast-util-parse-bib-browser.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L8) +Defined in: [lib/ooxast-util-parse-bib-browser.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L8) ##### `overrideId?` > `boolean` -Defined in: [lib/ooxast-util-parse-bib-browser.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L9) +Defined in: [lib/ooxast-util-parse-bib-browser.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/ooxast-util-parse-bib-browser.ts#L9) ## Syntax tree @@ -161,57 +161,30 @@ Defined in: [lib/ooxast-util-parse-bib-browser.ts:9](https://github.com/TrialAn [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [ooxast-util-to-jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/ooxast-util-to-jast - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast diff --git a/libs/ooxast/ooxast-util-parse-bib-browser/package.json b/libs/ooxast/ooxast-util-parse-bib-browser/package.json index 4bf6b4be..a1c7f1bc 100755 --- a/libs/ooxast/ooxast-util-parse-bib-browser/package.json +++ b/libs/ooxast/ooxast-util-parse-bib-browser/package.json @@ -32,5 +32,16 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "ooxast-util-get-style": "*", + "xast-util-is-element": "*", + "xast-util-select": "*", + "csl-consolidate": "*", + "flatry": "^1.0.14", + "axios": "^0.27.2", + "csl-json": "0.1.0", + "xast-util-to-string": "^2.0.1" + } } diff --git a/libs/ooxast/ooxast-util-parse-bib-browser/project.json b/libs/ooxast/ooxast-util-parse-bib-browser/project.json index 138dc40b..5c6ed8d9 100755 --- a/libs/ooxast/ooxast-util-parse-bib-browser/project.json +++ b/libs/ooxast/ooxast-util-parse-bib-browser/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-parse-bib-browser/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/find-bib.ts b/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/find-bib.ts index 5fcba5c3..1198e47a 100755 --- a/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/find-bib.ts +++ b/libs/ooxast/ooxast-util-parse-bib-browser/src/lib/find-bib.ts @@ -18,11 +18,7 @@ export function findBib(tree: Node): string[] | null { const child = doc.children[i] if (isP(child) && getPStyle(child)?.toLowerCase()?.includes('heading')) { const p = toString(child) - if ( - ['references', 'bibliography', 'citations'].includes( - p.toLowerCase().trim() - ) - ) { + if (['references', 'bibliography', 'citations'].includes(p.toLowerCase().trim())) { appendixToggle = true continue } @@ -30,12 +26,7 @@ export function findBib(tree: Node): string[] | null { continue } appendixToggle && - stack.push( - toString(child).replace( - 'ADDIN Mendeley Bibliography CSL_BIBLIOGRAPHY', - '' - ) - ) + stack.push(toString(child).replace('ADDIN Mendeley Bibliography CSL_BIBLIOGRAPHY', '')) } return stack // visit( diff --git a/libs/ooxast/ooxast-util-parse-bib-node/README.md b/libs/ooxast/ooxast-util-parse-bib-node/README.md index 184fcda5..f216a97f 100755 --- a/libs/ooxast/ooxast-util-parse-bib-node/README.md +++ b/libs/ooxast/ooxast-util-parse-bib-node/README.md @@ -11,23 +11,23 @@ You need to either: set up an anystyle API on your own (very easy to do, just cl ## Contents -* [ooxast-util-parse-bib](#ooxast-util-parse-bib) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Web API](#web-api) - * [Locally](#locally) - * [Use](#use) - * [Options](#options) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-parse-bib](#ooxast-util-parse-bib) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Web API](#web-api) + - [Locally](#locally) + - [Use](#use) + - [Options](#options) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -61,7 +61,7 @@ If no options are provided it will try to use Anystyle on your path, and probabl ## API -*** +--- ### `parseBib()` @@ -73,18 +73,18 @@ parseBib(tree: Node, options: Options): Promise; #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Node`<`Data`> | +| Name | Type | +| :-------- | :------------------------------ | +| `tree` | `Node`<`Data`> | | `options` | [`Options`](modules.md#options) | #### Returns `Promise`<`undefined` | `Data`[]> -Defined in: [lib/ooxast-util-parse-bib.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L13) +Defined in: [lib/ooxast-util-parse-bib.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L13) -*** +--- ### `Options` @@ -94,7 +94,7 @@ Defined in: [lib/ooxast-util-parse-bib.ts:13](https://github.com/TrialAndErrorO > `string` -Defined in: [lib/ooxast-util-parse-bib.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L8) +Defined in: [lib/ooxast-util-parse-bib.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L8) ##### `apiParams?` @@ -102,23 +102,23 @@ Defined in: [lib/ooxast-util-parse-bib.ts:8](https://github.com/TrialAndErrorOr ```ts { - param: string; + param: string } ``` ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------ | :------- | | `param` | `string` | -Defined in: [lib/ooxast-util-parse-bib.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L6) +Defined in: [lib/ooxast-util-parse-bib.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L6) ##### `apiUrl?` > `string` -Defined in: [lib/ooxast-util-parse-bib.ts:5](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L5) +Defined in: [lib/ooxast-util-parse-bib.ts:5](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L5) ##### `headers?` @@ -126,29 +126,29 @@ Defined in: [lib/ooxast-util-parse-bib.ts:5](https://github.com/TrialAndErrorOr ```ts { - header: string; + header: string } ``` ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------- | :------- | | `header` | `string` | -Defined in: [lib/ooxast-util-parse-bib.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L7) +Defined in: [lib/ooxast-util-parse-bib.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L7) ##### `mailto?` > `string` -Defined in: [lib/ooxast-util-parse-bib.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L9) +Defined in: [lib/ooxast-util-parse-bib.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L9) ##### `overrideId?` > `boolean` -Defined in: [lib/ooxast-util-parse-bib.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L10) +Defined in: [lib/ooxast-util-parse-bib.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib-node/src/lib/ooxast-util-parse-bib.ts#L10) ## Syntax tree @@ -167,57 +167,30 @@ Defined in: [lib/ooxast-util-parse-bib.ts:10](https://github.com/TrialAndErrorO [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [ooxast-util-to-jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/ooxast-util-to-jast - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast diff --git a/libs/ooxast/ooxast-util-parse-bib-node/package.json b/libs/ooxast/ooxast-util-parse-bib-node/package.json index 700272b7..1f46986c 100755 --- a/libs/ooxast/ooxast-util-parse-bib-node/package.json +++ b/libs/ooxast/ooxast-util-parse-bib-node/package.json @@ -13,7 +13,18 @@ "tree", "ast" ], - "dependencies": {}, + "dependencies": { + "axios": "^0.27.2", + "csl-json": "0.1.0", + "execa": "^6.1.0", + "tmp-promise": "^3.0.3", + "ooxast": "*", + "ooxast-util-get-style": "*", + "xast-util-is-element": "*", + "xast-util-select": "*", + "xast-util-to-string": "^2.0.1", + "csl-consolidate": "*" + }, "typedoc": { "entryPoint": "./src/index.ts", "readmeFile": "./README.md", diff --git a/libs/ooxast/ooxast-util-parse-bib-node/project.json b/libs/ooxast/ooxast-util-parse-bib-node/project.json index a6c8064a..066ddeff 100755 --- a/libs/ooxast/ooxast-util-parse-bib-node/project.json +++ b/libs/ooxast/ooxast-util-parse-bib-node/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-parse-bib-node/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ooxast/ooxast-util-parse-bib-node/src/lib/anystyle-api.ts b/libs/ooxast/ooxast-util-parse-bib-node/src/lib/anystyle-api.ts index b28fa109..5127becb 100755 --- a/libs/ooxast/ooxast-util-parse-bib-node/src/lib/anystyle-api.ts +++ b/libs/ooxast/ooxast-util-parse-bib-node/src/lib/anystyle-api.ts @@ -5,7 +5,7 @@ export async function callAnystyleApi( refs: string, apiUrl: string, params?: { [param: string]: string }, - headers?: { [key: string]: string } + headers?: { [key: string]: string }, ): Promise { const response = await axios.post(apiUrl, refs, { headers: { diff --git a/libs/ooxast/ooxast-util-parse-bib-node/src/lib/anystyle-cli.ts b/libs/ooxast/ooxast-util-parse-bib-node/src/lib/anystyle-cli.ts index b34e62b0..bcbb3b73 100755 --- a/libs/ooxast/ooxast-util-parse-bib-node/src/lib/anystyle-cli.ts +++ b/libs/ooxast/ooxast-util-parse-bib-node/src/lib/anystyle-cli.ts @@ -1,8 +1,5 @@ import { Data as CSL } from 'csl-json' -export async function callAnystyleCLI( - refs: string, - path?: string -): Promise { +export async function callAnystyleCLI(refs: string, path?: string): Promise { if (typeof window === 'undefined') { const { execa } = await import('execa') //@ts-expect error tmp has types, tmp promise does not diff --git a/libs/ooxast/ooxast-util-parse-bib-node/src/lib/bib-to-csl-node.ts b/libs/ooxast/ooxast-util-parse-bib-node/src/lib/bib-to-csl-node.ts index 27ef2244..3cf7a1c0 100755 --- a/libs/ooxast/ooxast-util-parse-bib-node/src/lib/bib-to-csl-node.ts +++ b/libs/ooxast/ooxast-util-parse-bib-node/src/lib/bib-to-csl-node.ts @@ -12,7 +12,7 @@ export async function bibToCSL(tree: Node, options: Options): Promise { const refs = bib.join('\n') if (!apiUrl || (!apiUrl && typeof window !== 'undefined')) { - const { callAnystyleCLI } = await import('./anystyle-cli') + const { callAnystyleCLI } = await import('./anystyle-cli.js') const parsedBib = await callAnystyleCLI(refs, anyStylePath) return fixBib(parsedBib) } diff --git a/libs/ooxast/ooxast-util-parse-bib-node/src/lib/find-bib.ts b/libs/ooxast/ooxast-util-parse-bib-node/src/lib/find-bib.ts index 5fcba5c3..1198e47a 100755 --- a/libs/ooxast/ooxast-util-parse-bib-node/src/lib/find-bib.ts +++ b/libs/ooxast/ooxast-util-parse-bib-node/src/lib/find-bib.ts @@ -18,11 +18,7 @@ export function findBib(tree: Node): string[] | null { const child = doc.children[i] if (isP(child) && getPStyle(child)?.toLowerCase()?.includes('heading')) { const p = toString(child) - if ( - ['references', 'bibliography', 'citations'].includes( - p.toLowerCase().trim() - ) - ) { + if (['references', 'bibliography', 'citations'].includes(p.toLowerCase().trim())) { appendixToggle = true continue } @@ -30,12 +26,7 @@ export function findBib(tree: Node): string[] | null { continue } appendixToggle && - stack.push( - toString(child).replace( - 'ADDIN Mendeley Bibliography CSL_BIBLIOGRAPHY', - '' - ) - ) + stack.push(toString(child).replace('ADDIN Mendeley Bibliography CSL_BIBLIOGRAPHY', '')) } return stack // visit( diff --git a/libs/ooxast/ooxast-util-parse-bib-node/tsconfig.lib.json b/libs/ooxast/ooxast-util-parse-bib-node/tsconfig.lib.json index b13648cb..385f1088 100755 --- a/libs/ooxast/ooxast-util-parse-bib-node/tsconfig.lib.json +++ b/libs/ooxast/ooxast-util-parse-bib-node/tsconfig.lib.json @@ -6,8 +6,5 @@ "types": ["node"] }, "exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"], - "include": [ - "**/*.ts", - "../../csl-consolidate/src/lib/get-crossref-metadata.ts" - ] + "include": ["**/*.ts", "../../csl-consolidate/src/lib/get-crossref-metadata.ts"] } diff --git a/libs/ooxast/ooxast-util-parse-bib/CHANGELOG.md b/libs/ooxast/ooxast-util-parse-bib/CHANGELOG.md index cd362364..1c2c6571 100644 --- a/libs/ooxast/ooxast-util-parse-bib/CHANGELOG.md +++ b/libs/ooxast/ooxast-util-parse-bib/CHANGELOG.md @@ -6,73 +6,73 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast` updated to version `0.1.4` -* `ooxast-util-get-style` updated to version `0.2.2` -* `xast-util-is-element` updated to version `0.1.5` -* `xast-util-select` updated to version `0.1.3` -* `csl-consolidate` updated to version `0.1.3` -* `docx-to-vfile` updated to version `0.8.2` -* `reoff-parse` updated to version `0.3.0` +- `ooxast` updated to version `0.1.4` +- `ooxast-util-get-style` updated to version `0.2.2` +- `xast-util-is-element` updated to version `0.1.5` +- `xast-util-select` updated to version `0.1.3` +- `csl-consolidate` updated to version `0.1.3` +- `docx-to-vfile` updated to version `0.8.2` +- `reoff-parse` updated to version `0.3.0` ### Bug Fixes -* better ([a60c242](https://github.com/TrialAndErrorOrg/parsers/commit/a60c242eae08664e8c1f8976d27ac6d294d2becf)) -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- better ([a60c242](https://github.com/TrialAndErrorOrg/parsers/commit/a60c242eae08664e8c1f8976d27ac6d294d2becf)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-parse-bib-0.1.1...ooxast-util-parse-bib-0.1.2) (2023-03-29) ### Dependency Updates -* `ooxast-util-get-style` updated to version `0.2.0` -* `docx-to-vfile` updated to version `0.6.1` -* `reoff-parse` updated to version `0.2.7` +- `ooxast-util-get-style` updated to version `0.2.0` +- `docx-to-vfile` updated to version `0.6.1` +- `reoff-parse` updated to version `0.2.7` ### Bug Fixes -* **ooxast-util-parse-bib:** split the initials in the csl from anystyle ([4b8e567](https://github.com/TrialAndErrorOrg/parsers/commit/4b8e5673a7ca43022206b2562762f4c8c8f285bd)) +- **ooxast-util-parse-bib:** split the initials in the csl from anystyle ([4b8e567](https://github.com/TrialAndErrorOrg/parsers/commit/4b8e5673a7ca43022206b2562762f4c8c8f285bd)) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-parse-bib-0.1.0...ooxast-util-parse-bib-0.1.1) (2023-03-14) ### Dependency Updates -* `ooxast` updated to version `0.1.3` -* `ooxast-util-get-style` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.4` -* `xast-util-select` updated to version `0.1.2` -* `csl-consolidate` updated to version `0.1.1` -* `docx-to-vfile` updated to version `0.5.3` -* `reoff-parse` updated to version `0.2.5` +- `ooxast` updated to version `0.1.3` +- `ooxast-util-get-style` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.4` +- `xast-util-select` updated to version `0.1.2` +- `csl-consolidate` updated to version `0.1.1` +- `docx-to-vfile` updated to version `0.5.3` +- `reoff-parse` updated to version `0.2.5` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `ooxast` updated to version `0.1.2` -* `ooxast-util-get-style` updated to version `0.1.1` -* `xast-util-is-element` updated to version `0.1.2` -* `xast-util-select` updated to version `0.1.1` -* `csl-consolidate` updated to version `0.1.0` -* `docx-to-vfile` updated to version `0.5.1` -* `reoff-parse` updated to version `0.2.2` +- `ooxast` updated to version `0.1.2` +- `ooxast-util-get-style` updated to version `0.1.1` +- `xast-util-is-element` updated to version `0.1.2` +- `xast-util-select` updated to version `0.1.1` +- `csl-consolidate` updated to version `0.1.0` +- `docx-to-vfile` updated to version `0.5.1` +- `reoff-parse` updated to version `0.2.2` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* citation parser!!! ([cd0e258](https://github.com/TrialAndErrorOrg/parsers/commit/cd0e2586e3d180ccaa30c694a2dbc064a7f8466b)) -* fix type errors ([0ce6946](https://github.com/TrialAndErrorOrg/parsers/commit/0ce6946f228d735dfea5177a941fa23dca474405)) -* it... works ([cf52c8d](https://github.com/TrialAndErrorOrg/parsers/commit/cf52c8d4e0e45a1364ad7be39ca535593835c3ff)) -* **ojs:** mini ojs client to pull data ([a8f616a](https://github.com/TrialAndErrorOrg/parsers/commit/a8f616a7cc83d8b5a1125f7c7244bfb55c4b8f32)) -* remove nx cloud again because it's a bitch ([4c546e3](https://github.com/TrialAndErrorOrg/parsers/commit/4c546e3a77a3618fb64665f6318eb567e440c309)) -* **reoff:** parse bibliography through api ([c14ffc5](https://github.com/TrialAndErrorOrg/parsers/commit/c14ffc579f7e9b52b8d72697cd8560920387671e)) -* **reoff:** validate csl bib against crossref api ([32f6538](https://github.com/TrialAndErrorOrg/parsers/commit/32f6538e745dac563c0d4c5ed9fd77c0e03af6d5)) -* separate out crossref lookup ([93dbee9](https://github.com/TrialAndErrorOrg/parsers/commit/93dbee92b8bb238cc1e0231392ad30440e6dabe5)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- citation parser!!! ([cd0e258](https://github.com/TrialAndErrorOrg/parsers/commit/cd0e2586e3d180ccaa30c694a2dbc064a7f8466b)) +- fix type errors ([0ce6946](https://github.com/TrialAndErrorOrg/parsers/commit/0ce6946f228d735dfea5177a941fa23dca474405)) +- it... works ([cf52c8d](https://github.com/TrialAndErrorOrg/parsers/commit/cf52c8d4e0e45a1364ad7be39ca535593835c3ff)) +- **ojs:** mini ojs client to pull data ([a8f616a](https://github.com/TrialAndErrorOrg/parsers/commit/a8f616a7cc83d8b5a1125f7c7244bfb55c4b8f32)) +- remove nx cloud again because it's a bitch ([4c546e3](https://github.com/TrialAndErrorOrg/parsers/commit/4c546e3a77a3618fb64665f6318eb567e440c309)) +- **reoff:** parse bibliography through api ([c14ffc5](https://github.com/TrialAndErrorOrg/parsers/commit/c14ffc579f7e9b52b8d72697cd8560920387671e)) +- **reoff:** validate csl bib against crossref api ([32f6538](https://github.com/TrialAndErrorOrg/parsers/commit/32f6538e745dac563c0d4c5ed9fd77c0e03af6d5)) +- separate out crossref lookup ([93dbee9](https://github.com/TrialAndErrorOrg/parsers/commit/93dbee92b8bb238cc1e0231392ad30440e6dabe5)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) -* **frontend:** make 3 extra packages just so webpack doesn't import fs ugh ([bed432a](https://github.com/TrialAndErrorOrg/parsers/commit/bed432acf70a7950d981fff2a5bce4a98a4440ff)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) +- **frontend:** make 3 extra packages just so webpack doesn't import fs ugh ([bed432a](https://github.com/TrialAndErrorOrg/parsers/commit/bed432acf70a7950d981fff2a5bce4a98a4440ff)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- types ([1a8bf9c](https://github.com/TrialAndErrorOrg/parsers/commit/1a8bf9c26bcc283c3a9d443e94e238881b9e2336)) diff --git a/libs/ooxast/ooxast-util-parse-bib/README.md b/libs/ooxast/ooxast-util-parse-bib/README.md index 19964a06..71e5141b 100755 --- a/libs/ooxast/ooxast-util-parse-bib/README.md +++ b/libs/ooxast/ooxast-util-parse-bib/README.md @@ -13,23 +13,23 @@ You need to either: set up an anystyle API on your own (very easy to do, just cl ## Contents -* [ooxast-util-parse-bib](#ooxast-util-parse-bib) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Web API](#web-api) - * [Locally](#locally) - * [Use](#use) - * [Options](#options) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-parse-bib](#ooxast-util-parse-bib) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Web API](#web-api) + - [Locally](#locally) + - [Use](#use) + - [Options](#options) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -63,7 +63,7 @@ If no options are provided it will try to use Anystyle on your path, and probabl ## API -*** +--- ### `parseBib()` @@ -75,18 +75,18 @@ parseBib(tree: Node, options: Options): Promise; #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Node`<`Data`> | +| Name | Type | +| :-------- | :------------------------------ | +| `tree` | `Node`<`Data`> | | `options` | [`Options`](modules.md#options) | #### Returns `Promise`<`undefined` | `Data`[]> -Defined in: [lib/ooxast-util-parse-bib.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L13) +Defined in: [lib/ooxast-util-parse-bib.ts:13](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L13) -*** +--- ### `Options` @@ -96,7 +96,7 @@ Defined in: [lib/ooxast-util-parse-bib.ts:13](https://github.com/TrialAndErrorO > `string` -Defined in: [lib/ooxast-util-parse-bib.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L8) +Defined in: [lib/ooxast-util-parse-bib.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L8) ##### `apiParams?` @@ -104,23 +104,23 @@ Defined in: [lib/ooxast-util-parse-bib.ts:8](https://github.com/TrialAndErrorOr ```ts { - param: string; + param: string } ``` ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------ | :------- | | `param` | `string` | -Defined in: [lib/ooxast-util-parse-bib.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L6) +Defined in: [lib/ooxast-util-parse-bib.ts:6](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L6) ##### `apiUrl?` > `string` -Defined in: [lib/ooxast-util-parse-bib.ts:5](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L5) +Defined in: [lib/ooxast-util-parse-bib.ts:5](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L5) ##### `headers?` @@ -128,29 +128,29 @@ Defined in: [lib/ooxast-util-parse-bib.ts:5](https://github.com/TrialAndErrorOr ```ts { - header: string; + header: string } ``` ###### Type declaration -| Member | Type | -| :------ | :------ | +| Member | Type | +| :------- | :------- | | `header` | `string` | -Defined in: [lib/ooxast-util-parse-bib.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L7) +Defined in: [lib/ooxast-util-parse-bib.ts:7](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L7) ##### `mailto?` > `string` -Defined in: [lib/ooxast-util-parse-bib.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L9) +Defined in: [lib/ooxast-util-parse-bib.ts:9](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L9) ##### `overrideId?` > `boolean` -Defined in: [lib/ooxast-util-parse-bib.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L10) +Defined in: [lib/ooxast-util-parse-bib.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-parse-bib/src/lib/ooxast-util-parse-bib.ts#L10) ## Syntax tree @@ -169,57 +169,30 @@ Defined in: [lib/ooxast-util-parse-bib.ts:10](https://github.com/TrialAndErrorO [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [ooxast-util-to-jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/ooxast-util-to-jast - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast diff --git a/libs/ooxast/ooxast-util-parse-bib/package.json b/libs/ooxast/ooxast-util-parse-bib/package.json index 17242715..434160ee 100755 --- a/libs/ooxast/ooxast-util-parse-bib/package.json +++ b/libs/ooxast/ooxast-util-parse-bib/package.json @@ -14,7 +14,18 @@ "citations", "anystyle" ], - "dependencies": {}, + "dependencies": { + "axios": "^0.27.2", + "csl-json": "0.1.0", + "execa": "^6.1.0", + "tmp-promise": "^3.0.3", + "ooxast": "*", + "ooxast-util-get-style": "*", + "xast-util-is-element": "*", + "xast-util-select": "*", + "xast-util-to-string": "^2.0.1", + "csl-consolidate": "*" + }, "typedoc": { "entryPoint": "./src/index.ts", "readmeFile": "./README.md", diff --git a/libs/ooxast/ooxast-util-parse-bib/project.json b/libs/ooxast/ooxast-util-parse-bib/project.json index 0582b3a1..7e2b48fb 100755 --- a/libs/ooxast/ooxast-util-parse-bib/project.json +++ b/libs/ooxast/ooxast-util-parse-bib/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-parse-bib/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ooxast/ooxast-util-parse-bib/src/lib/anystyle-api.ts b/libs/ooxast/ooxast-util-parse-bib/src/lib/anystyle-api.ts index b28fa109..5127becb 100755 --- a/libs/ooxast/ooxast-util-parse-bib/src/lib/anystyle-api.ts +++ b/libs/ooxast/ooxast-util-parse-bib/src/lib/anystyle-api.ts @@ -5,7 +5,7 @@ export async function callAnystyleApi( refs: string, apiUrl: string, params?: { [param: string]: string }, - headers?: { [key: string]: string } + headers?: { [key: string]: string }, ): Promise { const response = await axios.post(apiUrl, refs, { headers: { diff --git a/libs/ooxast/ooxast-util-parse-bib/src/lib/anystyle-cli.ts b/libs/ooxast/ooxast-util-parse-bib/src/lib/anystyle-cli.ts index 1a54c4dd..d8dda4b9 100755 --- a/libs/ooxast/ooxast-util-parse-bib/src/lib/anystyle-cli.ts +++ b/libs/ooxast/ooxast-util-parse-bib/src/lib/anystyle-cli.ts @@ -1,8 +1,5 @@ import { Data as CSL } from 'csl-json' -export async function callAnystyleCLI( - refs: string, - path?: string -): Promise { +export async function callAnystyleCLI(refs: string, path?: string): Promise { if (typeof window === 'undefined') { const { execa } = await import('execa') //@ts-expect error tmp has types, tmp promise does not diff --git a/libs/ooxast/ooxast-util-parse-bib/tsconfig.lib.json b/libs/ooxast/ooxast-util-parse-bib/tsconfig.lib.json index b13648cb..385f1088 100755 --- a/libs/ooxast/ooxast-util-parse-bib/tsconfig.lib.json +++ b/libs/ooxast/ooxast-util-parse-bib/tsconfig.lib.json @@ -6,8 +6,5 @@ "types": ["node"] }, "exclude": ["**/*.spec.ts", "**/*.test.ts", "jest.config.ts"], - "include": [ - "**/*.ts", - "../../csl-consolidate/src/lib/get-crossref-metadata.ts" - ] + "include": ["**/*.ts", "../../csl-consolidate/src/lib/get-crossref-metadata.ts"] } diff --git a/libs/ooxast/ooxast-util-properties/.eslintrc.json b/libs/ooxast/ooxast-util-properties/.eslintrc.json index 19a99c9d..3456be9b 100644 --- a/libs/ooxast/ooxast-util-properties/.eslintrc.json +++ b/libs/ooxast/ooxast-util-properties/.eslintrc.json @@ -1,32 +1,17 @@ { - "extends": [ - "../../../.eslintrc.json" - ], - "ignorePatterns": [ - "!**/*" - ], + "extends": ["../../../.eslintrc.json"], + "ignorePatterns": ["!**/*"], "overrides": [ { - "files": [ - "*.ts", - "*.tsx", - "*.js", - "*.jsx" - ], + "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": {} }, { - "files": [ - "*.ts", - "*.tsx" - ], + "files": ["*.ts", "*.tsx"], "rules": {} }, { - "files": [ - "*.js", - "*.jsx" - ], + "files": ["*.js", "*.jsx"], "rules": {} } ] diff --git a/libs/ooxast/ooxast-util-properties/CHANGELOG.md b/libs/ooxast/ooxast-util-properties/CHANGELOG.md index d64ec5e7..965ecc6b 100644 --- a/libs/ooxast/ooxast-util-properties/CHANGELOG.md +++ b/libs/ooxast/ooxast-util-properties/CHANGELOG.md @@ -4,56 +4,52 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-properties-0.1.0...ooxast-util-properties-0.1.1) (2023-03-09) - ### Bug Fixes -* **ooxast-util-properties:** actually fix project.json config ([caf0e79](https://github.com/TrialAndErrorOrg/parsers/commit/caf0e79b0e2383f2053f7db5678be56d793348dd)) +- **ooxast-util-properties:** actually fix project.json config ([caf0e79](https://github.com/TrialAndErrorOrg/parsers/commit/caf0e79b0e2383f2053f7db5678be56d793348dd)) ## 0.1.0 (2023-03-09) ### Dependency Updates -* `xast-util-is-element` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.2` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* **ooxast-util-properties:** fix project.json config ([0bf1339](https://github.com/TrialAndErrorOrg/parsers/commit/0bf133942c01978c95a058165730a8af95e6fb3d)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- **ooxast-util-properties:** fix project.json config ([0bf1339](https://github.com/TrialAndErrorOrg/parsers/commit/0bf133942c01978c95a058165730a8af95e6fb3d)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) ## 0.1.0 (2023-03-09) ### Dependency Updates -* `xast-util-is-element` updated to version `0.1.0` +- `xast-util-is-element` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) ## 0.1.0 (2023-03-09) ### Dependency Updates -* `xast-util-is-element` updated to version `0.1.0` +- `xast-util-is-element` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/ooxast/ooxast-util-properties/README.md b/libs/ooxast/ooxast-util-properties/README.md index 8e6abd10..9c19a1a8 100644 --- a/libs/ooxast/ooxast-util-properties/README.md +++ b/libs/ooxast/ooxast-util-properties/README.md @@ -9,20 +9,20 @@ Return the properties of an `ooxast` node as a JSON object ## Contents -* [ooxast-util-properties](#ooxast-util-properties) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-properties](#ooxast-util-properties) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -44,7 +44,7 @@ pnpm add ooxast-util-properties ## API -*** +--- ### `getPr()` @@ -56,17 +56,17 @@ getPr(node: Element): PrObject; #### Parameters -| Name | Type | -| :------ | :------ | +| Name | Type | +| :----- | :-------- | | `node` | `Element` | #### Returns [`PrObject`](modules.md#probject) -Defined in: [lib/ooxast-util-properties.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-properties/src/lib/ooxast-util-properties.ts#L35) +Defined in: [lib/ooxast-util-properties.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-properties/src/lib/ooxast-util-properties.ts#L35) -*** +--- ### `PrObject` @@ -91,59 +91,31 @@ Defined in: [lib/ooxast-util-properties.ts:35](https://github.com/TrialAndError [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-parse - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast - [ooxast-util-properties]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast-util-properties diff --git a/libs/ooxast/ooxast-util-properties/package.json b/libs/ooxast/ooxast-util-properties/package.json index b84e5aff..7a0cf845 100644 --- a/libs/ooxast/ooxast-util-properties/package.json +++ b/libs/ooxast/ooxast-util-properties/package.json @@ -30,5 +30,8 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "xast-util-is-element": "*" + } } diff --git a/libs/ooxast/ooxast-util-properties/project.json b/libs/ooxast/ooxast-util-properties/project.json index 49787783..e32f08a8 100644 --- a/libs/ooxast/ooxast-util-properties/project.json +++ b/libs/ooxast/ooxast-util-properties/project.json @@ -37,10 +37,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-properties/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "deploy": { "executor": "ngx-deploy-npm:deploy", diff --git a/libs/ooxast/ooxast-util-properties/src/lib/ooxast-util-properties.ts b/libs/ooxast/ooxast-util-properties/src/lib/ooxast-util-properties.ts index 2c89aff6..f285f458 100644 --- a/libs/ooxast/ooxast-util-properties/src/lib/ooxast-util-properties.ts +++ b/libs/ooxast/ooxast-util-properties/src/lib/ooxast-util-properties.ts @@ -24,8 +24,7 @@ const reducePr = (nodes: Element[] | undefined): PrObject => { return { ...acc, [patchedName]: - Object.keys(patchedAttrs)?.length || - Object.keys(patchedChildren)?.length + Object.keys(patchedAttrs)?.length || Object.keys(patchedChildren)?.length ? { ...patchedAttrs, ...patchedChildren } : true, } @@ -35,9 +34,7 @@ const reducePr = (nodes: Element[] | undefined): PrObject => { export function getPr(node: Element): PrObject { const prName = `${node.name}Pr` - const pr = node.children.find( - (child) => child.type === 'element' && child.name.includes(prName) - ) + const pr = node.children.find((child) => child.type === 'element' && child.name.includes(prName)) if (!(pr && isElement(pr))) { return {} diff --git a/libs/ooxast/ooxast-util-properties/tsconfig.spec.json b/libs/ooxast/ooxast-util-properties/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/ooxast/ooxast-util-properties/tsconfig.spec.json +++ b/libs/ooxast/ooxast-util-properties/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/ooxast/ooxast-util-remove-rsid/CHANGELOG.md b/libs/ooxast/ooxast-util-remove-rsid/CHANGELOG.md index 2be10392..822dc810 100644 --- a/libs/ooxast/ooxast-util-remove-rsid/CHANGELOG.md +++ b/libs/ooxast/ooxast-util-remove-rsid/CHANGELOG.md @@ -6,68 +6,70 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `xast-util-select` updated to version `0.1.3` -* `ooxast` updated to version `0.1.4` -* `utils-misc` updated to version `0.1.0` -* `xast-util-is-element` updated to version `0.1.5` -* `ooxast-util-get-style` updated to version `0.2.2` +- `xast-util-select` updated to version `0.1.3` +- `ooxast` updated to version `0.1.4` +- `utils-misc` updated to version `0.1.0` +- `xast-util-is-element` updated to version `0.1.5` +- `ooxast-util-get-style` updated to version `0.2.2` ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* make typecheck work sort of ([d6a2eb6](https://github.com/TrialAndErrorOrg/parsers/commit/d6a2eb690a06d376043309f8bea6f418a4ff16ec)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- make typecheck work sort of ([d6a2eb6](https://github.com/TrialAndErrorOrg/parsers/commit/d6a2eb690a06d376043309f8bea6f418a4ff16ec)) ## [0.2.0](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-remove-rsid-0.1.2...ooxast-util-remove-rsid-0.2.0) (2023-05-30) ### Dependency Updates -* `ooxast-util-get-style` updated to version `0.2.1` +- `ooxast-util-get-style` updated to version `0.2.1` ### Features -* **ooxast-util-remove-rsid.ts:** import xast-util-to-string to be able to convert nodes to string ([5d03a25](https://github.com/TrialAndErrorOrg/parsers/commit/5d03a25bdbae077af4222bee4920e9c4b5533273)) +- **ooxast-util-remove-rsid.ts:** import xast-util-to-string to be able to convert nodes to string ([5d03a25](https://github.com/TrialAndErrorOrg/parsers/commit/5d03a25bdbae077af4222bee4920e9c4b5533273)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-remove-rsid-0.1.1...ooxast-util-remove-rsid-0.1.2) (2023-03-14) ### Dependency Updates -* `xast-util-select` updated to version `0.1.2` -* `ooxast` updated to version `0.1.3` -* `utils-misc` updated to version `0.1.0` -* `xast-util-is-element` updated to version `0.1.4` +- `xast-util-select` updated to version `0.1.2` +- `ooxast` updated to version `0.1.3` +- `utils-misc` updated to version `0.1.0` +- `xast-util-is-element` updated to version `0.1.4` + ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-remove-rsid-0.1.0...ooxast-util-remove-rsid-0.1.1) (2023-03-09) ### Dependency Updates -* `xast-util-select` updated to version `0.1.1` -* `ooxast` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.2` +- `xast-util-select` updated to version `0.1.1` +- `ooxast` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.2` + ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-remove-rsid-0.1.0...ooxast-util-remove-rsid-0.1.1) (2023-03-09) ### Dependency Updates -* `xast-util-select` updated to version `0.1.1` -* `ooxast` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.2` +- `xast-util-select` updated to version `0.1.1` +- `ooxast` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.2` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `xast-util-select` updated to version `0.1.0` -* `ooxast` updated to version `0.1.0` -* `utils-misc` updated to version `0.1.0` -* `xast-util-is-element` updated to version `0.1.0` +- `xast-util-select` updated to version `0.1.0` +- `ooxast` updated to version `0.1.0` +- `utils-misc` updated to version `0.1.0` +- `xast-util-is-element` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **reoff:** reoff clean plugin ([75b9016](https://github.com/TrialAndErrorOrg/parsers/commit/75b901685f856438750e9e11ac4d62a070f73c2c)) -* **reoff:** utiltiy to clean ooxast tree ([0827207](https://github.com/TrialAndErrorOrg/parsers/commit/082720772ffe4caff8d812962c2f42d4c71b5747)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **reoff:** reoff clean plugin ([75b9016](https://github.com/TrialAndErrorOrg/parsers/commit/75b901685f856438750e9e11ac4d62a070f73c2c)) +- **reoff:** utiltiy to clean ooxast tree ([0827207](https://github.com/TrialAndErrorOrg/parsers/commit/082720772ffe4caff8d812962c2f42d4c71b5747)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* make build work ([b80360b](https://github.com/TrialAndErrorOrg/parsers/commit/b80360bc88bc7c1ba838c070ab8fae598dc963b4)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- make build work ([b80360b](https://github.com/TrialAndErrorOrg/parsers/commit/b80360bc88bc7c1ba838c070ab8fae598dc963b4)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/ooxast/ooxast-util-remove-rsid/README.md b/libs/ooxast/ooxast-util-remove-rsid/README.md index 1e495844..4b4214df 100755 --- a/libs/ooxast/ooxast-util-remove-rsid/README.md +++ b/libs/ooxast/ooxast-util-remove-rsid/README.md @@ -11,20 +11,20 @@ Rsid's are Word's way of keeping track of edits, but when you are converting or ## Contents -* [ooxast-util-remove-rsid](#ooxast-util-remove-rsid) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-remove-rsid](#ooxast-util-remove-rsid) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -46,7 +46,7 @@ pnpm add ooxast-util-remove-rsid ## API -*** +--- ### `ooxastUtilRemoveRsid()` @@ -58,16 +58,16 @@ ooxastUtilRemoveRsid(tree: Root, options?: Options): Root; #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Root` | +| Name | Type | +| :--------- | :------------------------------ | +| `tree` | `Root` | | `options?` | [`Options`](modules.md#options) | #### Returns `Root` -Defined in: [lib/ooxast-util-remove-rsid.ts:17](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-remove-rsid/src/lib/ooxast-util-remove-rsid.ts#L17) +Defined in: [lib/ooxast-util-remove-rsid.ts:17](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-remove-rsid/src/lib/ooxast-util-remove-rsid.ts#L17) #### Signature @@ -77,18 +77,18 @@ ooxastUtilRemoveRsid(tree: Node, options?: Options): Node; #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Node`<`Data`> | +| Name | Type | +| :--------- | :------------------------------ | +| `tree` | `Node`<`Data`> | | `options?` | [`Options`](modules.md#options) | #### Returns `Node` -Defined in: [lib/ooxast-util-remove-rsid.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-remove-rsid/src/lib/ooxast-util-remove-rsid.ts#L18) +Defined in: [lib/ooxast-util-remove-rsid.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-remove-rsid/src/lib/ooxast-util-remove-rsid.ts#L18) -*** +--- ### `Options` @@ -98,7 +98,7 @@ Defined in: [lib/ooxast-util-remove-rsid.ts:18](https://github.com/TrialAndErro > `string`[] -Defined in: [lib/ooxast-util-remove-rsid.ts:14](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-remove-rsid/src/lib/ooxast-util-remove-rsid.ts#L14) +Defined in: [lib/ooxast-util-remove-rsid.ts:14](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-remove-rsid/src/lib/ooxast-util-remove-rsid.ts#L14) ## Syntax tree @@ -117,57 +117,30 @@ Defined in: [lib/ooxast-util-remove-rsid.ts:14](https://github.com/TrialAndErro [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [ooxast-util-to-jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/ooxast-util-to-jast - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast diff --git a/libs/ooxast/ooxast-util-remove-rsid/package.json b/libs/ooxast/ooxast-util-remove-rsid/package.json index fd6a91c3..b622dbe5 100755 --- a/libs/ooxast/ooxast-util-remove-rsid/package.json +++ b/libs/ooxast/ooxast-util-remove-rsid/package.json @@ -36,5 +36,14 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "xast-util-is-element": "*", + "xast-util-select": "*", + "ooxast-util-get-style": "*", + "unist-util-select": "^4.0.3", + "unist-util-visit": "^4.1.2", + "unist-util-remove": "^3.1.1" + } } diff --git a/libs/ooxast/ooxast-util-remove-rsid/project.json b/libs/ooxast/ooxast-util-remove-rsid/project.json index 5b17134c..4999ea7f 100755 --- a/libs/ooxast/ooxast-util-remove-rsid/project.json +++ b/libs/ooxast/ooxast-util-remove-rsid/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-remove-rsid/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ooxast/ooxast-util-to-hast/.eslintrc.json b/libs/ooxast/ooxast-util-to-hast/.eslintrc.json index 19a99c9d..3456be9b 100644 --- a/libs/ooxast/ooxast-util-to-hast/.eslintrc.json +++ b/libs/ooxast/ooxast-util-to-hast/.eslintrc.json @@ -1,32 +1,17 @@ { - "extends": [ - "../../../.eslintrc.json" - ], - "ignorePatterns": [ - "!**/*" - ], + "extends": ["../../../.eslintrc.json"], + "ignorePatterns": ["!**/*"], "overrides": [ { - "files": [ - "*.ts", - "*.tsx", - "*.js", - "*.jsx" - ], + "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], "rules": {} }, { - "files": [ - "*.ts", - "*.tsx" - ], + "files": ["*.ts", "*.tsx"], "rules": {} }, { - "files": [ - "*.js", - "*.jsx" - ], + "files": ["*.js", "*.jsx"], "rules": {} } ] diff --git a/libs/ooxast/ooxast-util-to-hast/package.json b/libs/ooxast/ooxast-util-to-hast/package.json index 9d31706e..988dccad 100644 --- a/libs/ooxast/ooxast-util-to-hast/package.json +++ b/libs/ooxast/ooxast-util-to-hast/package.json @@ -36,5 +36,17 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "xast-util-is-element": "*", + "ooxast-util-citations": "*", + "xast-util-select": "*", + "jast-util-from-csl": "*", + "csl-json": "0.1.0", + "hastscript": "^7.2.0", + "xastscript": "^3.1.1", + "unist-util-is": "^5.2.1", + "rehype-minify-whitespace": "^5.0.0" + } } diff --git a/libs/ooxast/ooxast-util-to-hast/project.json b/libs/ooxast/ooxast-util-to-hast/project.json index e8330ea5..778a8e7c 100644 --- a/libs/ooxast/ooxast-util-to-hast/project.json +++ b/libs/ooxast/ooxast-util-to-hast/project.json @@ -22,10 +22,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-to-hast/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ooxast/ooxast-util-to-hast/src/lib/handlers/test.json b/libs/ooxast/ooxast-util-to-hast/src/lib/handlers/test.json index b5ae8c4a..09617160 100755 --- a/libs/ooxast/ooxast-util-to-hast/src/lib/handlers/test.json +++ b/libs/ooxast/ooxast-util-to-hast/src/lib/handlers/test.json @@ -28,9 +28,7 @@ "type": "article-journal", "volume": "306" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=2ff72fa7-d045-4f16-b5a4-27d849b07504" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=2ff72fa7-d045-4f16-b5a4-27d849b07504"] }, { "id": "ITEM-2", @@ -59,9 +57,7 @@ "type": "article-journal", "volume": "152" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=5004bfd7-ce98-49c3-a1d7-db69173c7609" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=5004bfd7-ce98-49c3-a1d7-db69173c7609"] }, { "id": "ITEM-3", @@ -99,9 +95,7 @@ "type": "article-journal", "volume": "85" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=d17914e5-d158-4b59-bf0c-02cc8d5847d7" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=d17914e5-d158-4b59-bf0c-02cc8d5847d7"] }, { "id": "ITEM-4", @@ -138,9 +132,7 @@ "type": "article-journal", "volume": "153" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=915562a7-fdd4-4e8b-af71-f03a2d817e80" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=915562a7-fdd4-4e8b-af71-f03a2d817e80"] } ], "mendeley": { diff --git a/libs/ooxast/ooxast-util-to-hast/src/lib/types.ts b/libs/ooxast/ooxast-util-to-hast/src/lib/types.ts index 8301f1e0..8560aed5 100755 --- a/libs/ooxast/ooxast-util-to-hast/src/lib/types.ts +++ b/libs/ooxast/ooxast-util-to-hast/src/lib/types.ts @@ -49,32 +49,28 @@ export interface Options { pHandlers?: { matcher: string | RegExp; handler: StyleHandle }[] } -export type Handle = ( - h: H, - node: any, - parent?: Parent -) => HastContent | Array | void +export type Handle = (h: H, node: any, parent?: Parent) => HastContent | Array | void export type StyleHandleWithParent = ( h: H, node: any, - parent: Parent + parent: Parent, ) => HastContent | Array | void export type StyleHandleWithParentWithStyle = ( h: H, node: any, parent: Parent, - style: string + style: string, ) => HastContent | Array | void export type StyleHandleWithoutParentWithStyle = ( h: H, node: any, - style: string + style: string, ) => HastContent | Array | void export type StyleHandleWithoutParentWithoutStyle = ( h: H, - node: any + node: any, ) => HastContent | Array | void export type StyleHandle = @@ -120,13 +116,13 @@ export type HWithProps = ( node: Node, type: string, props?: Attributes, - children?: string | Array + children?: string | Array, ) => HastContent export type HWithoutProps = ( node: Node, type: string, - children?: string | Array + children?: string | Array, ) => HastContent // export type JWithPropsSpecific = ( diff --git a/libs/ooxast/ooxast-util-to-hast/tsconfig.spec.json b/libs/ooxast/ooxast-util-to-hast/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/ooxast/ooxast-util-to-hast/tsconfig.spec.json +++ b/libs/ooxast/ooxast-util-to-hast/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/ooxast/ooxast-util-to-jast/CHANGELOG.md b/libs/ooxast/ooxast-util-to-jast/CHANGELOG.md index 0cf01b17..5107039b 100644 --- a/libs/ooxast/ooxast-util-to-jast/CHANGELOG.md +++ b/libs/ooxast/ooxast-util-to-jast/CHANGELOG.md @@ -6,44 +6,43 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.2` -* `ooxast-util-citations` updated to version `0.1.0` -* `jast-types` updated to version `0.1.2` -* `xast-util-select` updated to version `0.1.1` -* `ooxast-util-properties` updated to version `0.1.1` -* `jast-util-from-csl` updated to version `0.1.1` +- `ooxast` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.2` +- `ooxast-util-citations` updated to version `0.1.0` +- `jast-types` updated to version `0.1.2` +- `xast-util-select` updated to version `0.1.1` +- `ooxast-util-properties` updated to version `0.1.1` +- `jast-util-from-csl` updated to version `0.1.1` ### Features -* added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* citations from word to latex works ([1582e25](https://github.com/TrialAndErrorOrg/parsers/commit/1582e2553843505e3ddc2355676e0702418bbfdc)) -* **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) -* **citations:** infer plugin type, don't break as often ([fd6a8af](https://github.com/TrialAndErrorOrg/parsers/commit/fd6a8af17f5900025cb2c23f3626113e617ba6bb)) -* figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) -* fix type errors ([0ce6946](https://github.com/TrialAndErrorOrg/parsers/commit/0ce6946f228d735dfea5177a941fa23dca474405)) -* generate proper citation keys ([3c58da7](https://github.com/TrialAndErrorOrg/parsers/commit/3c58da7e0ac7f10e1ec1da5cecc4676641448a8b)) -* it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) -* it... works ([cf52c8d](https://github.com/TrialAndErrorOrg/parsers/commit/cf52c8d4e0e45a1364ad7be39ca535593835c3ff)) -* make citations even more slightly better ([1cee053](https://github.com/TrialAndErrorOrg/parsers/commit/1cee053a5701a0962b91253712c56f5f9c4ca613)) -* **ooxast-util-to-jast:** migrate to new api ([9a87805](https://github.com/TrialAndErrorOrg/parsers/commit/9a87805bc8388b16a7ebe41ecff2af8960723ce0)) -* **ooxast-util-to-jast:** upgrade to new format ([adf81f4](https://github.com/TrialAndErrorOrg/parsers/commit/adf81f428c21339cbd447ce4930b04ba9b8c553d)) -* **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) -* **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) -* **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) -* **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) -* **reoff:** parse mendeley citations properly ([5280b3b](https://github.com/TrialAndErrorOrg/parsers/commit/5280b3bd1ee0fd58c5ce3672b76d6fd7b83659d7)) -* slightly better cite parsing ([0bae5bd](https://github.com/TrialAndErrorOrg/parsers/commit/0bae5bd703c1250c6e6f4fcc73c6c9e8635e0494)) -* **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) - +- added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- citations from word to latex works ([1582e25](https://github.com/TrialAndErrorOrg/parsers/commit/1582e2553843505e3ddc2355676e0702418bbfdc)) +- **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) +- **citations:** infer plugin type, don't break as often ([fd6a8af](https://github.com/TrialAndErrorOrg/parsers/commit/fd6a8af17f5900025cb2c23f3626113e617ba6bb)) +- figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) +- fix type errors ([0ce6946](https://github.com/TrialAndErrorOrg/parsers/commit/0ce6946f228d735dfea5177a941fa23dca474405)) +- generate proper citation keys ([3c58da7](https://github.com/TrialAndErrorOrg/parsers/commit/3c58da7e0ac7f10e1ec1da5cecc4676641448a8b)) +- it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) +- it... works ([cf52c8d](https://github.com/TrialAndErrorOrg/parsers/commit/cf52c8d4e0e45a1364ad7be39ca535593835c3ff)) +- make citations even more slightly better ([1cee053](https://github.com/TrialAndErrorOrg/parsers/commit/1cee053a5701a0962b91253712c56f5f9c4ca613)) +- **ooxast-util-to-jast:** migrate to new api ([9a87805](https://github.com/TrialAndErrorOrg/parsers/commit/9a87805bc8388b16a7ebe41ecff2af8960723ce0)) +- **ooxast-util-to-jast:** upgrade to new format ([adf81f4](https://github.com/TrialAndErrorOrg/parsers/commit/adf81f428c21339cbd447ce4930b04ba9b8c553d)) +- **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) +- **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) +- **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) +- **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) +- **reoff:** parse mendeley citations properly ([5280b3b](https://github.com/TrialAndErrorOrg/parsers/commit/5280b3bd1ee0fd58c5ce3672b76d6fd7b83659d7)) +- slightly better cite parsing ([0bae5bd](https://github.com/TrialAndErrorOrg/parsers/commit/0bae5bd703c1250c6e6f4fcc73c6c9e8635e0494)) +- **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) ### Bug Fixes -* fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) -* **ooxast-util-to-jast:** fix last extension error ([f9648ba](https://github.com/TrialAndErrorOrg/parsers/commit/f9648ba9947a78a2dc6362f94707fa49f641c488)) -* **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) -* **types:** sike!!!! fixed it nerd ([d94a66d](https://github.com/TrialAndErrorOrg/parsers/commit/d94a66d8dc3c152fcf6ab8a56251b52c6cbb85f7)) -* **types:** sike!!!! fixed it nerd ([ebbc049](https://github.com/TrialAndErrorOrg/parsers/commit/ebbc049955437627872653b6cfda120f485bc4ab)) +- fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) +- **ooxast-util-to-jast:** fix last extension error ([f9648ba](https://github.com/TrialAndErrorOrg/parsers/commit/f9648ba9947a78a2dc6362f94707fa49f641c488)) +- **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) +- **types:** sike!!!! fixed it nerd ([d94a66d](https://github.com/TrialAndErrorOrg/parsers/commit/d94a66d8dc3c152fcf6ab8a56251b52c6cbb85f7)) +- **types:** sike!!!! fixed it nerd ([ebbc049](https://github.com/TrialAndErrorOrg/parsers/commit/ebbc049955437627872653b6cfda120f485bc4ab)) diff --git a/libs/ooxast/ooxast-util-to-jast/README.md b/libs/ooxast/ooxast-util-to-jast/README.md index 8cb8ad84..dd32d1f8 100755 --- a/libs/ooxast/ooxast-util-to-jast/README.md +++ b/libs/ooxast/ooxast-util-to-jast/README.md @@ -9,20 +9,20 @@ Util to convert `ooxast` syntax tree to `jast` syntax tree, allowing for `.docx` ## Contents -* [ooxast-util-to-jast](#ooxast-util-to-jast) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-to-jast](#ooxast-util-to-jast) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -44,7 +44,7 @@ pnpm add ooxast-util-to-jast ## API -*** +--- ### `toJast()` @@ -56,17 +56,17 @@ toJast(tree: Element | Text | Root, file: VFile, userOptions?: Options): JastRoo #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Element` | `Text` | `Root` | -| `file` | `VFile` | +| Name | Type | +| :------------- | :------------------------------ | ------ | ------ | +| `tree` | `Element` | `Text` | `Root` | +| `file` | `VFile` | | `userOptions?` | [`Options`](modules.md#options) | #### Returns `JastRoot` -Defined in: [lib/ooxast-util-to-jast.ts:50](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/ooxast-util-to-jast.ts#L50) +Defined in: [lib/ooxast-util-to-jast.ts:50](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/ooxast-util-to-jast.ts#L50) #### Signature @@ -76,18 +76,18 @@ toJast(tree: Element | Text | Root, userOptions?: Options): JastRoot; #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Element` | `Text` | `Root` | +| Name | Type | +| :------------- | :------------------------------ | ------ | ------ | +| `tree` | `Element` | `Text` | `Root` | | `userOptions?` | [`Options`](modules.md#options) | #### Returns `JastRoot` -Defined in: [lib/ooxast-util-to-jast.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/ooxast-util-to-jast.ts#L51) +Defined in: [lib/ooxast-util-to-jast.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/ooxast-util-to-jast.ts#L51) -*** +--- ### `defaultHandlers` @@ -123,30 +123,30 @@ Defined in: [lib/ooxast-util-to-jast.ts:51](https://github.com/TrialAndErrorOrg #### Type declaration -| Member | Type | -| :------ | :------ | -| `article` | () => `void` | -| `body` | (`j`: `J`, `body`: `Body`) => `Sec` | `Body` | -| `doctype` | () => `void` | -| `document` | (`j`: `J`, `node`: `Document`) => `Article` | -| `drawing` | (`j`: `J`, `node`: `Drawing`) => `Fig` | -| `footnote` | (`j`: `J`, `node`: `Element`) => `undefined` | `Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X` | -| `footnotes` | (`j`: `J`, `node`: `Footnotes`) => `void` | -| `instrText` | (`j`: `J`, `citation`: `T`, `parent`: `Parent`<`Node`<`Data`>, `Data`>) => `any` | -| `instruction` | () => `void` | -| `p` | (`j`: `J`, `p`: `P`, `parent`: `Parent`<`Node`<`Data`>, `Data`>) => `Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X` | (`Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X`)[] | -| `r` | (`j`: `J`, `node`: `R`) => `any` | -| `root` | (`j`: `J`, `node`: `Root`) => `Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X` | -| `t` | (`j`: `J`, `parent`: `Node`) => `JastContent`[] | -| `tbl` | (`j`: `J`, `tbl`: `Tbl`) => { `attributes`: {}; `children`: (`Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X`)[]; `name`: `string`; `type`: `string`; } | -| `tc` | (`j`: `J`, `node`: `Tc`) => `Td` | -| `text` | (`j`: `J`, `node`: `Text`) => `Text` | -| `tr` | (`j`: `J`, `tr`: `Row`) => `Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X` | -| `xml` | () => `void` | - -Defined in: [lib/handlers/index.ts:16](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/handlers/index.ts#L16) - -*** +| Member | Type | +| :------------ | :------------------------------------------------------------------------------- | ------ | ----------- | ----------- | ----------- | -------------- | -------------- | ---------- | ------- | ----------- | ----------- | -------- | --------------- | --------------- | ----- | ----------- | -------------------- | -------------------- | -------- | ---------- | ---------- | ------- | ------- | ---------- | ---------- | ------------ | ------------ | ---------- | ---------- | ----------- | ----------- | --------- | ------- | ---------- | ---------- | --------- | --------- | ------------- | ----------------- | ----------------- | ------------ | ------------ | ------- | -------------- | -------------- | ------------ | ------------------- | ------------------- | --------------- | --------------- | -------------- | ---------------- | ---------------- | ----------------- | ----------------- | ------- | ------- | ----------------------------- | ----------------------------- | ---------------- | --------------- | -------- | --------- | --------- | ------- | ------- | ------- | ----------- | ----------------------- | ----------------------- | ------------- | ------------- | ---------- | ------------ | ------------ | ----------- | ----------- | ------------- | ------------- | ------------------- | ------------------- | ---------------- | ---------------- | ------------- | ------------------ | ------------------ | ----------- | ---------- | ---------- | ---------- | ---------- | ---------- | -------------- | ------------------- | ------------------- | ----------- | ----------- | ---------------- | ---------------- | ------------ | ---------- | ------------- | ------------- | ---------- | ---------- | -------- | ------------------- | ------------------- | ------------- | ------------- | ------------- | ------------- | ---------------- | ---------------------------- | ---------------------------- | ------------- | -------------- | -------------- | ----------------- | ----------------- | ------------- | -------------- | -------------- | --------- | --------- | ----------- | -------------- | -------------- | ----------------- | ----------------- | ----------- | ----------- | --------- | --------------------- | --------------------- | ------------ | ------------ | -------------- | -------------- | --------------- | --------------- | ---------- | ------------------ | ------------------ | -------------- | -------------- | --------- | ------- | ------- | ------------- | ---------------- | ---------------- | ------------ | --------------- | --------------- | ----------- | ------------ | ------------ | ----------- | --------------- | ------------------------- | ------------------------- | ----------------------- | --------------- | ------- | ---------- | ---------- | -------------- | ---------------------- | ---------------------- | ----------------- | --------------- | ------------- | ---------- | -------------------- | -------------------- | ------------ | ------------ | --------- | ----------------- | ----------------- | --------------------- | --------------------- | ----------------- | ------------- | ---------- | ---------- | ---------- | ------------- | ------------- | ----------- | ----------- | ----------- | --------- | ------------------ | ------------------ | -------------------------- | -------------------------- | -------------------- | -------------------- | -------------------- | -------------------- | --------------- | --------------- | --------------- | ----------- | ----------- | ------------ | ------------ | ------------ | ------------ | ----------- | ----------- | ---------------- | ---------------- | ----- | ------- | -------- | -------- | ------ | --------- | --------- | --------- | ---------- | ---------- | --------- | -------- | ------ | ------ | ------ | ------- | ----------- | ----------- | ------------- | ------------- | -------------- | --------------- | --------------- | -------- | ------------ | ------------- | ------------- | ------------ | ----------- | ----------- | ------------ | ------------ | ------------- | ------------------ | ------------------ | ------------ | ------------ | ----------- | ---------- | ----- | --------- | --------------- | --------------- | ----------------- | ----------------- | ------------------- | ------------------- | ----------------- | ----------------- | -------------- | ----------- | ----------- | ---------- | --------- | ---------- | ---------- | -------- | --------- | ----------- | ----------- | -------- | ------------- | --------------- | --------------- | ------------------ | ------------------ | ----- | -------------- | -------------- | -------------- | ------------ | ---- | ----- | --------- | ----------------- | ----------------- | ------------ | --------- | ------- | ------- | --------------- | --------------- | ---- | --------------- | --------------- | ---------------- | ---------------------- | ---------------------- | --------------------------------------------- | ------- | ------ | ----------- | -------- | ----------- | -------------- | ---------- | ------- | ------ | ----------- | ---- | -------- | --------------- | ----- | ----- | ----------- | -------------------- | -------- | ----- | ---------- | --- | ------- | ------- | ---------- | ----- | ------------ | ----- | ---------- | --------- | ----------- | --------- | ------- | ----- | ---------- | ------ | --------- | --------- | ------------- | ----------------- | ------- | ------------ | ------- | ----- | -------------- | ------------ | ----------- | ------------------- | --------------- | --------------- | ------------- | -------------- | ---------------- | ------------- | ----------------- | ----- | ------- | ---- | ----------------------------- | ---------------- | --------------- | -------- | ------ | --------- | ------- | ------- | ------ | ------- | ----------- | ----------------------- | --------- | ------------- | --------- | ---------- | ------------ | ----------- | ----------- | -------- | ------------- | ---------- | ------------------- | ----------- | ---------------- | --------- | ------------- | ------------------ | ----------- | ----- | ---------- | --------- | ---------- | ------ | ---------- | -------------- | ------------------- | -------- | ----------- | ----------- | ---------------- | ------------ | ---------- | ----- | ------------- | --------- | ---------- | -------- | ------- | ------------------- | ------------ | ------------- | ----------- | ------------- | ------ | ---------------- | ---------------------------- | ------------- | ------------ | -------------- | -------- | ----------------- | ------------- | ------- | -------------- | --------- | ------- | --------- | ----------- | -------------- | ------------ | ----------------- | ------- | ----------- | --------- | --------- | --------------------- | ------------ | --------- | ------------ | -------------- | ------------ | --------------- | -------- | ---------- | ------------------ | -------------- | -------------- | --------- | ------ | ------- | ------ | ------------- | ---------------- | ---------- | ------------ | --------------- | --------- | ----------- | ------------ | --------- | ----------- | --------------- | ------------------------- | ----------------------- | --------------- | ----- | ------- | ---------- | --------- | -------------- | ---------------------- | ----------------- | --------------- | ------------- | ---------- | ----- | -------------------- | -------- | ------------ | ------ | --------- | ----------------- | ------------- | --------------------- | ----------------- | ------------- | ---------- | --------- | ---------- | --------- | ------------- | ----------- | --------- | ----------- | ------ | --------- | ------------------ | ------------ | -------------------------- | --------------- | -------------------- | ----------------- | -------------------- | --------------- | ------- | --------------- | ---------- | ----------- | ---------- | ------------ | ----------- | ------------ | ---------- | ----------- | ----------- | ---------------- | ----- | ----- | ------- | -------- | ------ | ------ | --------- | --------- | ------ | ---------- | --------- | -------- | ------ | ------ | ----- | ------ | ------- | ----------- | -------- | ------------- | ------- | -------------- | --------------- | -------- | ----- | ------------ | ------------- | ------------ | --------- | ----------- | ------- | ------------ | ----------- | ------------- | ------------------ | ------------ | ------------ | ----------- | ---------- | ---- | ----- | --------- | --------------- | --------------- | ----------------- | ----------- | ------------------- | ----------- | ----------------- | -------------- | ----- | ----------- | ---------- | ------- | --------- | ---------- | -------- | -------- | --------- | ----------- | ------ | -------- | ------------- | --------------- | -------------- | ------------------ | ---- | ----- | -------------- | -------------- | ------------ | ---- | ---- | ----- | --------- | ----------------- | ------------ | --------- | ---- | ------- | ------- | --------------- | ---- | ---- | --------------- | -------------- | ---------------- | ---------------------- | ----------- | ------ | +| `article` | () => `void` | +| `body` | (`j`: `J`, `body`: `Body`) => `Sec` | `Body` | +| `doctype` | () => `void` | +| `document` | (`j`: `J`, `node`: `Document`) => `Article` | +| `drawing` | (`j`: `J`, `node`: `Drawing`) => `Fig` | +| `footnote` | (`j`: `J`, `node`: `Element`) => `undefined` | `Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X` | +| `footnotes` | (`j`: `J`, `node`: `Footnotes`) => `void` | +| `instrText` | (`j`: `J`, `citation`: `T`, `parent`: `Parent`<`Node`<`Data`>, `Data`>) => `any` | +| `instruction` | () => `void` | +| `p` | (`j`: `J`, `p`: `P`, `parent`: `Parent`<`Node`<`Data`>, `Data`>) => `Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X` | (`Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X`)[] | +| `r` | (`j`: `J`, `node`: `R`) => `any` | +| `root` | (`j`: `J`, `node`: `Root`) => `Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X` | +| `t` | (`j`: `J`, `parent`: `Node`) => `JastContent`[] | +| `tbl` | (`j`: `J`, `tbl`: `Tbl`) => { `attributes`: {}; `children`: (`Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X`)[]; `name`: `string`; `type`: `string`; } | +| `tc` | (`j`: `J`, `node`: `Tc`) => `Td` | +| `text` | (`j`: `J`, `node`: `Text`) => `Text` | +| `tr` | (`j`: `J`, `tr`: `Row`) => `Text` | `Bold` | `FixedCase` | `Italic` | `Monospace` | `NamedContent` | `Overline` | `Roman` | `Ruby` | `SansSerif` | `Sc` | `Strike` | `StyledContent` | `Sub` | `Sup` | `Underline` | `AbbrevJournaltitle` | `Abbrev` | `Def` | `Abstract` | `P` | `Label` | `Title` | `ObjectId` | `Sec` | `AccessDate` | `Ack` | `KwdGroup` | `RefList` | `SubjGroup` | `Address` | `Email` | `Fax` | `AddrLine` | `City` | `Country` | `ExtLink` | `Institution` | `InstitutionWrap` | `Phone` | `PostalCode` | `State` | `Uri` | `Alternatives` | `ChemStruct` | `IndexTerm` | `IndexTermrangeend` | `InlineFormula` | `InlineGraphic` | `InlineMedia` | `MilestoneEnd` | `MilestoneStart` | `PrivateChar` | `AffAlternatives` | `Aff` | `Break` | `Fn` | `InlineSupplementarymaterial` | `RelatedArticle` | `RelatedObject` | `Target` | `Xref` | `Graphic` | `Table` | `Array` | `Code` | `Media` | `Preformat` | `SupplementaryMaterial` | `TexMath` | `TextualForm` | `AltText` | `AltTitle` | `Annotation` | `Anonymous` | `AnswerSet` | `Answer` | `Explanation` | `Subtitle` | `BlockAlternatives` | `BoxedText` | `ChemStructwrap` | `DefList` | `DispFormula` | `DispFormulagroup` | `DispQuote` | `Fig` | `FigGroup` | `FnGroup` | `Glossary` | `List` | `Question` | `QuestionWrap` | `QuestionWrapgroup` | `Speech` | `Statement` | `TableWrap` | `TableWrapgroup` | `VerseGroup` | `AppGroup` | `App` | `Permissions` | `SecMeta` | `LongDesc` | `Attrib` | `Tbody` | `ArticleCategories` | `SeriesText` | `SeriesTitle` | `ArticleId` | `ArticleMeta` | `Isbn` | `ArticleVersion` | `ArticleVersionalternatives` | `AuthorNotes` | `Conference` | `ContribGroup` | `Counts` | `CustomMetagroup` | `ElocationId` | `Fpage` | `FundingGroup` | `History` | `Issue` | `IssueId` | `IssuePart` | `IssueSponsor` | `IssueTitle` | `IssueTitlegroup` | `Lpage` | `PageRange` | `Product` | `PubDate` | `PubDatenotavailable` | `PubHistory` | `SelfUri` | `Supplement` | `SupportGroup` | `TitleGroup` | `TransAbstract` | `Volume` | `VolumeId` | `VolumeIssuegroup` | `VolumeSeries` | `ArticleTitle` | `Article` | `Body` | `Front` | `Back` | `FloatsGroup` | `ProcessingMeta` | `Response` | `SubArticle` | `AuthorComment` | `Corresp` | `AwardDesc` | `AwardGroup` | `AwardId` | `AwardName` | `FundingSource` | `PrincipalAwardrecipient` | `PrincipalInvestigator` | `SupportSource` | `Bio` | `Notes` | `SigBlock` | `Caption` | `ChapterTitle` | `CitationAlternatives` | `ElementCitation` | `MixedCitation` | `NlmCitation` | `Colgroup` | `Col` | `CollabAlternatives` | `Collab` | `OnBehalfof` | `Role` | `Comment` | `CompoundKwdpart` | `CompoundKwd` | `CompoundSubjectpart` | `CompoundSubject` | `ConfAcronym` | `ConfDate` | `ConfLoc` | `ConfName` | `ConfNum` | `ConfSponsor` | `ConfTheme` | `Contrib` | `ContribId` | `Name` | `Degrees` | `NameAlternatives` | `StringName` | `ContributedResourcegroup` | `ResourceGroup` | `SupportDescription` | `CopyrightHolder` | `CopyrightStatement` | `CopyrightYear` | `Count` | `EquationCount` | `FigCount` | `PageCount` | `RefCount` | `TableCount` | `WordCount` | `CustomMeta` | `MetaName` | `MetaValue` | `DataTitle` | `DateIncitation` | `Day` | `Era` | `Month` | `Season` | `Year` | `Date` | `DefHead` | `DefItem` | `Term` | `TermHead` | `Edition` | `Series` | `Size` | `Etal` | `Gov` | `Issn` | `IssnL` | `PartTitle` | `Patent` | `PersonGroup` | `PubId` | `PublisherLoc` | `PublisherName` | `Source` | `Std` | `StringDate` | `TransSource` | `TransTitle` | `Version` | `EventDesc` | `Event` | `ExtendedBy` | `FrontStub` | `JournalMeta` | `FundingStatement` | `OpenAccess` | `GivenNames` | `GlyphData` | `GlyphRef` | `Hr` | `See` | `SeeAlso` | `InstitutionId` | `IssueSubtitle` | `TransTitlegroup` | `JournalId` | `JournalTitlegroup` | `Publisher` | `JournalSubtitle` | `JournalTitle` | `Kwd` | `NestedKwd` | `LicenseP` | `Price` | `License` | `ListItem` | `Prefix` | `Suffix` | `Surname` | `TimeStamp` | `Note` | `Option` | `OverlineEnd` | `OverlineStart` | `RestrictedBy` | `QuestionPreamble` | `Rb` | `Ref` | `ResourceName` | `ResourceWrap` | `ResourceId` | `Rp` | `Rt` | `Sig` | `Speaker` | `StdOrganization` | `StringConf` | `Subject` | `Tr` | `Tfoot` | `Thead` | `TableWrapfoot` | `Td` | `Th` | `TransSubtitle` | `UnderlineEnd` | `UnderlineStart` | `UnstructuredKwdgroup` | `VerseLine` | `X` | +| `xml` | () => `void` | + +Defined in: [lib/handlers/index.ts:16](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/handlers/index.ts#L16) + +--- ### `Options` @@ -156,19 +156,19 @@ Defined in: [lib/handlers/index.ts:16](https://github.com/TrialAndErrorOrg/pars > `string` -Defined in: [lib/types.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L38) +Defined in: [lib/types.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L38) ##### `checked?` > `string` -Defined in: [lib/types.ts:33](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L33) +Defined in: [lib/types.ts:33](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L33) ##### `citationType?` > `"endnote"` | `"mendeley"` | `"word"` | `"citavi"` | `"zotero"` -Defined in: [lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L44) +Defined in: [lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L44) ##### `collectCitation?` @@ -176,36 +176,36 @@ Defined in: [lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any, index: string | number): any; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | -| `citation` | `any` | -| `index` | `string` | `number` | +| Name | Type | +| :--------- | :------- | -------- | +| `citation` | `any` | +| `index` | `string` | `number` | -*Returns\`* +_Returns\`_ `any` -Defined in: [lib/types.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L46) +Defined in: [lib/types.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L46) ##### `columnSeparator?` > `boolean` -Defined in: [lib/types.ts:39](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L39) +Defined in: [lib/types.ts:39](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L39) ##### `document?` > `boolean` -Defined in: [lib/types.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L31) +Defined in: [lib/types.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L31) ##### `documentClass?` @@ -220,12 +220,12 @@ Defined in: [lib/types.ts:31](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -| Member | Type | -| :------ | :------ | -| `name` | `string` | +| Member | Type | +| :--------- | :--------- | +| `name` | `string` | | `options`? | `string`[] | -Defined in: [lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L40) +Defined in: [lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L40) ##### `handlers?` @@ -237,19 +237,19 @@ Defined in: [lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -Defined in: [lib/types.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L30) +Defined in: [lib/types.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L30) ##### `italics?` > `"emph"` | `"textit"` -Defined in: [lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L37) +Defined in: [lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L37) ##### `newLines?` > `boolean` -Defined in: [lib/types.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L32) +Defined in: [lib/types.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L32) ##### `parseCitation?` @@ -257,29 +257,29 @@ Defined in: [lib/types.ts:32](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any): any; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | +| Name | Type | +| :--------- | :---- | | `citation` | `any` | -*Returns\`* +_Returns\`_ `any` -Defined in: [lib/types.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L45) +Defined in: [lib/types.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L45) ##### `quotes?` > `string`[] -Defined in: [lib/types.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L35) +Defined in: [lib/types.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L35) ##### `relations?` @@ -291,19 +291,19 @@ Defined in: [lib/types.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -Defined in: [lib/types.ts:47](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L47) +Defined in: [lib/types.ts:47](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L47) ##### `topSection?` > `number` -Defined in: [lib/types.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L36) +Defined in: [lib/types.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L36) ##### `unchecked?` > `string` -Defined in: [lib/types.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L34) +Defined in: [lib/types.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-jast/src/lib/types.ts#L34) ## Syntax tree @@ -322,57 +322,30 @@ Defined in: [lib/types.ts:34](https://github.com/TrialAndErrorOrg/parsers/blob/ [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [ooxast-util-to-jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/ooxast-util-to-jast - [jast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast - [jast-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jast-util-to-texast - [jastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/jastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-jast diff --git a/libs/ooxast/ooxast-util-to-jast/package.json b/libs/ooxast/ooxast-util-to-jast/package.json index d6f77a96..7de54a7d 100755 --- a/libs/ooxast/ooxast-util-to-jast/package.json +++ b/libs/ooxast/ooxast-util-to-jast/package.json @@ -36,5 +36,20 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "xast-util-is-element": "*", + "ooxast-util-citations": "*", + "jast-types": "*", + "xast-util-select": "*", + "ooxast-util-properties": "*", + "jast-util-from-csl": "*", + "reoff-parse": "*", + "csl-json": "0.1.0", + "xastscript": "^3.1.1", + "unist-util-is": "^5.2.1", + "rehype-minify-whitespace": "^5.0.0", + "vfile": "^5.3.7" + } } diff --git a/libs/ooxast/ooxast-util-to-jast/project.json b/libs/ooxast/ooxast-util-to-jast/project.json index 00284fcc..23c22341 100755 --- a/libs/ooxast/ooxast-util-to-jast/project.json +++ b/libs/ooxast/ooxast-util-to-jast/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-to-jast/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ooxast/ooxast-util-to-jast/src/lib/handlers/citation.spec.ts b/libs/ooxast/ooxast-util-to-jast/src/lib/handlers/citation.spec.ts index beaac6d0..0213afe4 100755 --- a/libs/ooxast/ooxast-util-to-jast/src/lib/handlers/citation.spec.ts +++ b/libs/ooxast/ooxast-util-to-jast/src/lib/handlers/citation.spec.ts @@ -30,6 +30,6 @@ it('should return mendeley citation', () => { expect(csl).toBeDefined() expect( csl.title === - 'From Boulder to Stockholm in 70 years: Single case experimental designs in clinical research' + 'From Boulder to Stockholm in 70 years: Single case experimental designs in clinical research', ) }) diff --git a/libs/ooxast/ooxast-util-to-jast/src/lib/handlers/test.json b/libs/ooxast/ooxast-util-to-jast/src/lib/handlers/test.json index b2940d43..d34b986c 100755 --- a/libs/ooxast/ooxast-util-to-jast/src/lib/handlers/test.json +++ b/libs/ooxast/ooxast-util-to-jast/src/lib/handlers/test.json @@ -28,9 +28,7 @@ "type": "article-journal", "volume": "306" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=2ff72fa7-d045-4f16-b5a4-27d849b07504" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=2ff72fa7-d045-4f16-b5a4-27d849b07504"] }, { "id": "ITEM-2", @@ -59,9 +57,7 @@ "type": "article-journal", "volume": "152" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=5004bfd7-ce98-49c3-a1d7-db69173c7609" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=5004bfd7-ce98-49c3-a1d7-db69173c7609"] }, { "id": "ITEM-3", @@ -99,9 +95,7 @@ "type": "article-journal", "volume": "85" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=d17914e5-d158-4b59-bf0c-02cc8d5847d7" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=d17914e5-d158-4b59-bf0c-02cc8d5847d7"] }, { "id": "ITEM-4", @@ -138,9 +132,7 @@ "type": "article-journal", "volume": "153" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=915562a7-fdd4-4e8b-af71-f03a2d817e80" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=915562a7-fdd4-4e8b-af71-f03a2d817e80"] } ], "mendeley": { diff --git a/libs/ooxast/ooxast-util-to-mdast/CHANGELOG.md b/libs/ooxast/ooxast-util-to-mdast/CHANGELOG.md index 1161ddb3..911a35c5 100644 --- a/libs/ooxast/ooxast-util-to-mdast/CHANGELOG.md +++ b/libs/ooxast/ooxast-util-to-mdast/CHANGELOG.md @@ -6,26 +6,25 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast` updated to version `0.1.3` -* `ooxast-util-citations` updated to version `0.1.1` -* `xast-util-select` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.4` -* `reoff-parse` updated to version `0.2.5` -* `docx-to-vfile` updated to version `0.5.3` -* `reoff-clean` updated to version `0.1.1` -* `reoff-cite` updated to version `0.1.1` -* `reoff-parse-references` updated to version `0.1.1` +- `ooxast` updated to version `0.1.3` +- `ooxast-util-citations` updated to version `0.1.1` +- `xast-util-select` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.4` +- `reoff-parse` updated to version `0.2.5` +- `docx-to-vfile` updated to version `0.5.3` +- `reoff-clean` updated to version `0.1.1` +- `reoff-cite` updated to version `0.1.1` +- `reoff-parse-references` updated to version `0.1.1` ### Features -* **ooxast-util-to-mdast:** add hyperlink support and write readme ([35c66de](https://github.com/TrialAndErrorOrg/parsers/commit/35c66debe846f30fb88122f2cdea085e39c32c26)) -* **ooxast-util-to-mdast:** add initial ooxast-mdast implementation ([88445ca](https://github.com/TrialAndErrorOrg/parsers/commit/88445caf759f9bb4d668789e2146050240cd9012)) -* **ooxast-util-to-mdast:** add math and bad citation support ([797f95a](https://github.com/TrialAndErrorOrg/parsers/commit/797f95addd245a57b7b79223698b446d97e1ec5b)) -* **ooxast-util-to-mdast:** make big progress, add better list parsing ([7076bac](https://github.com/TrialAndErrorOrg/parsers/commit/7076bac9b39ae9aea05b9725f877d5a19b0bfc02)) - +- **ooxast-util-to-mdast:** add hyperlink support and write readme ([35c66de](https://github.com/TrialAndErrorOrg/parsers/commit/35c66debe846f30fb88122f2cdea085e39c32c26)) +- **ooxast-util-to-mdast:** add initial ooxast-mdast implementation ([88445ca](https://github.com/TrialAndErrorOrg/parsers/commit/88445caf759f9bb4d668789e2146050240cd9012)) +- **ooxast-util-to-mdast:** add math and bad citation support ([797f95a](https://github.com/TrialAndErrorOrg/parsers/commit/797f95addd245a57b7b79223698b446d97e1ec5b)) +- **ooxast-util-to-mdast:** make big progress, add better list parsing ([7076bac](https://github.com/TrialAndErrorOrg/parsers/commit/7076bac9b39ae9aea05b9725f877d5a19b0bfc02)) ### Bug Fixes -* **ooxast-util-to-mdast:** fix tiny thing ([de9953a](https://github.com/TrialAndErrorOrg/parsers/commit/de9953ad0e26633c38b4df0e72efd52019677867)) -* **ooxast-util-to-mdast:** properly set output type ([a200b4e](https://github.com/TrialAndErrorOrg/parsers/commit/a200b4ee819e2421f059d6d983c1b14f037fb68c)) -* **reoff-remark:** export correct options ([8b0c205](https://github.com/TrialAndErrorOrg/parsers/commit/8b0c2055ae6dcaa41c09c7d53624379f69ca5e52)) +- **ooxast-util-to-mdast:** fix tiny thing ([de9953a](https://github.com/TrialAndErrorOrg/parsers/commit/de9953ad0e26633c38b4df0e72efd52019677867)) +- **ooxast-util-to-mdast:** properly set output type ([a200b4e](https://github.com/TrialAndErrorOrg/parsers/commit/a200b4ee819e2421f059d6d983c1b14f037fb68c)) +- **reoff-remark:** export correct options ([8b0c205](https://github.com/TrialAndErrorOrg/parsers/commit/8b0c2055ae6dcaa41c09c7d53624379f69ca5e52)) diff --git a/libs/ooxast/ooxast-util-to-mdast/README.md b/libs/ooxast/ooxast-util-to-mdast/README.md index 0eed77b9..b9cd8075 100644 --- a/libs/ooxast/ooxast-util-to-mdast/README.md +++ b/libs/ooxast/ooxast-util-to-mdast/README.md @@ -9,20 +9,20 @@ Convert `ooxast` syntax tree to `mdast` syntax tree. ## Contents -* [ooxast-util-to-unified-latex](#ooxast-util-to-unified-latex) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-to-unified-latex](#ooxast-util-to-unified-latex) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -48,7 +48,7 @@ pnpm add ooxast-util-to-mdast ## API -*** +--- ### `toMdast()` @@ -60,17 +60,17 @@ toMdast(tree: Text | Root | Element, file: VFile, options?: Options): MdastRoot; #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Text` | `Root` | `Element` | -| `file` | `VFile` | +| Name | Type | +| :--------- | :------------------------------ | ------ | --------- | +| `tree` | `Text` | `Root` | `Element` | +| `file` | `VFile` | | `options?` | [`Options`](modules.md#options) | #### Returns `MdastRoot` -Defined in: [lib/ooxast-util-to-mdast.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/ooxast-util-to-mdast.ts#L28) +Defined in: [lib/ooxast-util-to-mdast.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/ooxast-util-to-mdast.ts#L28) #### Signature @@ -80,18 +80,18 @@ toMdast(tree: Text | Root | Element, options?: Options): MdastRoot; #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Text` | `Root` | `Element` | +| Name | Type | +| :--------- | :------------------------------ | ------ | --------- | +| `tree` | `Text` | `Root` | `Element` | | `options?` | [`Options`](modules.md#options) | #### Returns `MdastRoot` -Defined in: [lib/ooxast-util-to-mdast.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/ooxast-util-to-mdast.ts#L29) +Defined in: [lib/ooxast-util-to-mdast.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/ooxast-util-to-mdast.ts#L29) -*** +--- ### `Options` @@ -101,7 +101,7 @@ Defined in: [lib/ooxast-util-to-mdast.ts:29](https://github.com/TrialAndErrorOr > `Data`[] -Defined in: [lib/types.ts:56](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L56) +Defined in: [lib/types.ts:56](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L56) ##### `bold?` @@ -113,7 +113,7 @@ Should bold be rendered with `*` or `_`? '\*\*' -Defined in: [lib/types.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L46) +Defined in: [lib/types.ts:46](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L46) ##### `citationType?` @@ -125,7 +125,7 @@ What type of citation is used? 'zotero' -Defined in: [lib/types.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L51) +Defined in: [lib/types.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L51) ##### `collectCitation?` @@ -133,30 +133,30 @@ Defined in: [lib/types.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any, index: string | number): any; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | -| `citation` | `any` | -| `index` | `string` | `number` | +| Name | Type | +| :--------- | :------- | -------- | +| `citation` | `any` | +| `index` | `string` | `number` | -*Returns\`* +_Returns\`_ `any` -Defined in: [lib/types.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L53) +Defined in: [lib/types.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L53) ##### `document?` > `boolean` -Defined in: [lib/types.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L36) +Defined in: [lib/types.ts:36](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L36) ##### `handlers?` @@ -170,7 +170,7 @@ Handlers for specific node types ###### Type declaration -Defined in: [lib/types.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L35) +Defined in: [lib/types.ts:35](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L35) ##### `italics?` @@ -182,13 +182,13 @@ Should italics be rendered with `*` or `_`? '\*' -Defined in: [lib/types.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L42) +Defined in: [lib/types.ts:42](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L42) ##### `newLines?` > `boolean` -Defined in: [lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L37) +Defined in: [lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L37) ##### `parseCitation?` @@ -196,29 +196,29 @@ Defined in: [lib/types.ts:37](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any): any; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | +| Name | Type | +| :--------- | :---- | | `citation` | `any` | -*Returns\`* +_Returns\`_ `any` -Defined in: [lib/types.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L52) +Defined in: [lib/types.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L52) ##### `quotes?` > `string`[] -Defined in: [lib/types.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L38) +Defined in: [lib/types.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L38) ##### `relations?` @@ -230,15 +230,15 @@ Defined in: [lib/types.ts:38](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -Defined in: [lib/types.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L54) +Defined in: [lib/types.ts:54](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L54) ##### `title?` > `string` -Defined in: [lib/types.ts:55](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L55) +Defined in: [lib/types.ts:55](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L55) -*** +--- ### `State` @@ -248,25 +248,25 @@ Defined in: [lib/types.ts:55](https://github.com/TrialAndErrorOrg/parsers/blob/ > `All` -Defined in: [lib/state.ts:22](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L22) +Defined in: [lib/state.ts:22](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L22) ##### `baseFound` > `boolean` -Defined in: [lib/state.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L51) +Defined in: [lib/state.ts:51](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L51) ##### `bibliography` > `Data`[] -Defined in: [lib/state.ts:83](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L83) +Defined in: [lib/state.ts:83](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L83) ##### `citationNumber` > `number` -Defined in: [lib/state.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L59) +Defined in: [lib/state.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L59) ##### `citations` @@ -282,7 +282,7 @@ Needs to be in CSL format, which will be converted to BibTeX, or in BibTeX forma ###### Type declaration -Defined in: [lib/state.ts:81](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L81) +Defined in: [lib/state.ts:81](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L81) ##### `citeKeys` @@ -294,7 +294,7 @@ Defined in: [lib/state.ts:81](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -Defined in: [lib/state.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L67) +Defined in: [lib/state.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L67) ##### `collectCitation` @@ -302,24 +302,24 @@ Defined in: [lib/state.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any, index: string | number): any; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | -| `citation` | `any` | -| `index` | `string` | `number` | +| Name | Type | +| :--------- | :------- | -------- | +| `citation` | `any` | +| `index` | `string` | `number` | -*Returns\`* +_Returns\`_ `any` -Defined in: [lib/state.ts:61](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L61) +Defined in: [lib/state.ts:61](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L61) ##### `deleteNextRun` @@ -328,73 +328,73 @@ Defined in: [lib/state.ts:61](https://github.com/TrialAndErrorOrg/parsers/blob/ Whether to delete the next w:r element Mostly used for citations, where sometimes the next w:r element is the citation in plain text again -Defined in: [lib/state.ts:66](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L66) +Defined in: [lib/state.ts:66](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L66) ##### `elementById` > `Map`<`string`, `Element`> -Defined in: [lib/state.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L45) +Defined in: [lib/state.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L45) ##### `endnotes` > `Record`<`string`, `MdastNode`[]> -Defined in: [lib/state.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L71) +Defined in: [lib/state.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L71) ##### `footnotes` > `Record`<`string`, `MdastNode`[]> -Defined in: [lib/state.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L70) +Defined in: [lib/state.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L70) ##### `frozenBaseUrl` > `undefined` | `string` -Defined in: [lib/state.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L53) +Defined in: [lib/state.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L53) ##### `handlers` > `Record`<`string`, [`Handle`](modules.md#handle)> -Defined in: [lib/state.ts:47](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L47) +Defined in: [lib/state.ts:47](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L47) ##### `inDisplayMath` > `boolean` -Defined in: [lib/state.ts:68](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L68) +Defined in: [lib/state.ts:68](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L68) ##### `inMath` > `boolean` -Defined in: [lib/state.ts:69](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L69) +Defined in: [lib/state.ts:69](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L69) ##### `inTable` > `boolean` -Defined in: [lib/state.ts:55](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L55) +Defined in: [lib/state.ts:55](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L55) ##### `listNumbering?` > `ListNumbering` -Defined in: [lib/state.ts:84](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L84) +Defined in: [lib/state.ts:84](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L84) ##### `one` > `One` -Defined in: [lib/state.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L20) +Defined in: [lib/state.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L20) ##### `options` > [`Options`](modules.md#options) -Defined in: [lib/state.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L43) +Defined in: [lib/state.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L43) ##### `parseCitation` @@ -402,41 +402,41 @@ Defined in: [lib/state.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any): any; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | +| Name | Type | +| :--------- | :---- | | `citation` | `any` | -*Returns\`* +_Returns\`_ `any` -Defined in: [lib/state.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L60) +Defined in: [lib/state.ts:60](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L60) ##### `partialCitation` > `string` -Defined in: [lib/state.ts:62](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L62) +Defined in: [lib/state.ts:62](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L62) ##### `patch` > `Patch` -Defined in: [lib/state.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L18) +Defined in: [lib/state.ts:18](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L18) ##### `qNesting` > `number` -Defined in: [lib/state.ts:57](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L57) +Defined in: [lib/state.ts:57](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L57) ##### `relations` @@ -448,13 +448,13 @@ Defined in: [lib/state.ts:57](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -Defined in: [lib/state.ts:82](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L82) +Defined in: [lib/state.ts:82](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L82) ##### `resolve` > `Resolve` -Defined in: [lib/state.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L41) +Defined in: [lib/state.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L41) ##### `simpleParagraph` @@ -463,13 +463,13 @@ Defined in: [lib/state.ts:41](https://github.com/TrialAndErrorOrg/parsers/blob/ This makes it so that a paragraph is processed with `all` instead of more custom. Useful for e.g. footnotes or tables -Defined in: [lib/state.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L75) +Defined in: [lib/state.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L75) ##### `toFlow` > `ToFlow` -Defined in: [lib/state.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L24) +Defined in: [lib/state.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L24) ##### `toSpecificContent` @@ -477,31 +477,31 @@ Defined in: [lib/state.ts:24](https://github.com/TrialAndErrorOrg/parsers/blob/ ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (nodes: Content[], build: Function): ParentType[]; ``` -*Type parameters\`* +_Type parameters\`_ -* `ChildType` *extends* `MdastNode` -* `ParentType` *extends* `Object` +- `ChildType` _extends_ `MdastNode` +- `ParentType` _extends_ `Object` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | -| `nodes` | `Content`[] | +| Name | Type | +| :------ | :----------------- | +| `nodes` | `Content`[] | | `build` | () => `ParentType` | -*Returns\`* +_Returns\`_ `ParentType`[] -Defined in: [lib/state.ts:33](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L33) +Defined in: [lib/state.ts:33](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/state.ts#L33) -*** +--- ### `Handle` @@ -517,21 +517,21 @@ Defined in: [lib/state.ts:33](https://github.com/TrialAndErrorOrg/parsers/blob/ ##### `Parameters` -| Name | Type | -| :------ | :------ | -| `state` | [`State`](modules.md#state) | -| `node` | `any` | -| `parent?` | `Parent` | +| Name | Type | +| :-------- | :-------------------------- | +| `state` | [`State`](modules.md#state) | +| `node` | `any` | +| `parent?` | `Parent` | ##### `Returns` `MdastNode` | `MdastNode`[] | `void` | `undefined` -Defined in: [lib/types.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L59) +Defined in: [lib/types.ts:59](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-mdast/src/lib/types.ts#L59) # jote -*** +--- ### `all()` @@ -545,10 +545,10 @@ state.all(: State, parent: Parent, Data> | Node): MdastNode[]; #### Parameters -| Name | Type | Description | | -| :------- | :------------------------------- | :-------------------------- | - | -| `h` | [`H`](modules.md#h) | ooxast constructor function | | -| `parent` | `Parent`<`Node`<`Data`>, `Data`> | `Node` | | +| Name | Type | Description | | +| :------- | :------------------------------- | :-------------------------- | --- | +| `h` | [`H`](modules.md#h) | ooxast constructor function | | +| `parent` | `Parent`<`Node`<`Data`>, `Data`> | `Node` | | #### Returns @@ -556,7 +556,7 @@ state.all(: State, parent: Parent, Data> | Node): MdastNode[]; Defined in: [src/lib/all.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/all.ts#L10) -*** +--- ### `one()` @@ -580,7 +580,7 @@ state.one(: State, node: Node, parent?: Parent, Data>): MdastNode | M Defined in: [src/lib/one.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/one.ts#L8) -*** +--- ### `toMdast()` @@ -603,7 +603,7 @@ toMdast(tree: Element | Text | Root, options: Options): Root; Defined in: [src/lib/ooxast-util-to-unified-latex.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/ooxast-util-to-unified-latex.ts#L45) -*** +--- ### `defaultHandlers` @@ -611,7 +611,7 @@ Defined in: [src/lib/ooxast-util-to-unified-latex.ts:45](https://github.com/Tria Defined in: [src/lib/handlers/index.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/handlers/index.ts#L20) -*** +--- ### `Options` @@ -657,20 +657,20 @@ Defined in: [src/lib/types.ts:71](https://github.com/TrialAndErrorOrg/parsers/bl ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any, index: string | number): any; ``` -*Parameters\`* +_Parameters\`_ | Name | Type | | | :--------- | :------- | -------- | | `citation` | `any` | | | `index` | `string` | `number` | -*Returns\`* +_Returns\`_ `any` @@ -744,9 +744,9 @@ Options for the document class ###### Type declaration -| Member | Type | Description | -| :--------- | :---------- | :------------------------------------------------- | -| `name` | `string` | Name of the document class `Default` 'article' | +| Member | Type | Description | +| :--------- | :--------- | :------------------------------------------------- | +| `name` | `string` | Name of the document class `Default` 'article' | | `options`? | `string`[] | Options for the document class `Default` undefined | Defined in: [src/lib/types.ts:57](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L57) @@ -806,11 +806,11 @@ A list of packages to add to the preamble by default, the following packages are added: -* `xcolor` (if `xcolor` is enabled) -* `hyperref` -* `graphicx` -* `caption` -* `tabularx` (if `tabularx` is enabled) +- `xcolor` (if `xcolor` is enabled) +- `hyperref` +- `graphicx` +- `caption` +- `tabularx` (if `tabularx` is enabled) Defined in: [src/lib/types.ts:159](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L159) @@ -820,19 +820,19 @@ Defined in: [src/lib/types.ts:159](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any): any; ``` -*Parameters\`* +_Parameters\`_ | Name | Type | | :--------- | :---- | | `citation` | `any` | -*Returns\`* +_Returns\`_ `any` @@ -958,7 +958,7 @@ true Defined in: [src/lib/types.ts:112](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L112) -*** +--- ### `H` @@ -966,7 +966,7 @@ Defined in: [src/lib/types.ts:112](https://github.com/TrialAndErrorOrg/parsers/b Defined in: [src/lib/types.ts:292](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L292) -*** +--- ### `Handle` @@ -994,43 +994,43 @@ Defined in: [src/lib/types.ts:292](https://github.com/TrialAndErrorOrg/parsers/b Defined in: [src/lib/types.ts:196](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L196) -*** +--- ### `MdastNode` > `Root` | `String` | `Whitespace` | `Parbreak` | `Comment` | `Macro` | `Environment` | `VerbatimEnvironment` | `InlineMath` | `DisplayMath` | `Group` | `Verb` -Defined in: node\_modules/.pnpm/@unified-latex+unified-latex-types\@1.3.0/node\_modules/@unified-latex/unified-latex-types/libs/ast-types.d.ts:83 +Defined in: node_modules/.pnpm/@unified-latex+unified-latex-types\@1.3.0/node_modules/@unified-latex/unified-latex-types/libs/ast-types.d.ts:83 ## Support -* [x] Paragraphs -* [x] Headings -* [x] Blockquotes -* [x] Lists - * [x] Ordered and unordered - * [x] Starting at a number other than 1 - * [ ] Using a different bullet/number character (would require heavy HTML) -* [ ] Math (with [remark-math]) - * [x] LaTeX (you need to convert all the math in the Word Document to `linear` for this to work properly) - * [ ] OMML -* [ ] Citations (with [remark-cite]) -* [x] Tables (with [remark-gfm]) -* [x] Images -* [x] Footnotes -* [x] Endnotes -* [ ] Links - * [x] External hyperlinks - * [ ] Crossreferences -* [ ] Formatting - * [x] Strikethrough (with [remark-gfm]) - * [x] Emphasis - * [x] Strong - * [x] Superscript - * [x] Subscript - * [ ] Underline - * [ ] Highlight - * [ ] Color +- [x] Paragraphs +- [x] Headings +- [x] Blockquotes +- [x] Lists + - [x] Ordered and unordered + - [x] Starting at a number other than 1 + - [ ] Using a different bullet/number character (would require heavy HTML) +- [ ] Math (with [remark-math]) + - [x] LaTeX (you need to convert all the math in the Word Document to `linear` for this to work properly) + - [ ] OMML +- [ ] Citations (with [remark-cite]) +- [x] Tables (with [remark-gfm]) +- [x] Images +- [x] Footnotes +- [x] Endnotes +- [ ] Links + - [x] External hyperlinks + - [ ] Crossreferences +- [ ] Formatting + - [x] Strikethrough (with [remark-gfm]) + - [x] Emphasis + - [x] Strong + - [x] Superscript + - [x] Subscript + - [ ] Underline + - [ ] Highlight + - [ ] Color ## Types @@ -1047,61 +1047,32 @@ Defined in: node\_modules/.pnpm/@unified-latex+unified-latex-types\@1.3.0/node\_ [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-parse - [mdast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/mdast - [unified-latex-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/unified-latex-util-to-texast - [mdastscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/mdastscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-unified-latex - [ooxast-util-to-unified-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast-util-to-unified-latex - [unified-latex]: https://github.com/siefken/unified-latex diff --git a/libs/ooxast/ooxast-util-to-mdast/jest.config.js b/libs/ooxast/ooxast-util-to-mdast/jest.config.js index c002bc3d..df1358f0 100644 --- a/libs/ooxast/ooxast-util-to-mdast/jest.config.js +++ b/libs/ooxast/ooxast-util-to-mdast/jest.config.js @@ -10,7 +10,7 @@ const config = { }, testEnvironment: 'node', transform: { - '^.+.[tj]sx?$': ['@swc/jest', { 'swcrc': false }], + '^.+.[tj]sx?$': ['@swc/jest', { swcrc: false }], }, transformIgnorePatterns: [], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], diff --git a/libs/ooxast/ooxast-util-to-mdast/package.json b/libs/ooxast/ooxast-util-to-mdast/package.json index 30fa71f1..2b860ed4 100644 --- a/libs/ooxast/ooxast-util-to-mdast/package.json +++ b/libs/ooxast/ooxast-util-to-mdast/package.json @@ -35,5 +35,26 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "ooxast-util-citations": "*", + "xast-util-select": "*", + "xast-util-is-element": "*", + "xast-util-to-string": "^2.0.1", + "mdast-builder": "^1.1.1", + "csl-json": "0.1.0", + "@benrbray/micromark-extension-cite": "^1.0.0", + "@benrbray/mdast-util-cite": "^1.1.0", + "mdast-util-math": "^2.0.2", + "mdast-util-to-string": "^3.2.0", + "@unified-latex/unified-latex-builder": "^1.3.1", + "xast-util-from-xml": "^3.0.0", + "rehype-minify-whitespace": "^5.0.0", + "vfile": "^5.3.7", + "unist-util-position": "^4.0.4", + "extend": "^3.0.2", + "mdast-util-phrasing": "^3.0.1", + "hast-util-whitespace": "^2.0.1" + } } diff --git a/libs/ooxast/ooxast-util-to-mdast/project.json b/libs/ooxast/ooxast-util-to-mdast/project.json index efceea67..18e711b6 100644 --- a/libs/ooxast/ooxast-util-to-mdast/project.json +++ b/libs/ooxast/ooxast-util-to-mdast/project.json @@ -35,10 +35,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-to-mdast/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "deploy": { "executor": "ngx-deploy-npm:deploy", diff --git a/libs/ooxast/ooxast-util-to-mdast/src/lib/handlers/citation.spec.ts b/libs/ooxast/ooxast-util-to-mdast/src/lib/handlers/citation.spec.ts index beaac6d0..0213afe4 100755 --- a/libs/ooxast/ooxast-util-to-mdast/src/lib/handlers/citation.spec.ts +++ b/libs/ooxast/ooxast-util-to-mdast/src/lib/handlers/citation.spec.ts @@ -30,6 +30,6 @@ it('should return mendeley citation', () => { expect(csl).toBeDefined() expect( csl.title === - 'From Boulder to Stockholm in 70 years: Single case experimental designs in clinical research' + 'From Boulder to Stockholm in 70 years: Single case experimental designs in clinical research', ) }) diff --git a/libs/ooxast/ooxast-util-to-mdast/src/lib/handlers/test.json b/libs/ooxast/ooxast-util-to-mdast/src/lib/handlers/test.json index b2940d43..d34b986c 100755 --- a/libs/ooxast/ooxast-util-to-mdast/src/lib/handlers/test.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/lib/handlers/test.json @@ -28,9 +28,7 @@ "type": "article-journal", "volume": "306" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=2ff72fa7-d045-4f16-b5a4-27d849b07504" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=2ff72fa7-d045-4f16-b5a4-27d849b07504"] }, { "id": "ITEM-2", @@ -59,9 +57,7 @@ "type": "article-journal", "volume": "152" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=5004bfd7-ce98-49c3-a1d7-db69173c7609" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=5004bfd7-ce98-49c3-a1d7-db69173c7609"] }, { "id": "ITEM-3", @@ -99,9 +95,7 @@ "type": "article-journal", "volume": "85" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=d17914e5-d158-4b59-bf0c-02cc8d5847d7" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=d17914e5-d158-4b59-bf0c-02cc8d5847d7"] }, { "id": "ITEM-4", @@ -138,9 +132,7 @@ "type": "article-journal", "volume": "153" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=915562a7-fdd4-4e8b-af71-f03a2d817e80" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=915562a7-fdd4-4e8b-af71-f03a2d817e80"] } ], "mendeley": { diff --git a/libs/ooxast/ooxast-util-to-mdast/src/lib/util/get-listinfo.ts b/libs/ooxast/ooxast-util-to-mdast/src/lib/util/get-listinfo.ts index 07754c29..ae96ec8b 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/lib/util/get-listinfo.ts +++ b/libs/ooxast/ooxast-util-to-mdast/src/lib/util/get-listinfo.ts @@ -8,12 +8,8 @@ export function getListInfo(p: P) { const ilvl = select('w\\:ilvl', numPr) const numId = select('w\\:numId', numPr) return { - ilvl: ilvl?.attributes?.['w:val'] - ? parseInt(ilvl.attributes['w:val']) - : undefined, - numId: numId?.attributes?.['w:val'] - ? parseInt(numId.attributes['w:val']) - : undefined, + ilvl: ilvl?.attributes?.['w:val'] ? parseInt(ilvl.attributes['w:val']) : undefined, + numId: numId?.attributes?.['w:val'] ? parseInt(numId.attributes['w:val']) : undefined, } } diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/result.md b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/result.md index 87109bf9..eb099e79 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/result.md +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/result.md @@ -1,6 +1,3 @@ Some text[^1] -[^1]: A footnote. - - - +[^1]: A footnote. diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/test.mdast.json index a7e64ac6..f6b076fb 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/test.mdast.json @@ -57,4 +57,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/test.ooxast.json index ae7d5990..5a818393 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/footnotes/test.ooxast.json @@ -185,4 +185,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/result.md b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/result.md index 3529cdb7..02f6a014 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/result.md +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/result.md @@ -1,6 +1,6 @@ **Bold **not bold -*Italic* +_Italic_ [object Object] @@ -15,4 +15,3 @@ highlight yellow red text border - diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/test.mdast.json index d8886fd5..5d31c190 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/test.mdast.json @@ -111,4 +111,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/test.ooxast.json index 7a206a5c..a0aff3c1 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/formatting/test.ooxast.json @@ -848,4 +848,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/result.md b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/result.md index 2f9b8e0c..e0bf0830 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/result.md +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/result.md @@ -1,6 +1,3 @@ ![](media/image1.jpg) Figure 1: A pretty pic - - - diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/test.mdast.json index 67be3d8f..7b20dfae 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/test.mdast.json @@ -47,4 +47,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/test.ooxast.json index 26d71989..737b115d 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/image/test.ooxast.json @@ -460,4 +460,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/links/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/links/test.mdast.json index 40b3ec8c..2fa5f5b2 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/links/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/links/test.mdast.json @@ -41,4 +41,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/links/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/links/test.ooxast.json index 7a206a5c..a0aff3c1 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/links/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/links/test.ooxast.json @@ -848,4 +848,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/expected.md b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/expected.md index e5828c3f..653b38e2 100755 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/expected.md +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/expected.md @@ -6,13 +6,13 @@ 1. Indent -* Unordered +- Unordered -* List +- List -* Items +- Items - * Indentatio + - Indentatio 1. Continuing @@ -20,7 +20,7 @@ 3. List - 1. Indenting 4 + 1. Indenting 4 @@ -36,4 +36,4 @@ 1. Immediately starting other list - * And another list + - And another list diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/result.md b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/result.md index e5828c3f..653b38e2 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/result.md +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/result.md @@ -6,13 +6,13 @@ 1. Indent -* Unordered +- Unordered -* List +- List -* Items +- Items - * Indentatio + - Indentatio 1. Continuing @@ -20,7 +20,7 @@ 3. List - 1. Indenting 4 + 1. Indenting 4 @@ -36,4 +36,4 @@ 1. Immediately starting other list - * And another list + - And another list diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/test.mdast.json index ddc485f1..5201169e 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/test.mdast.json @@ -287,4 +287,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/test.ooxast.json index a417ecb1..d03ee060 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/lists/test.ooxast.json @@ -2095,4 +2095,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math-omml/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math-omml/test.mdast.json index 8100e905..072a5aea 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math-omml/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math-omml/test.mdast.json @@ -70,4 +70,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math-omml/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math-omml/test.ooxast.json index 4b369b1d..33b6964a 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math-omml/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math-omml/test.ooxast.json @@ -1757,4 +1757,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math/test.mdast.json index 13da4765..72e1b791 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math/test.mdast.json @@ -28,4 +28,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math/test.ooxast.json index 4b369b1d..33b6964a 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/math/test.ooxast.json @@ -1757,4 +1757,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/result.md b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/result.md index bf12e3db..76855f3f 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/result.md +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/result.md @@ -10,31 +10,29 @@ In their [[object Object]](https://archive.jtrialerror.com/pub/failfast/r Sindall and Barrington (2020) paint a compelling picture of an academic system that struggles to find a place for failure and the “multitude of sins” such a system necessarily perpetuates. Rightly so, they place the responsibility for change not only on researchers, but also funders and publication bodies. -But the buck doesn’t stop here. The same culture of success-ism that limits researchers limits individual publishers as well. The problem is diffuse and the blame cannot be laid on a single “bad actor”. Accordingly, we feel it pertinent to extend Sindall & Barrington’s argument by highlighting the structural barriers that restrict the spread of failure in the sciences, even at the editorial level. To do so, we use systems theory to frame three limitations journals face when publishing failure and how these limitations cannot simply be solved by good agents engaging in good science. - - +But the buck doesn’t stop here. The same culture of success-ism that limits researchers limits individual publishers as well. The problem is diffuse and the blame cannot be laid on a single “bad actor”. Accordingly, we feel it pertinent to extend Sindall & Barrington’s argument by highlighting the structural barriers that restrict the spread of failure in the sciences, even at the editorial level. To do so, we use systems theory to frame three limitations journals face when publishing failure and how these limitations cannot simply be solved by good agents engaging in good science. # 2. Failure and Systems -In the field of Human Factors, and more specifically in Forensic Human Factors, it has long been recognized that failure usually occurs in the complex environment of a system. When accidents such as the Chernobyl nuclear disaster occur, it is easy to shift blame to a single individual or to a single team that was present when mistakes occurred. In response to these disasters, these employees are subsequently reprimanded and sometimes fired. A new person might fill their position and, in some cases, training protocols might be updated. However, these are often very ineffective measures. As previously indicated, mistakes are made in a complex environment. This means that mistakes can have occurred for any number of reasons, and often because of a combination of reasons. Accordingly, removing just one factor from the environment (i.e., the employee present during the disaster) is unlikely to significantly diminish the chances of similar mistakes happening in the future, because it was unlikely to be the determining factor (Holden, 2009). +In the field of Human Factors, and more specifically in Forensic Human Factors, it has long been recognized that failure usually occurs in the complex environment of a system. When accidents such as the Chernobyl nuclear disaster occur, it is easy to shift blame to a single individual or to a single team that was present when mistakes occurred. In response to these disasters, these employees are subsequently reprimanded and sometimes fired. A new person might fill their position and, in some cases, training protocols might be updated. However, these are often very ineffective measures. As previously indicated, mistakes are made in a complex environment. This means that mistakes can have occurred for any number of reasons, and often because of a combination of reasons. Accordingly, removing just one factor from the environment (i.e., the employee present during the disaster) is unlikely to significantly diminish the chances of similar mistakes happening in the future, because it was unlikely to be the determining factor (Holden, 2009). Fields such as the aviation industry have long recognized that there are better alternatives to simply replacing or retraining staff following a negative incident. For instance, at the beginning of the proliferation of commercial flights, it became clear that cockpits were often too complicated for pilots to understand, which lead to mistakes being made, and consequently accidents occured. Instead of firing the pilots who made mistakes and/or making small changes to training protocols, the aviation industry started making changes to the cockpits themselves. In other words, the industry transformed the environment, not the agents. -By increasing the simplicity of the cockpit, pilots were less taxed and could invest more cognitive resources towards flying the plane. An example of such an environmental change is the adaptation of cockpit alarms. In older planes, cockpits would have the same audio-visual cues for every alarm. Thus, the pilot got the same feedback from the system when the fuel was slightly low as when an important engine was malfunctioning. Pilots were then mentally taxed on two levels: they were constantly confronted with distracting alarms, some of which might not need their immediate attention; and when attending to these alarms, they had to invest great effort in distinguishing the alarm and assessing its importance. As a result, pilots learned to ignore most alarms. A research article published in 1996 summarized problems such as these at the time as follows: “The proliferation of alarms has led to the increased likelihood of false or multiple alarm events and the consequent inability of the operator to determine the underlying cause of the alarm(s)” (Gilson et al., 1996, p. 12). Under such a system, a situation such as the following might occur: During a flight, one of the important engines malfunctions and needs immediate attention. At the same time, a number of other small, but non-urgent, malfunctions could occur. Because the very attentive, but overly taxed pilot cannot properly differentiate between the different alarms, they end up paying attention to the wrong malfunction. A short while later, the plane crashes. As recently as 2019, a plane crash occurred due to a poorly designed alarm system (Levin, 2019). +By increasing the simplicity of the cockpit, pilots were less taxed and could invest more cognitive resources towards flying the plane. An example of such an environmental change is the adaptation of cockpit alarms. In older planes, cockpits would have the same audio-visual cues for every alarm. Thus, the pilot got the same feedback from the system when the fuel was slightly low as when an important engine was malfunctioning. Pilots were then mentally taxed on two levels: they were constantly confronted with distracting alarms, some of which might not need their immediate attention; and when attending to these alarms, they had to invest great effort in distinguishing the alarm and assessing its importance. As a result, pilots learned to ignore most alarms. A research article published in 1996 summarized problems such as these at the time as follows: “The proliferation of alarms has led to the increased likelihood of false or multiple alarm events and the consequent inability of the operator to determine the underlying cause of the alarm(s)” (Gilson et al., 1996, p. 12). Under such a system, a situation such as the following might occur: During a flight, one of the important engines malfunctions and needs immediate attention. At the same time, a number of other small, but non-urgent, malfunctions could occur. Because the very attentive, but overly taxed pilot cannot properly differentiate between the different alarms, they end up paying attention to the wrong malfunction. A short while later, the plane crashes. As recently as 2019, a plane crash occurred due to a poorly designed alarm system (Levin, 2019). -Faced with the issue of the inattentive pilot, an airline company is presented with two solutions. On the one hand, the company could fire the pilot, hire a new one, and train them for a longer period of time, with a more experienced instructor, and with more expensive training equipment. Besides the fact that this would be very expensive, it would also be unlikely to solve the problem. Humans’ cognitive abilities are limited. This is because, like all human systems, their underlying biological systems operate on limited resources. Similarly, in the realms of cognition, some cognitive scientists believe you can train people for things like working memory, sustained attention, selective attention, and other cognitive skills, but all of these will have a natural ceiling—a point beyond which it is almost impossible to progress (Kwok et al., 2011; Traut et al., 2021). +Faced with the issue of the inattentive pilot, an airline company is presented with two solutions. On the one hand, the company could fire the pilot, hire a new one, and train them for a longer period of time, with a more experienced instructor, and with more expensive training equipment. Besides the fact that this would be very expensive, it would also be unlikely to solve the problem. Humans’ cognitive abilities are limited. This is because, like all human systems, their underlying biological systems operate on limited resources. Similarly, in the realms of cognition, some cognitive scientists believe you can train people for things like working memory, sustained attention, selective attention, and other cognitive skills, but all of these will have a natural ceiling—a point beyond which it is almost impossible to progress (Kwok et al., 2011; Traut et al., 2021). -In short, simply replacing or retraining bad agents doesn’t work on its own; we cannot reduce airplane crashes by just getting new and better pilots. As in aviation, the same can be said for scientific publication. The difference, however, as Sindall and Barrington point out, is that we are already in a nosedive when it comes to recognizing and publishing failure in science. +In short, simply replacing or retraining bad agents doesn’t work on its own; we cannot reduce airplane crashes by just getting new and better pilots. As in aviation, the same can be said for scientific publication. The difference, however, as Sindall and Barrington point out, is that we are already in a nosedive when it comes to recognizing and publishing failure in science. # # 3. Obstacles to Failure -# **As hinted at in the last section, we do not believe the issues Sandall and Barrigton (2020) bring up can be solved by simply creating better, more failure-friendly, journals. Rather, we argue that these issues are *****inherent *****in the *****structure***** of modern scientific practice. By “structural”, we mean that science as it is currently understood is defined by success; failure is *****not scientific***** under the current paradigm. Even when scientific failures are recognized, they are framed within the larger context of long-run success—”failing now to succeed later”—rather than as an integral part of the scientific process in its own right. In this regard, “structural” is quite literal, such that to displace the structure of success that builds up the modern scientific apparatus would mean challenging its integrity to the point of collapse. But where one structure collapses, another is built. The question is whether we need to be so radical. Can journals not simply reform their practices to allow for more diverse results to be published? Do we risk throwing the baby out with the bathwater?** +# **As hinted at in the last section, we do not believe the issues Sandall and Barrigton (2020) bring up can be solved by simply creating better, more failure-friendly, journals. Rather, we argue that these issues are \*\*\***inherent **\***in the **\***structure**\*** of modern scientific practice. By “structural”, we mean that science as it is currently understood is defined by success; failure is **\***not scientific**\*** under the current paradigm. Even when scientific failures are recognized, they are framed within the larger context of long-run success—”failing now to succeed later”—rather than as an integral part of the scientific process in its own right. In this regard, “structural” is quite literal, such that to displace the structure of success that builds up the modern scientific apparatus would mean challenging its integrity to the point of collapse. But where one structure collapses, another is built. The question is whether we need to be so radical. Can journals not simply reform their practices to allow for more diverse results to be published? Do we risk throwing the baby out with the bathwater?\*\* # **In this section, we raise the possibility that editorial reform may not be enough, or at least, that it may be very difficult. To do so, we discuss three issues that journals, who wish to publish scientific failure in the current landscape, face. Throughout, we use our experience at JOTE as a touchstone and example for some of these issues. ** -# **** +# \*\*\*\* ## 3.1. Funding @@ -42,13 +40,11 @@ It is JOTE’s mission to promote and normalize the process of failure in scienc As a result of this scarcity, journals may turn to article processing charges (APCs) as a way to maintain their services. This business-model is effective when the journal can provide services that financially-secure journals cannot (open access, equity, less emphasis on positive results), but becomes intractable when additional social costs are added on top of the economic ones. These social costs refer both to those experienced by the journal—loss of reputation (more on this below), difficulty finding reviewers and submissions, accusations of predation—and by the submitters, who bear the brunt of the cost and, for social reasons (e.g., working at a lesser-known institution, being from a non-Western background, etc.) may be restricted in their available funds. This issue is exacerbated for journals that encourage researchers to publish their failures, which, because of the “culture of success-ism” in academia, is already perceived as a socially costly endeavor. As a result, publishers that aim to counter this culture start off in a precarious position, limited in terms of traditional funding and at a disadvantage in asking would-be authors—who themselves experience the social and professional costs of publishing null results—for support. -Therefore, journals willing to publish and promote failure in science are left scrounging for funds, often relying on the goodwill of the editorial team to keep them afloat. Alternatively, journals can support the publicizing of failure through the publicizing of success, spinning the failure as an altruistic side-benefit of an otherwise traditional, positive-result-publishing, outlet for scientific advancement. While sometimes the only option, this “failure as an afterthought” mindset often contributes to the very culture of success-ism that the publication of failure in science aims to combat. - +Therefore, journals willing to publish and promote failure in science are left scrounging for funds, often relying on the goodwill of the editorial team to keep them afloat. Alternatively, journals can support the publicizing of failure through the publicizing of success, spinning the failure as an altruistic side-benefit of an otherwise traditional, positive-result-publishing, outlet for scientific advancement. While sometimes the only option, this “failure as an afterthought” mindset often contributes to the very culture of success-ism that the publication of failure in science aims to combat. +## 3.2. Prestige -## 3.2. Prestige - -Above and beyond financial stability, journals comfortable with the idea of publishing failure face an uphill battle with their own reputation. While science makes room for failure, a scientific method cannot be said to exist without people enacting it. This so-called scientific method is typically associated with academia, and while Sindall and Barrington are right to encourage people to be more “scientific” by sharing failure, the problem is an academic system that does not. Thus, many would-be authors are disincentivized from submitting their work to failure-friendly journals for fear that publicizing their null, negative, or unclear results would harm their reputation, decrease their chances to acquire funding in the future, and reflect poorly upon them as scientists. This reluctance to submit is a unique challenge that journals who publish failure face. Even positive-results-publishing low impact-factor journals have the benefit—if it can be called one—of researchers submitting their work there after they have exhausted more well-established outlets. In contrast, publishers that want to promote failure find themselves in the awkward position of having to convince researchers to publish their work *at all* (i.e., as opposed to scrapping the whole project), not to mention in their journal, for their peers to see. +Above and beyond financial stability, journals comfortable with the idea of publishing failure face an uphill battle with their own reputation. While science makes room for failure, a scientific method cannot be said to exist without people enacting it. This so-called scientific method is typically associated with academia, and while Sindall and Barrington are right to encourage people to be more “scientific” by sharing failure, the problem is an academic system that does not. Thus, many would-be authors are disincentivized from submitting their work to failure-friendly journals for fear that publicizing their null, negative, or unclear results would harm their reputation, decrease their chances to acquire funding in the future, and reflect poorly upon them as scientists. This reluctance to submit is a unique challenge that journals who publish failure face. Even positive-results-publishing low impact-factor journals have the benefit—if it can be called one—of researchers submitting their work there after they have exhausted more well-established outlets. In contrast, publishers that want to promote failure find themselves in the awkward position of having to convince researchers to publish their work _at all_ (i.e., as opposed to scrapping the whole project), not to mention in their journal, for their peers to see. Increasing the prestige of failure would contribute to an increased willingness on the part of academics to send in their failures. Examples of initiatives and changes that can increase the prestige of failure within academia include brilliant failure awards and changes to the priority rule. Brilliant failure awards, like other awards, signal what the awarder considers to be important and/or valuable. The priority rule refers to the tendency within science to award scientists who are the first to make a discovery, usually by giving them credit—for example, in the form of naming a theory or subject matter after them. Implicitly, the priority rule indicates that only the final success is worthy of reward, although this success often hasn't been possible without the failures of others along the way. Changing these incentives can motivate more researchers to publish their failure. @@ -60,11 +56,11 @@ It is not only at the submission phase, however, that the culture of success-ism Thus, in addition to battling for financial stability, publishers that seek to promote failure in science struggle to meet publication quotas or rally enthusiasm for publishing in their journal. The culture of success-ism in academia does double duty in this regard, draining failure-friendly journals’ wallets and potential contributors. -## 3**.3. ****Lack of Training ** +## 3**.3. \*\***Lack of Training \*\* -****Despite the challenges presented so far in this article, it is clear that not all academics or funders share the same unwavering commitment to success-ism (otherwise we wouldn’t be able to publish this editorial). Still, when journals that do promote failure and trial and error become operational, they face the stark realization that neither researchers nor editors nor reviewers are properly equipped to analyze and interpret failure or trial and error. +\*\*\*\*Despite the challenges presented so far in this article, it is clear that not all academics or funders share the same unwavering commitment to success-ism (otherwise we wouldn’t be able to publish this editorial). Still, when journals that do promote failure and trial and error become operational, they face the stark realization that neither researchers nor editors nor reviewers are properly equipped to analyze and interpret failure or trial and error. -Academic training in the sciences, whether it be in experimental design or statistical inference, focuses little on the positive interpretation of negative results. That is, scientists today are unequipped to constructively answer the question “what went wrong?” While more and more spaces are opening up to discuss failure in science, such as the WASH Failures Team created by Sindall and Barrington and others, there remains a lack of knowledge about how to critically evaluate failure in the sciences. This is reflected at all levels of the editorial process, from the submissions themselves,wherein reviewers often struggle to quantify or explain the scientific failure in question, to the peer reviews, wherein peer reviewers are used to critiquing a piece based on its positive contribution to the field rather than its negative influence on well-held ideas or techniques. +Academic training in the sciences, whether it be in experimental design or statistical inference, focuses little on the positive interpretation of negative results. That is, scientists today are unequipped to constructively answer the question “what went wrong?” While more and more spaces are opening up to discuss failure in science, such as the WASH Failures Team created by Sindall and Barrington and others, there remains a lack of knowledge about how to critically evaluate failure in the sciences. This is reflected at all levels of the editorial process, from the submissions themselves,wherein reviewers often struggle to quantify or explain the scientific failure in question, to the peer reviews, wherein peer reviewers are used to critiquing a piece based on its positive contribution to the field rather than its negative influence on well-held ideas or techniques. This lack of knowledge about how to critically evaluate failure extends beyond the sciences to many other types of work such as so-called high-risk industries (Bevilacqua & Ciarapica, 2018). This lack of knowledge is not due to a lack of literature on the topic. In philosophy, the process of what we have called “trial and error” has been analyzed in a wide range of contexts. In fields like evolutionary epistemology, agnotology, and within the thought experiments of intuition pumps, much attention is paid to the role of trial and error and failure in the process of gaining knowledge. Additionally, a significant part of the field of Human Factors is dedicated to the analysis and prevention of failure—taking into consideration processes of trial and error. The problem doesn’t seem to be what knowledge is available, but rather what knowledge is known by the relevant actors and put into practice. @@ -74,37 +70,32 @@ In the meantime however, the onus of structuring failure falls on the editorial # -# 4**. ****Destined to Fail?** +# 4**. \*\***Destined to Fail?\*\* -****Sindall and Barrington (2020) highlight the need for “more structured ways to report on failures” in science. We could not agree more. However, there are very real, structural, limitations from a publisher’s perspective that makes this goal very difficult to achieve. Thus, we argue that it is not only that “\[j]ournals *want* to publish novel research and failure is too often not seen as novel” (italics added), but that oftentimes doing elsewise is self-destructive. +\**\*\*Sindall and Barrington (2020) highlight the need for “more structured ways to report on failures” in science. We could not agree more. However, there are very real, structural, limitations from a publisher’s perspective that makes this goal very difficult to achieve. Thus, we argue that it is not only that “\[j]ournals *want\* to publish novel research and failure is too often not seen as novel” (italics added), but that oftentimes doing elsewise is self-destructive. That being said, JOTE is in a fortunate position where we have (and continue to) overcome many of the challenges discussed in this editorial. We do so by leaning into our unorthodoxy, embracing failure wholeheartedly and interdisciplinarily, and tirelessly working to draw informative conclusions from inconclusive results. Nevertheless, the question must be asked: “In the current scientific climate, is this model sustainable?” To that, we must answer with a clear “no”. The evidence is clear that failure is required for a healthy science to flourish. The fact that failure has not even yet budded in the sciences highlights the incompatibility of the current model of scientific success and the promotion of scientific failure. Rather than aim for a reformed system that accommodates failure, our goal is to help usher in a new system wherein failure is a necessary component in scientific progress and discourse. In other words, JOTE’s goal is to become obsolete. That is, one day, we hope that our efforts contribute to the formation of a scientific mainstream that recognizes the integral role that failure plays in the scientific process and actively normalizes its publication. -But how to achieve this goal? This piece, alongside Sindall and Barrington’s, has emphasized the many obstacles that publishers and researchers alike face in the publication and promotion of failure. While it may seem like there is no way out of success-first science, we offer some suggestions here for changes in academia and publishing. In the aviation industry, a nosedived airplane leads to multiple thorough investigations into the circumstances that lead to the problem. This is then followed up with an integral solution, taking into account different factors and their relation to each other. Likewise, in academia and publishing, multiple studies have analyzed the conditions which gave rise to the problem of positive publication bias. Now is the time to start with an integral solution, where instead of tackling positive publication bias from just one angle, researchers, editors, publishers, and managers all work together to solve the problem. In an attempt to facilitate this process, JOTE is increasing its collaborations - for example, by setting up a brilliant failure award at Utrecht University together with Utrecht Young Academy (and hopefully elsewhere), and by providing lunch lectures about failure and uncertainty at University Medical Centers, which we are starting to do with the help of The New Utrecht School. To reflect this shift from mostly publishing to a broader focus, we will launch the Center of Trial and Error—a place where all our activities come together. The long-term goal is to create an academic culture where failure is an accepted part of the scientific process. +But how to achieve this goal? This piece, alongside Sindall and Barrington’s, has emphasized the many obstacles that publishers and researchers alike face in the publication and promotion of failure. While it may seem like there is no way out of success-first science, we offer some suggestions here for changes in academia and publishing. In the aviation industry, a nosedived airplane leads to multiple thorough investigations into the circumstances that lead to the problem. This is then followed up with an integral solution, taking into account different factors and their relation to each other. Likewise, in academia and publishing, multiple studies have analyzed the conditions which gave rise to the problem of positive publication bias. Now is the time to start with an integral solution, where instead of tackling positive publication bias from just one angle, researchers, editors, publishers, and managers all work together to solve the problem. In an attempt to facilitate this process, JOTE is increasing its collaborations - for example, by setting up a brilliant failure award at Utrecht University together with Utrecht Young Academy (and hopefully elsewhere), and by providing lunch lectures about failure and uncertainty at University Medical Centers, which we are starting to do with the help of The New Utrecht School. To reflect this shift from mostly publishing to a broader focus, we will launch the Center of Trial and Error—a place where all our activities come together. The long-term goal is to create an academic culture where failure is an accepted part of the scientific process. -Therefore, while we are flattered by Sindall’s and Barrington’s (2020) hope that the Journal of Trial and Error won’t be the last “outlet for failure”, we certainly hope that we will be the last of our kind. We look forward to the day where founding a journal based only on failure is regarded as just as inane as founding one based solely on success. +Therefore, while we are flattered by Sindall’s and Barrington’s (2020) hope that the Journal of Trial and Error won’t be the last “outlet for failure”, we certainly hope that we will be the last of our kind. We look forward to the day where founding a journal based only on failure is regarded as just as inane as founding one based solely on success. # # References -Bevilacqua, M., & Ciarapica, F. E. (2018). Human factor risk management in the process industry: A case study. *Reliability Engineering & System Safety, 169*, 149-159. DOI: - - - -Gilson, R.D., Deaton, J.E., & Mouloua, M. (1996). Coping with complex alarms: Sophisticated aircraft cockpit alarm systems demand a shift in training strategies. *Ergonomics in Design: The Quarterly of Human Factors Applications, 4*(4), 12-18. [https://doi.org/10.1177/106480469600400404](https://doi.org/10.1177%2F106480469600400404) - - +Bevilacqua, M., & Ciarapica, F. E. (2018). Human factor risk management in the process industry: A case study. _Reliability Engineering & System Safety, 169_, 149-159. DOI: -Holden, R. J. (2009). People or systems? To blame is human. The fix is to engineer. *Professional safety, 54*(12), 34-41. +Gilson, R.D., Deaton, J.E., & Mouloua, M. (1996). Coping with complex alarms: Sophisticated aircraft cockpit alarm systems demand a shift in training strategies. _Ergonomics in Design: The Quarterly of Human Factors Applications, 4_(4), 12-18. [https://doi.org/10.1177/106480469600400404](https://doi.org/10.1177%2F106480469600400404) -Kwok, T. C., Chau, W. W., Yuen, K. S., Wong, A. Y., Li, J. C., Shiu, R. Y., & Ho, F. K. (2011). Who would benefit from memory training? A pilot study examining the ceiling effect of concurrent cognitive stimulation. *Clinical Interventions in Aging, 6*, 83-88. https\://doi.org/10.2147/CIA.S16802 +Holden, R. J. (2009). People or systems? To blame is human. The fix is to engineer. _Professional safety, 54_(12), 34-41. -Levin, A. (2019, September 26). *Boeing failed to predict that slew of 737 Max warning alarms would confuse pilots, investigators say*. TIME. [[object Object]](https://time.com/5687473/boeing-737-alarm-system/) +Kwok, T. C., Chau, W. W., Yuen, K. S., Wong, A. Y., Li, J. C., Shiu, R. Y., & Ho, F. K. (2011). Who would benefit from memory training? A pilot study examining the ceiling effect of concurrent cognitive stimulation. _Clinical Interventions in Aging, 6_, 83-88. https\://doi.org/10.2147/CIA.S16802 -Sindall, R.C., & Barrington, D.J. (2020). Fail fast, fail forward, fail openly: The need to share failures in development. *Journal of Trial and Error, 1*(1), 6-8. +Levin, A. (2019, September 26). _Boeing failed to predict that slew of 737 Max warning alarms would confuse pilots, investigators say_. TIME. [[object Object]](https://time.com/5687473/boeing-737-alarm-system/) -Traut, H. J., Guild, R. M., & Munakata, Y. (2021). Why does cognitive training yield inconsistent benefits? A meta-analysis of individual differences in baseline cognitive abilities and training outcomes.* Frontiers in psychology, 12*, 1-20. https\://doi.org/10.3389/fpsyg.2021.662139 +Sindall, R.C., & Barrington, D.J. (2020). Fail fast, fail forward, fail openly: The need to share failures in development. _Journal of Trial and Error, 1_(1), 6-8. +Traut, H. J., Guild, R. M., & Munakata, Y. (2021). Why does cognitive training yield inconsistent benefits? A meta-analysis of individual differences in baseline cognitive abilities and training outcomes._ Frontiers in psychology, 12_, 1-20. https\://doi.org/10.3389/fpsyg.2021.662139 diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/test.mdast.json index 6e11a545..a777e66d 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/test.mdast.json @@ -940,4 +940,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/test.ooxast.json index f3ec1a8f..438fddfe 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/nocites/test.ooxast.json @@ -12382,4 +12382,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/styles/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/styles/test.mdast.json index 4be5d17e..f14380de 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/styles/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/styles/test.mdast.json @@ -70,4 +70,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/styles/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/styles/test.ooxast.json index b70553f0..d3afa34d 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/styles/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/styles/test.ooxast.json @@ -858,4 +858,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/expected.md b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/expected.md index a3d9d3b5..b374fb00 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/expected.md +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/expected.md @@ -1,6 +1,6 @@ -| | | | | -| :---------------- | ----------------- | - | - | -| a | A | A | S | -| a | Three merged guys | | | -| ***bold italic*** | | | | -| | | | | +| | | | | +| :---------------- | ----------------- | --- | --- | +| a | A | A | S | +| a | Three merged guys | | | +| **_bold italic_** | | | | +| | | | | diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/result.md b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/result.md index a3d9d3b5..b374fb00 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/result.md +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/result.md @@ -1,6 +1,6 @@ -| | | | | -| :---------------- | ----------------- | - | - | -| a | A | A | S | -| a | Three merged guys | | | -| ***bold italic*** | | | | -| | | | | +| | | | | +| :---------------- | ----------------- | --- | --- | +| a | A | A | S | +| a | Three merged guys | | | +| **_bold italic_** | | | | +| | | | | diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/test.mdast.json index 1151a806..58a70dde 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/test.mdast.json @@ -114,9 +114,7 @@ "children": [] } ], - "align": [ - "left" - ] + "align": ["left"] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/test.ooxast.json index 025dc427..8f973281 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/tables/test.ooxast.json @@ -2561,4 +2561,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/result.md b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/result.md index cd0c8f27..f82efcd6 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/result.md +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/result.md @@ -4,7 +4,7 @@ Carryover Effects for Threat in the Dot-Probe Task Abstract -Threatening stimuli are often thought to have sufficient potency to bias attention, relative to neutral stimuli. Researchers and clinicians opt for frequently used paradigms to measure such bias, such as the dot-probe task. Bias to threat in the dot-probe task is indicated by a congruency effect i.e., faster responses on congruent trials than incongruent trials (also referred to as attention capture). However, recent studies have found that such congruency effects are small and suffer from poor internal reliability. One explanation to low effect sizes and poor reliability is *carryover effects* of threat – greater congruency effects on trials following a congruent trial relative to trials following an incongruent trial. In the current study, we investigated carryover effects of threat with two large samples of healthy undergraduate students who completed a typical dot-probe task. Although we found a small congruency effect for fearful faces (Experiment 1, *n* = 241, *d *= 0.15) and a reverse congruency effect for threatening images, (Experiment 2, *n *= 82, *d *= 0.11) whereas no carryover effects for threat were observed in either case. Bayesian analyses revealed moderate to strong evidence in favor of the null hypothesis. We conclude that carryover effects for threat do not influence attention bias for threat. +Threatening stimuli are often thought to have sufficient potency to bias attention, relative to neutral stimuli. Researchers and clinicians opt for frequently used paradigms to measure such bias, such as the dot-probe task. Bias to threat in the dot-probe task is indicated by a congruency effect i.e., faster responses on congruent trials than incongruent trials (also referred to as attention capture). However, recent studies have found that such congruency effects are small and suffer from poor internal reliability. One explanation to low effect sizes and poor reliability is _carryover effects_ of threat – greater congruency effects on trials following a congruent trial relative to trials following an incongruent trial. In the current study, we investigated carryover effects of threat with two large samples of healthy undergraduate students who completed a typical dot-probe task. Although we found a small congruency effect for fearful faces (Experiment 1, _n_ = 241, _d _= 0.15) and a reverse congruency effect for threatening images, (Experiment 2, _n _= 82, _d _= 0.11) whereas no carryover effects for threat were observed in either case. Bayesian analyses revealed moderate to strong evidence in favor of the null hypothesis. We conclude that carryover effects for threat do not influence attention bias for threat. **Keywords:** dot-probe, emotional cues, carryover effects, attention bias, threat @@ -20,13 +20,13 @@ Do Carryover Effects Influence Attentional Bias to Threat in the Dot-Probe Task? Emotional stimuli are thought to receive prioritized processing. Threatening stimuli like angry and fearful facial expressions of emotion often “beat-out” neutral or innocuous objects [@Becker2017undefinedundefined][@Schubö2006undefinedundefined] in the competition over spatial attentional resources [@Desimone1995undefinedundefined]. Attentional bias to threat is a topic of research that intersects many domains and is an essential function for a variety of organisms [@Anderson2019undefinedundefined]. -One of the most commonly used tasks to assess attentional bias to threat is the dot-probe task [@MacLeod1986undefinedundefined]. In a typical dot-probe task, participants search for the location of a target dot and indicate its position (left or right side of the screen) with a corresponding keypress. Immediately prior to the presentation of the target dot, two adjacent cues (one neutral and one threatening cue) are simultaneously presented for a very brief period (e.g., 100 millisecond (ms)). On congruent trials, the dot appears at the location of the threatening cue, whereas on incongruent trials, the dot appears at the location of the neutral cue (see Figure 1A). Each cue is completely irrelevant to the current task demands. And yet, the threatening cue biases attention to a greater extent than the neutral cue, as shown by faster response times (RTs) for congruent trials relative to incongruent trials (for reviews, see [@Carretié2014undefinedundefined][@Imhoff2019undefinedundefined]. This effect is known as a *congruency effect*, or attentional capture by threat or attentional bias to threat. +One of the most commonly used tasks to assess attentional bias to threat is the dot-probe task [@MacLeod1986undefinedundefined]. In a typical dot-probe task, participants search for the location of a target dot and indicate its position (left or right side of the screen) with a corresponding keypress. Immediately prior to the presentation of the target dot, two adjacent cues (one neutral and one threatening cue) are simultaneously presented for a very brief period (e.g., 100 millisecond (ms)). On congruent trials, the dot appears at the location of the threatening cue, whereas on incongruent trials, the dot appears at the location of the neutral cue (see Figure 1A). Each cue is completely irrelevant to the current task demands. And yet, the threatening cue biases attention to a greater extent than the neutral cue, as shown by faster response times (RTs) for congruent trials relative to incongruent trials (for reviews, see [@Carretié2014undefinedundefined][@Imhoff2019undefinedundefined]. This effect is known as a _congruency effect_, or attentional capture by threat or attentional bias to threat. While congruency effects are often assessed by the dot-probe task [@Kruijt2018undefinedundefined][@Mogg2017undefinedundefined], they have come under scrutiny for poor internal and test-retest reliability [@Schmukle2005undefinedundefined][@Staugaard2009undefinedundefined]. One root cause of these issues is that difference scores are inherently unreliable [@Hedge2018undefinedundefined]. However, some studies have found that attention (and congruency effects) may fluctuate towards and away from threat during the course of an experiment ([@Zvielli2015undefinedundefined]. This suggests attention bias variability could be a meaningful element of attention bias. However, these trial-to-trial variability measures appear to be strongly related to general RT variability ([@Carlson2020undefinedundefined][@Kruijt2016undefinedundefined]. Identifying new sources of potential variation—like carryover effects —in the dot-probe task is beneficial because they could be accounted for in future studies. Carryover Effects -Suppose that an individual’s attention was biased towards a threatening stimulus—like a fearful face—during a congruent trial of a dot-probe task. Such bias could impact the individual’s internal state [@Panksepp2011undefinedundefined], priming, or increase their association between the target and the threatening cue, which could subsequently cause them to be more biased towards threat in later trials. A persistent bias for threatening stimuli is quite plausible given that threatening cues can also bring about attentional dwelling towards themselves [@Carlson2014undefinedundefined][@Fox2001undefinedundefined]. In the past, others have found carryover effects in the emotional Stroop [@Cane2009undefinedundefined][@Clarke2015undefinedundefined][@Waters2005undefinedundefined][@Wilson2007undefinedundefined] and diagonalized visual probe task [@Gladwin2019undefinedundefined][@Gladwin2020undefinedundefined][@Gladwin2019aundefinedundefined]. In these tasks, attentional bias to an emotional cue (i.e., difference in RTs between congruent and incongruent trials) is greater when the previous trial is congruent, otherwise known as a *carryover effect *[@Gladwin2019undefinedundefined]. +Suppose that an individual’s attention was biased towards a threatening stimulus—like a fearful face—during a congruent trial of a dot-probe task. Such bias could impact the individual’s internal state [@Panksepp2011undefinedundefined], priming, or increase their association between the target and the threatening cue, which could subsequently cause them to be more biased towards threat in later trials. A persistent bias for threatening stimuli is quite plausible given that threatening cues can also bring about attentional dwelling towards themselves [@Carlson2014undefinedundefined][@Fox2001undefinedundefined]. In the past, others have found carryover effects in the emotional Stroop [@Cane2009undefinedundefined][@Clarke2015undefinedundefined][@Waters2005undefinedundefined][@Wilson2007undefinedundefined] and diagonalized visual probe task [@Gladwin2019undefinedundefined][@Gladwin2020undefinedundefined][@Gladwin2019aundefinedundefined]. In these tasks, attentional bias to an emotional cue (i.e., difference in RTs between congruent and incongruent trials) is greater when the previous trial is congruent, otherwise known as a _carryover effect _[@Gladwin2019undefinedundefined]. As for dot-probe studies, however, there is not yet a clear answer on this topic given the very limited number of studies. In one dot-probe study that used threatening faces, no carryover effects were observed [@Hill2016undefinedundefined]. In another study, carryover effects were only observed for accuracy measures, and not RTs (for non-face stimuli, [@Gladwin2017undefinedundefined]. But these two studies have serious limitations: one used a small sample [@Gladwin2017undefinedundefined], and the other measured carryover effects after attention training was administered [@Hill2016undefinedundefined]. Here we improve upon these limitations by examining the same question with a large sample of healthy undergraduate students who completed a typical dot-probe task. @@ -38,9 +38,9 @@ Experiment 1 ### Methods -*Participants. *Participants with an overall accuracy below 90% percent (eight in total) were removed from all analyses, leaving a final sample size of 241 (*M*[object Object] = 21.4, *SD*[object Object] = 4.3; 178 females). The data reported here were acquired during a screening session of a larger study on attention bias modification and brain structure, funded by the National Institute of Mental Health (NCT03092609). A portion of the current sample (*n* = 127) were included in Experiment 1 of [@Carlson2020undefinedundefined]. The study was approved by the UNIVERSITY Institutional Review Board. Participants received monetary compensation for their participation. +*Participants. *Participants with an overall accuracy below 90% percent (eight in total) were removed from all analyses, leaving a final sample size of 241 (_M_[object Object] = 21.4, _SD_[object Object] = 4.3; 178 females). The data reported here were acquired during a screening session of a larger study on attention bias modification and brain structure, funded by the National Institute of Mental Health (NCT03092609). A portion of the current sample (_n_ = 127) were included in Experiment 1 of [@Carlson2020undefinedundefined]. The study was approved by the UNIVERSITY Institutional Review Board. Participants received monetary compensation for their participation. -*Stimuli and Apparatus. *The procedure was administered with a PC and a 16” LCD computer monitor. Stimuli consisted of 20 fearful and neutral grayscale faces of 10 different actors (half female; [@Gur2002undefinedundefined][@Lundqvist1998undefinedundefined]. Fearful faces were rated (1-9, unpleasant to pleasant) as more negative (*M* = 3.83, *SD* = 0.30) than neutral pictures (*M* = 4.45, *SD* = 0.52), *t*(18) = 3.23, *p* = .005, *d* = 1.48. Faces subtended a visual width and height of 5 × 7 and the distance between the center of each face subtended 14. +*Stimuli and Apparatus. *The procedure was administered with a PC and a 16” LCD computer monitor. Stimuli consisted of 20 fearful and neutral grayscale faces of 10 different actors (half female; [@Gur2002undefinedundefined][@Lundqvist1998undefinedundefined]. Fearful faces were rated (1-9, unpleasant to pleasant) as more negative (_M_ = 3.83, _SD_ = 0.30) than neutral pictures (_M_ = 4.45, _SD_ = 0.52), _t_(18) = 3.23, _p_ = .005, _d_ = 1.48. Faces subtended a visual width and height of 5 × 7 and the distance between the center of each face subtended 14. **\[Insert Figure 1 here]** @@ -50,25 +50,25 @@ Experiment 1 Results -All trials with an incorrect response (2.2% of trials) or a response time outside of 3 standard deviations from the individual-wise and condition means were removed from all RT analyses (0.6% of trials). Attentional bias was measured by subtracting mean RTs for congruent trials from incongruent trials. Positive values indicate the level of attentional bias for fearful faces. All analyses were not pre-registered but were pre-planned. As shown in Figure 2A, RTs for congruent trials (*M = *331 ms, *SD* of 72 ms) were significantly shorter for incongruent trials (*M = *342 ms, *SD* of 72 ms), *t*(240) = 20.56, *p* < .001, *d *= 0.16. A congruency effect was also found for percent correct (1.5%), *t*(240) = 14.31, *p* < .001, *d *= 0.11. +All trials with an incorrect response (2.2% of trials) or a response time outside of 3 standard deviations from the individual-wise and condition means were removed from all RT analyses (0.6% of trials). Attentional bias was measured by subtracting mean RTs for congruent trials from incongruent trials. Positive values indicate the level of attentional bias for fearful faces. All analyses were not pre-registered but were pre-planned. As shown in Figure 2A, RTs for congruent trials (*M = *331 ms, _SD_ of 72 ms) were significantly shorter for incongruent trials (*M = *342 ms, _SD_ of 72 ms), _t_(240) = 20.56, _p_ < .001, _d _= 0.16. A congruency effect was also found for percent correct (1.5%), _t_(240) = 14.31, _p_ < .001, _d _= 0.11. -As shown in Figure 2B, carryover effects are measured as the interaction between previous trial congruency (pre-congruent or pre-incongruent) and current trial congruency (congruent or incongruent). The location of the fearful face and the target could repeat from trial to trial, so we further separated carryover effects by target location repetition. We examined target location repetition for two reasons: (a) it is an exploratory approach to analyzing carryover effects and (b) previous studies on carryover effects [@Gladwin2019aundefinedundefined] have deliberately prevented cue and target locations repetitions trial-to-trial. We tested for the presence of carryover effects by conducting a 2 × 2 × 2 Generalized Linear Mixed Model (GLMM) with the random effect of subject and the fixed effects of current trial congruency (congruent or incongruent), previous trial congruency (pre-congruent or pre-incongruent) and target location repetition (repeated or non-repeated) on single trial RTs using a Gamma probability distribution with a log link, which accounts for the slightly positive skew of the data[^1]. Target location repetition was included in the model because previous studies of carryover effects deliberately chose to prevent target locations repetition between trials [@Gladwin2019aundefinedundefined], which leaves open the possibility that target repetition may moderate carryover effects. Similar to the t-test reported above, there was a main effect of current trial type, *F*(1, 46115) = 348.91, *p *< .001: RTs were faster on congruent (*M *= 329, *SD** *= 68) relative to incongruent (*M *= 339, *SD *= 69) trials. There was also a main effect of target location repetition (*F*(1, 46115) = 222.06, *p *< .001) wherein RTs were faster for non-repeated target locations (*M *= 330, *SE *= 2.32) relative to repeated locations (*M *= 338, *SE *= 2.38). There was also an interaction between target location repetition and previous trial congruency (*F*(1, 46115) = 6.08, *p *= .01) such that RTs for non-repeated target locations were faster if the previous trial was congruent (*M *= 329, *SE *= 2.34) relative to incongruent (*M *= 331, *SE *= 2.36). Meanwhile, for repeated target location there was no statistically significant difference in RTs between trials where the previous trial was congruent (*M *= 339, *SE *= 2.42) relative to incongruent (*M *= 338, *SE *= 2.42). Critically, neither the 2-way interaction between current trial congruency and previous trial congruency (*F*(1, 46115) = 0.59, *p *= .44) nor the 3-way interaction (*F*(1, 46115) = 0.84, *p *= .36) were significant, indicating that no carryover effects were observed. No other effects were significant. +As shown in Figure 2B, carryover effects are measured as the interaction between previous trial congruency (pre-congruent or pre-incongruent) and current trial congruency (congruent or incongruent). The location of the fearful face and the target could repeat from trial to trial, so we further separated carryover effects by target location repetition. We examined target location repetition for two reasons: (a) it is an exploratory approach to analyzing carryover effects and (b) previous studies on carryover effects [@Gladwin2019aundefinedundefined] have deliberately prevented cue and target locations repetitions trial-to-trial. We tested for the presence of carryover effects by conducting a 2 × 2 × 2 Generalized Linear Mixed Model (GLMM) with the random effect of subject and the fixed effects of current trial congruency (congruent or incongruent), previous trial congruency (pre-congruent or pre-incongruent) and target location repetition (repeated or non-repeated) on single trial RTs using a Gamma probability distribution with a log link, which accounts for the slightly positive skew of the data[^1]. Target location repetition was included in the model because previous studies of carryover effects deliberately chose to prevent target locations repetition between trials [@Gladwin2019aundefinedundefined], which leaves open the possibility that target repetition may moderate carryover effects. Similar to the t-test reported above, there was a main effect of current trial type, _F_(1, 46115) = 348.91, _p _< .001: RTs were faster on congruent (_M _= 329, _SD\*\* _= 68) relative to incongruent (_M _= 339, _SD _= 69) trials. There was also a main effect of target location repetition (_F_(1, 46115) = 222.06, _p _< .001) wherein RTs were faster for non-repeated target locations (_M _= 330, _SE _= 2.32) relative to repeated locations (_M _= 338, _SE _= 2.38). There was also an interaction between target location repetition and previous trial congruency (_F_(1, 46115) = 6.08, _p _= .01) such that RTs for non-repeated target locations were faster if the previous trial was congruent (_M _= 329, _SE _= 2.34) relative to incongruent (_M _= 331, _SE _= 2.36). Meanwhile, for repeated target location there was no statistically significant difference in RTs between trials where the previous trial was congruent (_M _= 339, _SE _= 2.42) relative to incongruent (_M _= 338, _SE _= 2.42). Critically, neither the 2-way interaction between current trial congruency and previous trial congruency (_F_(1, 46115) = 0.59, _p _= .44) nor the 3-way interaction (_F_(1, 46115) = 0.84, _p _= .36) were significant, indicating that no carryover effects were observed. No other effects were significant. We followed up the GLMM approach with a Bayesian analysis. Given that there were no clear prior probabilities based on previous research, a diffuse (or uninformative) prior was used in SPSS to quantify evidence for the null hypothesis that there is no carryover effect for threat. A Bayes Factor analysis on a related-sample t-test indicated moderate evidence for the null hypothesis (BF01 = 5.38). In other words, the data is 5.38 times as likely under the null hypothesis than under the alternative hypothesis (i.e., that there is an influence of previous trial congruency on current trial congruency). Experiment 2 -****In Experiment 2, our goal was to replicate and extend our lack of carryover effects with another category of threatening stimuli: threatening images [@Lang2008undefinedundefined]. We used data from Experiment 2 of [@Carlson2020undefinedundefined]. The method for Experiment 2 is the same as Experiment 1 except for the following. +\*\*\*\*In Experiment 2, our goal was to replicate and extend our lack of carryover effects with another category of threatening stimuli: threatening images [@Lang2008undefinedundefined]. We used data from Experiment 2 of [@Carlson2020undefinedundefined]. The method for Experiment 2 is the same as Experiment 1 except for the following. ### Method -*Participants. *Participants with an overall accuracy below 90% percent (4 in total) were removed from all analyses, leaving a final sample size of 82 (*M*[object Object] = 20, *SD*[object Object] = 2.2; 61 females). +*Participants. *Participants with an overall accuracy below 90% percent (4 in total) were removed from all analyses, leaving a final sample size of 82 (_M_[object Object] = 20, _SD_[object Object] = 2.2; 61 females). *Stimuli and Apparatus. *The visual angle between the two stimuli presented in the cue display subtended a visual angle of 12°. The images used in the cue display were taken from the International Affective Picture System (IAPS; [@Lang2008200undefined]. 10 threatening and 10 neutral images were used, and the cue display was shown for 500 ms. ### Results -## Outlier RT trials were removed from all analyses (0.5% of trials). To test for carryover effects, we conducted the same 2 × 2 × 2 Generalized Linear Mixed Model on RTs as in Experiment 1. There was a main effect of current trial type (*F*(1, 15869) = 16.21, *p *< .001) wherein RTs were faster for incongruent (*M *= 345 , *SE *= 4.06) relative to congruent trials (*M *= 349, *SE *= 4.11). Note that this effect indicates attentional bias to neutral, not threatening images, (see Figure 2C) which also might indicate for threatening images. There was also a main effect of target location repetition, *F*(1, 15869 = 167.53, *p *< .001), wherein RTs were faster for trials with non-repeated target locations (*M *= 340, *SE *= 4.00) compared to repeated locations (*M *= 354, *SE *= 4.17). However, as in Experiment 1, neither the 2-way interaction between current trial congruency and previous trial congruency (*F*(1, 15869) = 0.53, *p *= .47) nor were the 3-way interactions (*F*(1, 15869) = 0.01, *p *= .92) significant (see Figure 2D). Thus, no carryover effects were observed. In addition, no other effects were significant. We again followed up the GLMM approach with the same Bayesian analysis. For Experiment 2, we found strong evidence for the null hypothesis (BF01 = 11.27) indicating that the data are 11.27 times more likely under the null hypothesis than under the hypothesized existence of a carryover effect for threat. +## Outlier RT trials were removed from all analyses (0.5% of trials). To test for carryover effects, we conducted the same 2 × 2 × 2 Generalized Linear Mixed Model on RTs as in Experiment 1. There was a main effect of current trial type (_F_(1, 15869) = 16.21, _p _< .001) wherein RTs were faster for incongruent (_M _= 345 , _SE _= 4.06) relative to congruent trials (_M _= 349, _SE _= 4.11). Note that this effect indicates attentional bias to neutral, not threatening images, (see Figure 2C) which also might indicate for threatening images. There was also a main effect of target location repetition, _F_(1, 15869 = 167.53, _p _< .001), wherein RTs were faster for trials with non-repeated target locations (_M _= 340, _SE _= 4.00) compared to repeated locations (_M _= 354, _SE _= 4.17). However, as in Experiment 1, neither the 2-way interaction between current trial congruency and previous trial congruency (_F_(1, 15869) = 0.53, _p _= .47) nor were the 3-way interactions (_F_(1, 15869) = 0.01, _p _= .92) significant (see Figure 2D). Thus, no carryover effects were observed. In addition, no other effects were significant. We again followed up the GLMM approach with the same Bayesian analysis. For Experiment 2, we found strong evidence for the null hypothesis (BF01 = 11.27) indicating that the data are 11.27 times more likely under the null hypothesis than under the hypothesized existence of a carryover effect for threat. ## **\[Insert Figure 2 Here]** @@ -86,17 +86,15 @@ Conclusion Researchers should carefully select their study design when examining congruency effects. As for studies involving the dot-probe task, however, carryover effects for threat do not appear to be a concern. The highly controlled and simple design of the dot-probe task adequately controls for sources of variance such as carryover effects. While threatening cues may bias attention to a greater extent than neutral cues, their residual influence on attention is limited when assessed with the dot-probe task. -Data Availability Statement:* *Datasets are available here: +Data Availability Statement:\* \*Datasets are available here: ![](media/image1.png)![](media/image2.png)![](media/image2.png)![](media/image3.png)![](media/image4.png) -*Figure 1. *(A) Examples of congruent and incongruent trials in Experiment 1. (B) On the left is an example of two congruent trials—note the target (dot) appears in the location of the fearful face on the previous trial (trial *n-*1) and the current trial (trial *n*). A carryover effect occurs when there is a larger congruency effect when the current congruent trial is preceded by a congruent trial, relative to when it is preceded by an incongruent trial. On the right is an example of two sequential trials where the target appears in the same location (repeating target location). +_Figure 1. _(A) Examples of congruent and incongruent trials in Experiment 1. (B) On the left is an example of two congruent trials—note the target (dot) appears in the location of the fearful face on the previous trial (trial *n-*1) and the current trial (trial _n_). A carryover effect occurs when there is a larger congruency effect when the current congruent trial is preceded by a congruent trial, relative to when it is preceded by an incongruent trial. On the right is an example of two sequential trials where the target appears in the same location (repeating target location). ![](media/image5.png) -*Figure 2. *Results from Experiment 1 are shown in A and B, Experiment 2 in C and D (*n* indicates participant, values are averages by participant). A and C show congruent and incongruent RTs (left) and the overall congruency effects (otherwise known as the capturing of attention, or attention bias). The top row of B and D show congruency effects by previous trial congruency and target repetition. The bottom row shows congruency effects by previous trial congruency (incongruent minus congruent), separated by target location repetition. Black error bars represent standard deviation of the mean. Gray distributions represent 95% confidence intervals [@Ho2019undefinedundefined]. - - +*Figure 2. *Results from Experiment 1 are shown in A and B, Experiment 2 in C and D (_n_ indicates participant, values are averages by participant). A and C show congruent and incongruent RTs (left) and the overall congruency effects (otherwise known as the capturing of attention, or attention bias). The top row of B and D show congruency effects by previous trial congruency and target repetition. The bottom row shows congruency effects by previous trial congruency (incongruent minus congruent), separated by target location repetition. Black error bars represent standard deviation of the mean. Gray distributions represent 95% confidence intervals [@Ho2019undefinedundefined]. References @@ -104,79 +102,76 @@ AUTHOR (2020). AUTHOR (2014). -*Emotion*. https\://doi.org/10.1037/emo0000596 - -Becker, S. I., Dutt, N., Vromen, J. M. G., & Horstmann, G. (2017). The capture of attention and gaze in the search for emotional photographic faces. *Visual Cognition*, *25*(1–3), 241–261. https\://doi.org/10.1080/13506285.2017.1333182 - -Cane, J., Sharma, D., & Albery, I. (2009). The addiction Stroop task: Examining the fast and slow effects of smoking and marijuana-related cues. *Journal of Psychopharmacology*, *23*(5), 510–519. https\://doi.org/10.1177/0269881108091253 - -Carlson, J. M., & Fang, L. (2020). The stability and reliability of attentional bias measures in the dot-probe task: Evidence from both traditional mean bias scores and trial-level bias scores. *Motivation and Emotion*, 13. +_Emotion_. https\://doi.org/10.1037/emo0000596 -Carlson, J. M., & Reinke, K. S. (2014). Attending to the fear in your eyes: Facilitated orienting and delayed disengagement. *Cognition and Emotion*, *28*(8), 1398–1406. psyh. https\://doi.org/10.1080/02699931.2014.885410 +Becker, S. I., Dutt, N., Vromen, J. M. G., & Horstmann, G. (2017). The capture of attention and gaze in the search for emotional photographic faces. _Visual Cognition_, _25_(1–3), 241–261. https\://doi.org/10.1080/13506285.2017.1333182 -Carretié, L. (2014). Exogenous (automatic) attention to emotional stimuli: A review. *Cognitive, Affective, & Behavioral Neuroscience*, *14*(4), 1228–1258. https\://doi.org/10.3758/s13415-014-0270-2 +Cane, J., Sharma, D., & Albery, I. (2009). The addiction Stroop task: Examining the fast and slow effects of smoking and marijuana-related cues. _Journal of Psychopharmacology_, _23_(5), 510–519. https\://doi.org/10.1177/0269881108091253 -Clarke, S. P., Sharma, D., & Salter, D. (2015). Examining fast and slow effects for alcohol and negative emotion in problem and social drinkers. *Addiction Research & Theory*, *23*(1), 24–33. https\://doi.org/10.3109/16066359.2014.922961 +Carlson, J. M., & Fang, L. (2020). The stability and reliability of attentional bias measures in the dot-probe task: Evidence from both traditional mean bias scores and trial-level bias scores. _Motivation and Emotion_, 13. -Desimone, R., & Duncan, J. (1995). *Neural Mechanisms of Selective Visual Attention*. 30. +Carlson, J. M., & Reinke, K. S. (2014). Attending to the fear in your eyes: Facilitated orienting and delayed disengagement. _Cognition and Emotion_, _28_(8), 1398–1406. psyh. https\://doi.org/10.1080/02699931.2014.885410 -Duthoo, W., Abrahamse, E. L., Braem, S., Boehler, C. N., & Notebaert, W. (2014). The heterogeneous world of congruency sequence effects: An update. *Frontiers in Psychology*, *5*. https\://doi.org/10.3389/fpsyg.2014.01001 +Carretié, L. (2014). Exogenous (automatic) attention to emotional stimuli: A review. _Cognitive, Affective, & Behavioral Neuroscience_, _14_(4), 1228–1258. https\://doi.org/10.3758/s13415-014-0270-2 -Fox, E., Russo, R., Bowles, R., & Dutton, K. (2001). Do threatening stimuli draw or hold visual attention in subclinical anxiety? *Journal of Experimental Psychology: General*, *130*(4), 681–700. https\://doi.org/10.1037/0096-3445.130.4.681 +Clarke, S. P., Sharma, D., & Salter, D. (2015). Examining fast and slow effects for alcohol and negative emotion in problem and social drinkers. _Addiction Research & Theory_, _23_(1), 24–33. https\://doi.org/10.3109/16066359.2014.922961 -Gladwin, T. E. (2017a). Carryover effects in spatial attentional bias tasks and their relationship to subclinical PTSD symptoms. *Traumatology*, *23*(4), 303. https\://doi.org/10.1037/trm0000121 +Desimone, R., & Duncan, J. (1995). _Neural Mechanisms of Selective Visual Attention_. 30. -Gladwin, T. E. (2017b). Carryover effects in spatial attentional bias tasks and their relationship to subclinical PTSD symptoms. *Traumatology*, *23*(4), 303–308. psyh. https\://doi.org/10.1037/trm0000121 +Duthoo, W., Abrahamse, E. L., Braem, S., Boehler, C. N., & Notebaert, W. (2014). The heterogeneous world of congruency sequence effects: An update. _Frontiers in Psychology_, _5_. https\://doi.org/10.3389/fpsyg.2014.01001 -Gladwin, T. E., & Figner, B. (2019). Trial-to-trial carryover effects on spatial attentional bias. *Acta Psychologica*, *196*, 51–55. https\://doi.org/10.1016/j.actpsy.2019.04.006 +Fox, E., Russo, R., Bowles, R., & Dutton, K. (2001). Do threatening stimuli draw or hold visual attention in subclinical anxiety? _Journal of Experimental Psychology: General_, _130_(4), 681–700. https\://doi.org/10.1037/0096-3445.130.4.681 -Gladwin, T. E., Figner, B., & Vink, M. (2019). Anticipation-specific reliability and trial-to-trial carryover of anticipatory attentional bias for threat. *Journal of Cognitive Psychology*, *31*(7), 750–759. https\://doi.org/10.1080/20445911.2019.1659801 +Gladwin, T. E. (2017a). Carryover effects in spatial attentional bias tasks and their relationship to subclinical PTSD symptoms. _Traumatology_, _23_(4), 303. https\://doi.org/10.1037/trm0000121 -Gladwin, T. E., Jewiss, M., & Vink, M. (2020). Attentional bias for negative expressions depends on previous target location: Replicable effect but unreliable measures. *Journal of Cognitive Psychology*, 1–11. https\://doi.org/10.1080/20445911.2020.1805453 +Gladwin, T. E. (2017b). Carryover effects in spatial attentional bias tasks and their relationship to subclinical PTSD symptoms. _Traumatology_, _23_(4), 303–308. psyh. https\://doi.org/10.1037/trm0000121 -Gur, R. C., Sara, R., Hagendoorn, M., Marom, O., Hughett, P., Macy, L., Turner, T., Bajcsy, R., Posner, A., & Gur, R. E. (2002). A method for obtaining 3-dimensional facial expressions and its standardization for use in neurocognitive studies. *Journal of Neuroscience Methods*, *115*(2), 137–143. https\://doi.org/10.1016/S0165-0270(02)00006-7 +Gladwin, T. E., & Figner, B. (2019). Trial-to-trial carryover effects on spatial attentional bias. _Acta Psychologica_, _196_, 51–55. https\://doi.org/10.1016/j.actpsy.2019.04.006 -Hedge, C., Powell, G., & Sumner, P. (2018). The reliability paradox: Why robust cognitive tasks do not produce reliable individual differences. *Behavior Research Methods*, *50*(3), 1166–1186. https\://doi.org/10.3758/s13428-017-0935-1 +Gladwin, T. E., Figner, B., & Vink, M. (2019). Anticipation-specific reliability and trial-to-trial carryover of anticipatory attentional bias for threat. _Journal of Cognitive Psychology_, _31_(7), 750–759. https\://doi.org/10.1080/20445911.2019.1659801 -Hedger, N., Gray, K. L. H., Garner, M., & Adams, W. J. (2016). Are visual threats prioritized without awareness? A critical review and meta-analysis involving 3 behavioral paradigms and 2696 observers. *Psychological Bulletin*, *142*(9), 934–968. https\://doi.org/10.1037/bul0000054 +Gladwin, T. E., Jewiss, M., & Vink, M. (2020). Attentional bias for negative expressions depends on previous target location: Replicable effect but unreliable measures. _Journal of Cognitive Psychology_, 1–11. https\://doi.org/10.1080/20445911.2020.1805453 -Hill, M., & Duval, E. (2016). *Exploring Carry-Over Effects to Elucidate Attention Bias Modification’s Mixed Results*. Journal of Young Investigators. https\://doi.org/10.22186/jyi.31.3.9-14 +Gur, R. C., Sara, R., Hagendoorn, M., Marom, O., Hughett, P., Macy, L., Turner, T., Bajcsy, R., Posner, A., & Gur, R. E. (2002). A method for obtaining 3-dimensional facial expressions and its standardization for use in neurocognitive studies. _Journal of Neuroscience Methods_, _115_(2), 137–143. https\://doi.org/10.1016/S0165-0270(02)00006-7 -Ho, J., Tumkaya, T., Aryal, S., Choi, H., & Claridge-Chang, A. (2019). Moving beyond P values: Data analysis with estimation graphics. *Nature Methods*, *16*(7), 565–566. https\://doi.org/10.1038/s41592-019-0470-3 +Hedge, C., Powell, G., & Sumner, P. (2018). The reliability paradox: Why robust cognitive tasks do not produce reliable individual differences. _Behavior Research Methods_, _50_(3), 1166–1186. https\://doi.org/10.3758/s13428-017-0935-1 -Imhoff, R., Lange, J., & Germar, M. (2019). Identification and location tasks rely on different mental processes: A diffusion model account of validity effects in spatial cueing paradigms with emotional stimuli. *Cognition and Emotion*, *33*(2), 231–244. https\://doi.org/10.1080/02699931.2018.1443433 +Hedger, N., Gray, K. L. H., Garner, M., & Adams, W. J. (2016). Are visual threats prioritized without awareness? A critical review and meta-analysis involving 3 behavioral paradigms and 2696 observers. _Psychological Bulletin_, _142_(9), 934–968. https\://doi.org/10.1037/bul0000054 -Kruijt, A.-W., Field, A. P., & Fox, E. (2016). Capturing Dynamics of Biased Attention: Are New Attention Variability Measures the Way Forward? *PLOS ONE*, *11*(11), e0166600. https\://doi.org/10.1371/journal.pone.0166600 +Hill, M., & Duval, E. (2016). _Exploring Carry-Over Effects to Elucidate Attention Bias Modification’s Mixed Results_. Journal of Young Investigators. https\://doi.org/10.22186/jyi.31.3.9-14 -Kruijt, A.-W., Parsons, S., & Fox, E. (2018). A Meta-Analysis of Bias at Baseline in RCTs of Attention Bias Modification: No Evidence for Dot-Probe Bias Towards Threat in Clinical Anxiety and PTSD. *Journal of Abnormal Psychology*, 11. +Ho, J., Tumkaya, T., Aryal, S., Choi, H., & Claridge-Chang, A. (2019). Moving beyond P values: Data analysis with estimation graphics. _Nature Methods_, _16_(7), 565–566. https\://doi.org/10.1038/s41592-019-0470-3 -Lang, P. (2008). International affective picture system (IAPS): Affective ratings of pictures and instruction manual. *Technical Report*. https\://ci.nii.ac.jp/naid/20001061266/ +Imhoff, R., Lange, J., & Germar, M. (2019). Identification and location tasks rely on different mental processes: A diffusion model account of validity effects in spatial cueing paradigms with emotional stimuli. _Cognition and Emotion_, _33_(2), 231–244. https\://doi.org/10.1080/02699931.2018.1443433 -Lundqvist, Flykt, A., & Ohman, A. (1998). *The Karolinska Directed Emotional Faces (KDEF)*. Stockholm : Department of Neurosciences Karolinska Hospital. +Kruijt, A.-W., Field, A. P., & Fox, E. (2016). Capturing Dynamics of Biased Attention: Are New Attention Variability Measures the Way Forward? _PLOS ONE_, _11_(11), e0166600. https\://doi.org/10.1371/journal.pone.0166600 -MacLeod, C., Mathews, A., & Tata, P. (1986). Attentional bias in emotional disorders. *Journal of Abnormal Psychology*, *95*(1), 15–20. https\://doi.org/10.1037/0021-843X.95.1.15 +Kruijt, A.-W., Parsons, S., & Fox, E. (2018). A Meta-Analysis of Bias at Baseline in RCTs of Attention Bias Modification: No Evidence for Dot-Probe Bias Towards Threat in Clinical Anxiety and PTSD. _Journal of Abnormal Psychology_, 11. -Mogg, K., & Bradley, B. P. (1998). A cognitive-motivational analysis of anxiety. *Behaviour Research and Therapy*, *36*(9), 809–848. https\://doi.org/10.1016/S0005-7967(98)00063-1 +Lang, P. (2008). International affective picture system (IAPS): Affective ratings of pictures and instruction manual. _Technical Report_. https\://ci.nii.ac.jp/naid/20001061266/ -Mogg, K., Waters, A. M., & Bradley, B. P. (2017). Attention Bias Modification (ABM): Review of Effects of Multisession ABM Training on Anxiety and Threat-Related Attention in High-Anxious Individuals. *Clinical Psychological Science*, *5*(4), 698–717. https\://doi.org/10.1177/2167702617696359 +Lundqvist, Flykt, A., & Ohman, A. (1998). _The Karolinska Directed Emotional Faces (KDEF)_. Stockholm : Department of Neurosciences Karolinska Hospital. -Panksepp, J., & Watt, D. (2011). What is Basic about Basic Emotions? Lasting Lessons from Affective Neuroscience. *Emotion Review*, *3*(4), 387–396. https\://doi.org/10.1177/1754073911410741 +MacLeod, C., Mathews, A., & Tata, P. (1986). Attentional bias in emotional disorders. _Journal of Abnormal Psychology_, _95_(1), 15–20. https\://doi.org/10.1037/0021-843X.95.1.15 -Posner, M. I., Rafal, R. D., Choate, L. S., & Vaughan, J. (1985). Inhibition of return: Neural basis and function. *Cognitive Neuropsychology*, *2*(3), 211–228. https\://doi.org/10.1080/02643298508252866 +Mogg, K., & Bradley, B. P. (1998). A cognitive-motivational analysis of anxiety. _Behaviour Research and Therapy_, _36_(9), 809–848. https\://doi.org/10.1016/S0005-7967(98)00063-1 -Schmukle, S. C. (2005). Unreliability of the dot probe task. *European Journal of Personality*, *19*(7), 595–605. https\://doi.org/10.1002/per.554 +Mogg, K., Waters, A. M., & Bradley, B. P. (2017). Attention Bias Modification (ABM): Review of Effects of Multisession ABM Training on Anxiety and Threat-Related Attention in High-Anxious Individuals. _Clinical Psychological Science_, _5_(4), 698–717. https\://doi.org/10.1177/2167702617696359 -Schubö, A., Gendolla, G. H. E., Meinecke, C., & Abele, A. E. (2006). Detecting emotional faces and features in a visual search paradigm: Are faces special? *Emotion*, *6*(2), 246–256. https\://doi.org/10.1037/1528-3542.6.2.246 +Panksepp, J., & Watt, D. (2011). What is Basic about Basic Emotions? Lasting Lessons from Affective Neuroscience. _Emotion Review_, _3_(4), 387–396. https\://doi.org/10.1177/1754073911410741 -Staugaard, S. R. (2009). Reliability of two versions of the dot-probe task using photographic faces. *Psychological Science Quarterly*, *51*(3), 339–350. +Posner, M. I., Rafal, R. D., Choate, L. S., & Vaughan, J. (1985). Inhibition of return: Neural basis and function. _Cognitive Neuropsychology_, _2_(3), 211–228. https\://doi.org/10.1080/02643298508252866 -Waters, A. J., Sayette, M. A., Franken, I. H. A., & Schwartz, J. E. (2005). Generalizability of carry-over effects in the emotional Stroop task. *Behaviour Research and Therapy*, *43*(6), 715–732. https\://doi.org/10.1016/j.brat.2004.06.003 +Schmukle, S. C. (2005). Unreliability of the dot probe task. _European Journal of Personality_, _19_(7), 595–605. https\://doi.org/10.1002/per.554 -Wilson, S. J., Sayette, M. A., Fiez, J. A., & Brough, E. (2007). Carry-over effects of smoking cue exposure on working memory performance. *Nicotine & Tobacco Research*, *9*(5), 613–619. https\://doi.org/10.1080/14622200701243144 +Schubö, A., Gendolla, G. H. E., Meinecke, C., & Abele, A. E. (2006). Detecting emotional faces and features in a visual search paradigm: Are faces special? _Emotion_, _6_(2), 246–256. https\://doi.org/10.1037/1528-3542.6.2.246 -Zvielli, A., Bernstein, A., & Koster, E. H. W. (2015). Temporal Dynamics of Attentional Bias. *Clinical Psychological Science*, *3*(5), 772–788. https\://doi.org/10.1177/2167702614551572 +Staugaard, S. R. (2009). Reliability of two versions of the dot-probe task using photographic faces. _Psychological Science Quarterly_, _51_(3), 339–350. -[^1]: We also tested a model with a random slope for congruency x previous congruency x target location repetition interaction. Although this model fit our data better (AIC[object Object] = -26903.474 whereas AIC[object Object] = -27133.846;models with smaller AIC values fit better), the significant levels of all the fixed effects for this model was very similar to the one reported in the main text, where there was no significant carryover effect. +Waters, A. J., Sayette, M. A., Franken, I. H. A., & Schwartz, J. E. (2005). Generalizability of carry-over effects in the emotional Stroop task. _Behaviour Research and Therapy_, _43_(6), 715–732. https\://doi.org/10.1016/j.brat.2004.06.003 +Wilson, S. J., Sayette, M. A., Fiez, J. A., & Brough, E. (2007). Carry-over effects of smoking cue exposure on working memory performance. _Nicotine & Tobacco Research_, _9_(5), 613–619. https\://doi.org/10.1080/14622200701243144 +Zvielli, A., Bernstein, A., & Koster, E. H. W. (2015). Temporal Dynamics of Attentional Bias. _Clinical Psychological Science_, _3_(5), 772–788. https\://doi.org/10.1177/2167702614551572 +[^1]: We also tested a model with a random slope for congruency x previous congruency x target location repetition interaction. Although this model fit our data better (AIC[object Object] = -26903.474 whereas AIC[object Object] = -27133.846;models with smaller AIC values fit better), the significant levels of all the fixed effects for this model was very similar to the one reported in the main text, where there was no significant carryover effect. diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/test.mdast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/test.mdast.json index 541d1ca0..dc5102a7 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/test.mdast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/test.mdast.json @@ -3667,4 +3667,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/test.ooxast.json b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/test.ooxast.json index c9443e6a..2f667172 100644 --- a/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-mdast/src/test/fixtures/zotero-2/test.ooxast.json @@ -23678,4 +23678,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/CHANGELOG.md b/libs/ooxast/ooxast-util-to-unified-latex/CHANGELOG.md index d439b36d..6431a6a4 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/CHANGELOG.md +++ b/libs/ooxast/ooxast-util-to-unified-latex/CHANGELOG.md @@ -6,86 +6,83 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast-util-get-style` updated to version `0.2.2` -* `ooxast` updated to version `0.1.4` -* `ooxast-util-citations` updated to version `0.2.0` -* `xast-util-is-element` updated to version `0.1.5` -* `xast-util-select` updated to version `0.1.3` -* `csl-to-biblatex` updated to version `0.2.1` -* `docx-to-vfile` updated to version `0.8.2` -* `reoff-parse` updated to version `0.3.0` -* `reoff-clean` updated to version `0.1.2` -* `reoff-cite` updated to version `0.2.0` -* `reoff-parse-references` updated to version `0.1.3` -* `unified-latex-stringify` updated to version `0.1.4` +- `ooxast-util-get-style` updated to version `0.2.2` +- `ooxast` updated to version `0.1.4` +- `ooxast-util-citations` updated to version `0.2.0` +- `xast-util-is-element` updated to version `0.1.5` +- `xast-util-select` updated to version `0.1.3` +- `csl-to-biblatex` updated to version `0.2.1` +- `docx-to-vfile` updated to version `0.8.2` +- `reoff-parse` updated to version `0.3.0` +- `reoff-clean` updated to version `0.1.2` +- `reoff-cite` updated to version `0.2.0` +- `reoff-parse-references` updated to version `0.1.3` +- `unified-latex-stringify` updated to version `0.1.4` ### Features -* add escaping ([bfc6f3c](https://github.com/TrialAndErrorOrg/parsers/commit/bfc6f3c69601bb192977a3e0238f564fcdbe19df)) -* book-converter! ([f2f74cb](https://github.com/TrialAndErrorOrg/parsers/commit/f2f74cb3f6d9a2ccee2e7fa8f08a435c8cf313a4)) -* **ooxast-util-to-unified-latex:** add support for hyperlink handler ([51f188e](https://github.com/TrialAndErrorOrg/parsers/commit/51f188e6ad5f4637f1518ca83ca98670e9d69f99)) -* **ooxast-util-to-unified-latex:** allow user to specify custom handlers for formatting ([e3bdcdc](https://github.com/TrialAndErrorOrg/parsers/commit/e3bdcdc0e6b4972d26f7c566f0992d77b2775f39)) -* **ooxast-util-to-unified-latex:** allow user to specify custom handlers per paragraph ([4b7e202](https://github.com/TrialAndErrorOrg/parsers/commit/4b7e2026b63fe555d68c41ee78c8729591e98353)) - +- add escaping ([bfc6f3c](https://github.com/TrialAndErrorOrg/parsers/commit/bfc6f3c69601bb192977a3e0238f564fcdbe19df)) +- book-converter! ([f2f74cb](https://github.com/TrialAndErrorOrg/parsers/commit/f2f74cb3f6d9a2ccee2e7fa8f08a435c8cf313a4)) +- **ooxast-util-to-unified-latex:** add support for hyperlink handler ([51f188e](https://github.com/TrialAndErrorOrg/parsers/commit/51f188e6ad5f4637f1518ca83ca98670e9d69f99)) +- **ooxast-util-to-unified-latex:** allow user to specify custom handlers for formatting ([e3bdcdc](https://github.com/TrialAndErrorOrg/parsers/commit/e3bdcdc0e6b4972d26f7c566f0992d77b2775f39)) +- **ooxast-util-to-unified-latex:** allow user to specify custom handlers per paragraph ([4b7e202](https://github.com/TrialAndErrorOrg/parsers/commit/4b7e2026b63fe555d68c41ee78c8729591e98353)) ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* make citations work ([67993d3](https://github.com/TrialAndErrorOrg/parsers/commit/67993d33150e05024be7e8df676e59d4cd9c57b1)) -* **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- make citations work ([67993d3](https://github.com/TrialAndErrorOrg/parsers/commit/67993d33150e05024be7e8df676e59d4cd9c57b1)) +- **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) ## [0.2.0](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-util-to-unified-latex-0.1.0...ooxast-util-to-unified-latex-0.2.0) (2023-03-29) ### Dependency Updates -* `csl-to-biblatex` updated to version `0.2.0` -* `ooxast` updated to version `0.1.3` -* `ooxast-util-citations` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.4` -* `xast-util-select` updated to version `0.1.2` -* `reoff-parse` updated to version `0.2.7` -* `docx-to-vfile` updated to version `0.6.1` -* `reoff-clean` updated to version `0.1.1` -* `reoff-cite` updated to version `0.1.2` -* `reoff-parse-references` updated to version `0.1.2` -* `unified-latex-stringify` updated to version `0.1.2` +- `csl-to-biblatex` updated to version `0.2.0` +- `ooxast` updated to version `0.1.3` +- `ooxast-util-citations` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.4` +- `xast-util-select` updated to version `0.1.2` +- `reoff-parse` updated to version `0.2.7` +- `docx-to-vfile` updated to version `0.6.1` +- `reoff-clean` updated to version `0.1.1` +- `reoff-cite` updated to version `0.1.2` +- `reoff-parse-references` updated to version `0.1.2` +- `unified-latex-stringify` updated to version `0.1.2` ### Features -* **ooxast-util-to-unified-latex:** add better list parsing ([3441a02](https://github.com/TrialAndErrorOrg/parsers/commit/3441a026a313d6d00eb3693da55a9f947ed10fc8)) -* **ooxast-util-to-unified-latex:** improve citation output ([5b4fe11](https://github.com/TrialAndErrorOrg/parsers/commit/5b4fe11bdf9b8a5e07a72da40f03bd6a05e02e48)) -* **ooxast-util-to-unified-latex:** improve citation output ([f2a5f2c](https://github.com/TrialAndErrorOrg/parsers/commit/f2a5f2c70c8c3ac33a89c1cbe9e2b0bcaf738a77)) - +- **ooxast-util-to-unified-latex:** add better list parsing ([3441a02](https://github.com/TrialAndErrorOrg/parsers/commit/3441a026a313d6d00eb3693da55a9f947ed10fc8)) +- **ooxast-util-to-unified-latex:** improve citation output ([5b4fe11](https://github.com/TrialAndErrorOrg/parsers/commit/5b4fe11bdf9b8a5e07a72da40f03bd6a05e02e48)) +- **ooxast-util-to-unified-latex:** improve citation output ([f2a5f2c](https://github.com/TrialAndErrorOrg/parsers/commit/f2a5f2c70c8c3ac33a89c1cbe9e2b0bcaf738a77)) ### Bug Fixes -* **ooxast-util-to-unified-latex:** fix list rendering ([c423e1b](https://github.com/TrialAndErrorOrg/parsers/commit/c423e1b06e5d7e8a4181c3b70587f62845431252)) -* **ooxast-util-to-unified-latex:** remove 'bare' option for now ([5745e16](https://github.com/TrialAndErrorOrg/parsers/commit/5745e1634f4259ede8ed42489fc51f99cdb72c9e)) -* **ooxast-util-to-unified-latex:** set vfile types ([848e72a](https://github.com/TrialAndErrorOrg/parsers/commit/848e72aa5c618455fb8e9fab4f3c1149d7f938a4)) +- **ooxast-util-to-unified-latex:** fix list rendering ([c423e1b](https://github.com/TrialAndErrorOrg/parsers/commit/c423e1b06e5d7e8a4181c3b70587f62845431252)) +- **ooxast-util-to-unified-latex:** remove 'bare' option for now ([5745e16](https://github.com/TrialAndErrorOrg/parsers/commit/5745e1634f4259ede8ed42489fc51f99cdb72c9e)) +- **ooxast-util-to-unified-latex:** set vfile types ([848e72a](https://github.com/TrialAndErrorOrg/parsers/commit/848e72aa5c618455fb8e9fab4f3c1149d7f938a4)) ## 0.1.0 (2023-03-09) ### Dependency Updates -* `ooxast` updated to version `0.1.2` -* `ooxast-util-citations` updated to version `0.1.0` -* `xast-util-select` updated to version `0.1.1` -* `xast-util-is-element` updated to version `0.1.2` -* `csl-to-biblatex` updated to version `0.1.1` -* `reoff-parse` updated to version `0.2.2` -* `docx-to-vfile` updated to version `0.5.1` -* `reoff-clean` updated to version `0.1.0` -* `reoff-cite` updated to version `0.1.0` -* `reoff-parse-references` updated to version `0.1.0` +- `ooxast` updated to version `0.1.2` +- `ooxast-util-citations` updated to version `0.1.0` +- `xast-util-select` updated to version `0.1.1` +- `xast-util-is-element` updated to version `0.1.2` +- `csl-to-biblatex` updated to version `0.1.1` +- `reoff-parse` updated to version `0.2.2` +- `docx-to-vfile` updated to version `0.5.1` +- `reoff-clean` updated to version `0.1.0` +- `reoff-cite` updated to version `0.1.0` +- `reoff-parse-references` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **ooxast-unified:** add lists ([9727206](https://github.com/TrialAndErrorOrg/parsers/commit/9727206eb6f84790e20a4dc19b5070f0309d7ebc)) -* **ooxast-util-to-unified-latex:** migrate to new api ([833941a](https://github.com/TrialAndErrorOrg/parsers/commit/833941ab411c94ee0a7ec0fd4a20c6698e00bec3)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **ooxast-unified:** add lists ([9727206](https://github.com/TrialAndErrorOrg/parsers/commit/9727206eb6f84790e20a4dc19b5070f0309d7ebc)) +- **ooxast-util-to-unified-latex:** migrate to new api ([833941a](https://github.com/TrialAndErrorOrg/parsers/commit/833941ab411c94ee0a7ec0fd4a20c6698e00bec3)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/ooxast/ooxast-util-to-unified-latex/README.md b/libs/ooxast/ooxast-util-to-unified-latex/README.md index b8372b12..6f717eff 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/README.md +++ b/libs/ooxast/ooxast-util-to-unified-latex/README.md @@ -9,20 +9,20 @@ Convert `ooxast` syntax tree to `unified-latex` syntax tree. ## Contents -* [ooxast-util-to-unified-latex](#ooxast-util-to-unified-latex) - * [Contents](#contents) - * [What is this?](#what-is-this) - * [When should I use this?](#when-should-i-use-this) - * [Install](#install) - * [Use](#use) - * [API](#api) - * [Syntax tree](#syntax-tree) - * [Types](#types) - * [Compatibility](#compatibility) - * [Security](#security) - * [Related](#related) - * [Contribute](#contribute) - * [License](#license) +- [ooxast-util-to-unified-latex](#ooxast-util-to-unified-latex) + - [Contents](#contents) + - [What is this?](#what-is-this) + - [When should I use this?](#when-should-i-use-this) + - [Install](#install) + - [Use](#use) + - [API](#api) + - [Syntax tree](#syntax-tree) + - [Types](#types) + - [Compatibility](#compatibility) + - [Security](#security) + - [Related](#related) + - [Contribute](#contribute) + - [License](#license) ## What is this? @@ -50,7 +50,7 @@ pnpm add ooxast-util-to-unified-latex ## API -*** +--- ### `toUnifiedLatex()` @@ -62,17 +62,17 @@ toUnifiedLatex(tree: Element | Text | Root, file: VFile, options?: Options): Uni #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Element` | `Text` | `Root` | -| `file` | `VFile` | +| Name | Type | +| :--------- | :------------------------------ | ------ | ------ | +| `tree` | `Element` | `Text` | `Root` | +| `file` | `VFile` | | `options?` | [`Options`](modules.md#options) | #### Returns `UnifiedLatexRoot` -Defined in: [src/lib/ooxast-util-to-unified-latex.ts:62](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/ooxast-util-to-unified-latex.ts#L62) +Defined in: [src/lib/ooxast-util-to-unified-latex.ts:62](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/ooxast-util-to-unified-latex.ts#L62) #### Signature @@ -82,18 +82,18 @@ toUnifiedLatex(tree: Element | Text | Root, options?: Options): UnifiedLatexRoot #### Parameters -| Name | Type | -| :------ | :------ | -| `tree` | `Element` | `Text` | `Root` | +| Name | Type | +| :--------- | :------------------------------ | ------ | ------ | +| `tree` | `Element` | `Text` | `Root` | | `options?` | [`Options`](modules.md#options) | #### Returns `UnifiedLatexRoot` -Defined in: [src/lib/ooxast-util-to-unified-latex.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/ooxast-util-to-unified-latex.ts#L67) +Defined in: [src/lib/ooxast-util-to-unified-latex.ts:67](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/ooxast-util-to-unified-latex.ts#L67) -*** +--- ### `Options` @@ -107,7 +107,7 @@ A bibliography you can add manually Needs to be in CSL format, which will be converted to BibTeX, or in BibTeX format -Defined in: [src/lib/types.ts:146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L146) +Defined in: [src/lib/types.ts:146](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L146) ##### `bibname?` @@ -119,7 +119,7 @@ Name of the bibliography file 'bibliography.bib' -Defined in: [src/lib/types.ts:47](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L47) +Defined in: [src/lib/types.ts:47](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L47) ##### `citationType?` @@ -131,7 +131,7 @@ What type of citation is used? 'zotero' -Defined in: [src/lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L70) +Defined in: [src/lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L70) ##### `collectCitation?` @@ -139,24 +139,24 @@ Defined in: [src/lib/types.ts:70](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any, index: string | number): any; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | -| `citation` | `any` | -| `index` | `string` | `number` | +| Name | Type | +| :--------- | :------- | -------- | +| `citation` | `any` | +| `index` | `string` | `number` | -*Returns\`* +_Returns\`_ `any` -Defined in: [src/lib/types.ts:72](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L72) +Defined in: [src/lib/types.ts:72](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L72) ##### `columnSeparator?` @@ -169,7 +169,7 @@ i.e. should `|` be added to the beginning and end of each row? false -Defined in: [src/lib/types.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L52) +Defined in: [src/lib/types.ts:52](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L52) ##### `defaultCol?` @@ -183,7 +183,7 @@ e.g `l` for left, `r` for right, `c` for center 'l' -Defined in: [src/lib/types.ts:127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L127) +Defined in: [src/lib/types.ts:127](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L127) ##### `displayMath?` @@ -201,13 +201,13 @@ What type of display math should be used? 'equation' -Defined in: [src/lib/types.ts:86](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L86) +Defined in: [src/lib/types.ts:86](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L86) ##### `document?` > `boolean` -Defined in: [src/lib/types.ts:27](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L27) +Defined in: [src/lib/types.ts:27](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L27) ##### `documentClass?` @@ -226,12 +226,12 @@ Options for the document class ###### Type declaration -| Member | Type | Description | -| :------ | :------ | :------ | -| `name` | `string` | Name of the document class `Default` 'article' | -| `options`? | `string`[] | Options for the document class `Default` undefined | +| Member | Type | Description | +| :--------- | :--------- | :------------------------------------------------- | +| `name` | `string` | Name of the document class `Default` 'article' | +| `options`? | `string`[] | Options for the document class `Default` undefined | -Defined in: [src/lib/types.ts:56](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L56) +Defined in: [src/lib/types.ts:56](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L56) ##### `handlers?` @@ -245,21 +245,19 @@ Handlers for specific node types ###### Type declaration -Defined in: [src/lib/types.ts:26](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L26) +Defined in: [src/lib/types.ts:26](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L26) ##### `inlineMath?` > `"$"` | `"()"` -What type of inline math should be used? --`$`: `$ ... $` --`()` : `\(...\)` +What type of inline math should be used? -`$`: `$ ... $` -`()` : `\(...\)` ###### Default '$' -Defined in: [src/lib/types.ts:102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L102) +Defined in: [src/lib/types.ts:102](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L102) ##### `italics?` @@ -271,13 +269,13 @@ Should italics be rendered as \textit or \emph? 'emph' -Defined in: [src/lib/types.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L43) +Defined in: [src/lib/types.ts:43](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L43) ##### `newLines?` > `boolean` -Defined in: [src/lib/types.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L28) +Defined in: [src/lib/types.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L28) ##### `packages?` @@ -290,13 +288,13 @@ A list of packages to add to the preamble by default, the following packages are added: -* `xcolor` (if `xcolor` is enabled) -* `hyperref` -* `graphicx` -* `caption` -* `tabularx` (if `tabularx` is enabled) +- `xcolor` (if `xcolor` is enabled) +- `hyperref` +- `graphicx` +- `caption` +- `tabularx` (if `tabularx` is enabled) -Defined in: [src/lib/types.ts:158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L158) +Defined in: [src/lib/types.ts:158](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L158) ##### `parseCitation?` @@ -304,23 +302,23 @@ Defined in: [src/lib/types.ts:158](https://github.com/TrialAndErrorOrg/parsers/ ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any): any; ``` -*Parameters\`* +_Parameters\`_ -| Name | Type | -| :------ | :------ | +| Name | Type | +| :--------- | :---- | | `citation` | `any` | -*Returns\`* +_Returns\`_ `any` -Defined in: [src/lib/types.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L71) +Defined in: [src/lib/types.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L71) ##### `preamble?` @@ -344,30 +342,27 @@ or you can just put it in raw import { m, args } from '@unified-latex/unified-latex-types' const options = { - preamble: [ - // \author{Leeroy Jenkins} - m('author', 'Leeroy Jenkins'), - // \title{The Adventures of Leeroy Jenkins} - m('title', 'The Adventures of Leeroy Jenkins'), - // \somemacrowithoptions[optional1][optional2]{firstArg}{secondArg} - m( - 'somemacrowithoptions', - args( - ['optional1', 'optional2', 'firstArg', 'secondArg'], - { braces: '[][]{}{}'} - ) - ), - ] + preamble: [ + // \author{Leeroy Jenkins} + m('author', 'Leeroy Jenkins'), + // \title{The Adventures of Leeroy Jenkins} + m('title', 'The Adventures of Leeroy Jenkins'), + // \somemacrowithoptions[optional1][optional2]{firstArg}{secondArg} + m( + 'somemacrowithoptions', + args(['optional1', 'optional2', 'firstArg', 'secondArg'], { braces: '[][]{}{}' }), + ), + ], } ``` -Defined in: [src/lib/types.ts:192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L192) +Defined in: [src/lib/types.ts:192](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L192) ##### `quotes?` > `string`[] -Defined in: [src/lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L29) +Defined in: [src/lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L29) ##### `relations?` @@ -379,13 +374,13 @@ Defined in: [src/lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -Defined in: [src/lib/types.ts:74](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L74) +Defined in: [src/lib/types.ts:74](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L74) ##### `strikethrough?` > `"st"` | `"sout"` | `"s"` -Defined in: [src/lib/types.ts:103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L103) +Defined in: [src/lib/types.ts:103](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L103) ##### `tabularx?` @@ -399,7 +394,7 @@ Should tabularx be used instead of tabular? false -Defined in: [src/lib/types.ts:132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L132) +Defined in: [src/lib/types.ts:132](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L132) ##### `title?` @@ -413,7 +408,7 @@ If this is not set, the title will be taken from the heading with the "Title" st undefined -Defined in: [src/lib/types.ts:119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L119) +Defined in: [src/lib/types.ts:119](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L119) ##### `topSection?` @@ -428,7 +423,7 @@ What the top section should be 4 = paragraph 5 = subparagraph -Defined in: [src/lib/types.ts:39](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L39) +Defined in: [src/lib/types.ts:39](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L39) ##### `xcolor?` @@ -443,17 +438,17 @@ and remove color related commands from the output. true -Defined in: [src/lib/types.ts:111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L111) +Defined in: [src/lib/types.ts:111](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L111) -*** +--- ### `H` > `HWithProps` & `HWithoutProps` & `Context` -Defined in: [src/lib/types.ts:292](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L292) +Defined in: [src/lib/types.ts:292](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L292) -*** +--- ### `Handle` @@ -469,29 +464,29 @@ Defined in: [src/lib/types.ts:292](https://github.com/TrialAndErrorOrg/parsers/ ##### `Parameters` -| Name | Type | -| :------ | :------ | -| `h` | [`H`](modules.md#h) | -| `node` | `any` | -| `parent?` | `Parent` | +| Name | Type | +| :-------- | :------------------ | +| `h` | [`H`](modules.md#h) | +| `node` | `any` | +| `parent?` | `Parent` | ##### `Returns` [`UnifiedLatexNode`](modules.md#unifiedlatexnode) | [`UnifiedLatexNode`](modules.md#unifiedlatexnode)[] | `void` | `undefined` -Defined in: [src/lib/types.ts:195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L195) +Defined in: [src/lib/types.ts:195](https://github.com/TrialAndErrorOrg/parsers/blob/main/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L195) -*** +--- ### `UnifiedLatexNode` > `Root` | `String` | `Whitespace` | `Parbreak` | `Comment` | `Macro` | `Environment` | `VerbatimEnvironment` | `InlineMath` | `DisplayMath` | `Group` | `Verb` -Defined in: node\_modules/.pnpm/@unified-latex+unified-latex-types\@1.3.0/node\_modules/@unified-latex/unified-latex-types/libs/ast-types.d.ts:83 +Defined in: node_modules/.pnpm/@unified-latex+unified-latex-types\@1.3.0/node_modules/@unified-latex/unified-latex-types/libs/ast-types.d.ts:83 # jote -*** +--- ### `all()` @@ -505,18 +500,18 @@ all(h: H, parent: Parent, Data> | Node): UnifiedLatexNode[]; #### Parameters -| Name | Type | Description | | -| :------- | :------------------------------- | :-------------------------- | - | -| `h` | [`H`](modules.md#h) | ooxast constructor function | | -| `parent` | `Parent`<`Node`<`Data`>, `Data`> | `Node` | | +| Name | Type | Description | | +| :------- | :------------------------------- | :-------------------------- | --- | +| `h` | [`H`](modules.md#h) | ooxast constructor function | | +| `parent` | `Parent`<`Node`<`Data`>, `Data`> | `Node` | | #### Returns [`UnifiedLatexNode`](modules.md#unifiedlatexnode)[] -Defined in: [src/lib/all.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/all.ts#L10) +Defined in: [src/lib/all.ts:10](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/all.ts#L10) -*** +--- ### `one()` @@ -538,9 +533,9 @@ one(h: H, node: Node, parent?: Parent, Data>): UnifiedLatexNode | Uni [`UnifiedLatexNode`](modules.md#unifiedlatexnode) | [`UnifiedLatexNode`](modules.md#unifiedlatexnode)[] | `void` -Defined in: [src/lib/one.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/one.ts#L8) +Defined in: [src/lib/one.ts:8](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/one.ts#L8) -*** +--- ### `toUnifiedLatex()` @@ -561,17 +556,17 @@ toUnifiedLatex(tree: Element | Text | Root, options: Options): Root; `Root` -Defined in: [src/lib/ooxast-util-to-unified-latex.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/ooxast-util-to-unified-latex.ts#L45) +Defined in: [src/lib/ooxast-util-to-unified-latex.ts:45](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/ooxast-util-to-unified-latex.ts#L45) -*** +--- ### `defaultHandlers` > **`Const`** `Context`[`"handlers"`] -Defined in: [src/lib/handlers/index.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/handlers/index.ts#L20) +Defined in: [src/lib/handlers/index.ts:20](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/handlers/index.ts#L20) -*** +--- ### `Options` @@ -585,7 +580,7 @@ A bibliography you can add manually Needs to be in CSL format, which will be converted to BibTeX, or in BibTeX format -Defined in: [src/lib/types.ts:147](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L147) +Defined in: [src/lib/types.ts:147](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L147) ##### `bibname?` @@ -597,7 +592,7 @@ Name of the bibliography file 'bibliography.bib' -Defined in: [src/lib/types.ts:48](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L48) +Defined in: [src/lib/types.ts:48](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L48) ##### `citationType?` @@ -609,7 +604,7 @@ What type of citation is used? 'zotero' -Defined in: [src/lib/types.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L71) +Defined in: [src/lib/types.ts:71](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L71) ##### `collectCitation?` @@ -617,24 +612,24 @@ Defined in: [src/lib/types.ts:71](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any, index: string | number): any; ``` -*Parameters\`* +_Parameters\`_ | Name | Type | | | :--------- | :------- | -------- | | `citation` | `any` | | | `index` | `string` | `number` | -*Returns\`* +_Returns\`_ `any` -Defined in: [src/lib/types.ts:73](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L73) +Defined in: [src/lib/types.ts:73](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L73) ##### `columnSeparator?` @@ -647,7 +642,7 @@ i.e. should `|` be added to the beginning and end of each row? false -Defined in: [src/lib/types.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L53) +Defined in: [src/lib/types.ts:53](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L53) ##### `defaultCol?` @@ -661,7 +656,7 @@ e.g `l` for left, `r` for right, `c` for center 'l' -Defined in: [src/lib/types.ts:128](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L128) +Defined in: [src/lib/types.ts:128](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L128) ##### `displayMath?` @@ -679,13 +674,13 @@ What type of display math should be used? 'equation' -Defined in: [src/lib/types.ts:87](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L87) +Defined in: [src/lib/types.ts:87](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L87) ##### `document?` > `boolean` -Defined in: [src/lib/types.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L28) +Defined in: [src/lib/types.ts:28](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L28) ##### `documentClass?` @@ -704,12 +699,12 @@ Options for the document class ###### Type declaration -| Member | Type | Description | -| :--------- | :---------- | :--------------------------------------------------- | -| `name` | `string` | Name of the document class `Default` 'article' | -| `options`? | `string`[] | Options for the document class `Default` undefined | +| Member | Type | Description | +| :--------- | :--------- | :------------------------------------------------- | +| `name` | `string` | Name of the document class `Default` 'article' | +| `options`? | `string`[] | Options for the document class `Default` undefined | -Defined in: [src/lib/types.ts:57](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L57) +Defined in: [src/lib/types.ts:57](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L57) ##### `handlers?` @@ -723,21 +718,19 @@ Handlers for specific node types ###### Type declaration -Defined in: [src/lib/types.ts:27](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L27) +Defined in: [src/lib/types.ts:27](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L27) ##### `inlineMath?` > `"$"` | `"()"` -What type of inline math should be used? --`$`: `$ ... $` --`()` : `\(...\)` +What type of inline math should be used? -`$`: `$ ... $` -`()` : `\(...\)` ###### Default '$' -Defined in: [src/lib/types.ts:103](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L103) +Defined in: [src/lib/types.ts:103](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L103) ##### `italics?` @@ -749,13 +742,13 @@ Should italics be rendered as \textit or \emph? 'emph' -Defined in: [src/lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L44) +Defined in: [src/lib/types.ts:44](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L44) ##### `newLines?` > `boolean` -Defined in: [src/lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L29) +Defined in: [src/lib/types.ts:29](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L29) ##### `packages?` @@ -768,13 +761,13 @@ A list of packages to add to the preamble by default, the following packages are added: -* `xcolor` (if `xcolor` is enabled) -* `hyperref` -* `graphicx` -* `caption` -* `tabularx` (if `tabularx` is enabled) +- `xcolor` (if `xcolor` is enabled) +- `hyperref` +- `graphicx` +- `caption` +- `tabularx` (if `tabularx` is enabled) -Defined in: [src/lib/types.ts:159](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L159) +Defined in: [src/lib/types.ts:159](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L159) ##### `parseCitation?` @@ -782,23 +775,23 @@ Defined in: [src/lib/types.ts:159](https://github.com/TrialAndErrorOrg/parsers/ ###### Type declaration -*Signature\`* +_Signature\`_ ```ts (citation: any): any; ``` -*Parameters\`* +_Parameters\`_ | Name | Type | | :--------- | :---- | | `citation` | `any` | -*Returns\`* +_Returns\`_ `any` -Defined in: [src/lib/types.ts:72](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L72) +Defined in: [src/lib/types.ts:72](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L72) ##### `preamble?` @@ -822,30 +815,27 @@ or you can just put it in raw import { m, args } from '@unified-latex/unified-latex-types' const options = { - preamble: [ - // \author{Leeroy Jenkins} - m('author', 'Leeroy Jenkins'), - // \title{The Adventures of Leeroy Jenkins} - m('title', 'The Adventures of Leeroy Jenkins'), - // \somemacrowithoptions[optional1][optional2]{firstArg}{secondArg} - m( - 'somemacrowithoptions', - args( - ['optional1', 'optional2', 'firstArg', 'secondArg'], - { braces: '[][]{}{}'} - ) - ), - ] + preamble: [ + // \author{Leeroy Jenkins} + m('author', 'Leeroy Jenkins'), + // \title{The Adventures of Leeroy Jenkins} + m('title', 'The Adventures of Leeroy Jenkins'), + // \somemacrowithoptions[optional1][optional2]{firstArg}{secondArg} + m( + 'somemacrowithoptions', + args(['optional1', 'optional2', 'firstArg', 'secondArg'], { braces: '[][]{}{}' }), + ), + ], } ``` -Defined in: [src/lib/types.ts:193](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L193) +Defined in: [src/lib/types.ts:193](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L193) ##### `quotes?` > `string`[] -Defined in: [src/lib/types.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L30) +Defined in: [src/lib/types.ts:30](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L30) ##### `relations?` @@ -857,13 +847,13 @@ Defined in: [src/lib/types.ts:30](https://github.com/TrialAndErrorOrg/parsers/b ###### Type declaration -Defined in: [src/lib/types.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L75) +Defined in: [src/lib/types.ts:75](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L75) ##### `strikethrough?` > `"st"` | `"sout"` | `"s"` -Defined in: [src/lib/types.ts:104](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L104) +Defined in: [src/lib/types.ts:104](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L104) ##### `tabularx?` @@ -877,7 +867,7 @@ Should tabularx be used instead of tabular? false -Defined in: [src/lib/types.ts:133](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L133) +Defined in: [src/lib/types.ts:133](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L133) ##### `title?` @@ -891,7 +881,7 @@ If this is not set, the title will be taken from the heading with the "Title" st undefined -Defined in: [src/lib/types.ts:120](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L120) +Defined in: [src/lib/types.ts:120](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L120) ##### `topSection?` @@ -906,7 +896,7 @@ What the top section should be 4 = paragraph 5 = subparagraph -Defined in: [src/lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L40) +Defined in: [src/lib/types.ts:40](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L40) ##### `xcolor?` @@ -921,17 +911,17 @@ and remove color related commands from the output. true -Defined in: [src/lib/types.ts:112](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L112) +Defined in: [src/lib/types.ts:112](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L112) -*** +--- ### `H` > `HWithProps` & `HWithoutProps` & `Context` -Defined in: [src/lib/types.ts:292](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L292) +Defined in: [src/lib/types.ts:292](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L292) -*** +--- ### `Handle` @@ -957,15 +947,15 @@ Defined in: [src/lib/types.ts:292](https://github.com/TrialAndErrorOrg/parsers/ [`UnifiedLatexNode`](modules.md#unifiedlatexnode) | [`UnifiedLatexNode`](modules.md#unifiedlatexnode)[] | `void` | `undefined` -Defined in: [src/lib/types.ts:196](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L196) +Defined in: [src/lib/types.ts:196](https://github.com/TrialAndErrorOrg/parsers/blob/34b3326/libs/ooxast/ooxast-util-to-unified-latex/src/lib/types.ts#L196) -*** +--- ### `UnifiedLatexNode` > `Root` | `String` | `Whitespace` | `Parbreak` | `Comment` | `Macro` | `Environment` | `VerbatimEnvironment` | `InlineMath` | `DisplayMath` | `Group` | `Verb` -Defined in: node\_modules/.pnpm/@unified-latex+unified-latex-types\@1.3.0/node\_modules/@unified-latex/unified-latex-types/libs/ast-types.d.ts:83 +Defined in: node_modules/.pnpm/@unified-latex+unified-latex-types\@1.3.0/node_modules/@unified-latex/unified-latex-types/libs/ast-types.d.ts:83 ## Syntax tree @@ -984,61 +974,32 @@ Defined in: node\_modules/.pnpm/@unified-latex+unified-latex-types\@1.3.0/node\ [GPL-3.0-or-later](LICENSE) © Thomas F. K. Jorna [unified]: https://unifiedjs.com - [unifiedgh]: https://github.com/unifiedjs/unified - [xast-from-xml]: https://github.com/syntax-tree/xast-util-from-xml - [rehype]: https://github.com/rehypejs/rehype - [rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour - [rejour-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-parse - [rejour-stringify]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-stringify - [rejour-move-abstract]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-move-abstract - [rejour-meta]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-meta - [rejour-relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/rejour-relatex - [relatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex - [relatex-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/relatex-parse - [unifiedlatex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/unifiedLatex - [unified-latex-util-to-texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/unified-latex-util-to-texast - [unifiedlatexscript]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/rejour/unifiedLatexscript - [texast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast - [texast-util-to-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/relatex/texast-util-to-latex - [hast]: https://github.com/syntax-tree/hast - [xast]: https://github.com/syntax-tree/xast - [mdast]: https://github.com/syntax-tree/mdast - [mdast-markdown]: https://github.com/syntax-tree/mdast-util-to-markdown - [latex-utensils]: https://github.com/tamuratak/latex-utensils - [latexjs]: https://github.com/latexjs/latexjs - [reoff]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff - [reoff-parse]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-parse - [reoff-rejour]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/reoff/reoff-rejour - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast - [ooxast]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast/ooxast-util-to-unified-latex - [ooxast-util-to-unified-latex]: https://github.com/TrialAndErrorOrg/parsers/tree/main/libs/ooxast-util-to-unified-latex - [unified-latex]: https://github.com/siefken/unified-latex diff --git a/libs/ooxast/ooxast-util-to-unified-latex/jest.config.js b/libs/ooxast/ooxast-util-to-unified-latex/jest.config.js index 7b785b15..d49d29f4 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/jest.config.js +++ b/libs/ooxast/ooxast-util-to-unified-latex/jest.config.js @@ -10,7 +10,7 @@ const config = { }, testEnvironment: 'node', transform: { - '^.+.[tj]sx?$': ['@swc/jest', { 'swcrc': false }], + '^.+.[tj]sx?$': ['@swc/jest', { swcrc: false }], }, transformIgnorePatterns: [], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], diff --git a/libs/ooxast/ooxast-util-to-unified-latex/package.json b/libs/ooxast/ooxast-util-to-unified-latex/package.json index 7a4f5c3e..16e069c5 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/package.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/package.json @@ -36,5 +36,23 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast-util-get-style": "*", + "ooxast": "*", + "ooxast-util-citations": "*", + "xast-util-is-element": "*", + "xast-util-select": "*", + "csl-to-biblatex": "*", + "docx-to-vfile": "*", + "xast-util-to-string": "^2.0.1", + "csl-json": "0.1.0", + "@unified-latex/unified-latex-builder": "^1.3.1", + "@unified-latex/unified-latex-types": "^1.3.1", + "@unified-latex/unified-latex-util-render-info": "^1.3.1", + "rehype-minify-whitespace": "^5.0.0", + "vfile": "^5.3.7", + "escape-latex": "1.2.0", + "xast-util-from-xml": "^3.0.0" + } } diff --git a/libs/ooxast/ooxast-util-to-unified-latex/project.json b/libs/ooxast/ooxast-util-to-unified-latex/project.json index cedd8c36..f6029dc7 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/project.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/project.json @@ -35,10 +35,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast-util-to-unified-latex/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "deploy": { "executor": "ngx-deploy-npm:deploy", diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/lib/handlers/test.json b/libs/ooxast/ooxast-util-to-unified-latex/src/lib/handlers/test.json index b2940d43..d34b986c 100755 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/lib/handlers/test.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/lib/handlers/test.json @@ -28,9 +28,7 @@ "type": "article-journal", "volume": "306" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=2ff72fa7-d045-4f16-b5a4-27d849b07504" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=2ff72fa7-d045-4f16-b5a4-27d849b07504"] }, { "id": "ITEM-2", @@ -59,9 +57,7 @@ "type": "article-journal", "volume": "152" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=5004bfd7-ce98-49c3-a1d7-db69173c7609" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=5004bfd7-ce98-49c3-a1d7-db69173c7609"] }, { "id": "ITEM-3", @@ -99,9 +95,7 @@ "type": "article-journal", "volume": "85" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=d17914e5-d158-4b59-bf0c-02cc8d5847d7" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=d17914e5-d158-4b59-bf0c-02cc8d5847d7"] }, { "id": "ITEM-4", @@ -138,9 +132,7 @@ "type": "article-journal", "volume": "153" }, - "uris": [ - "http://www.mendeley.com/documents/?uuid=915562a7-fdd4-4e8b-af71-f03a2d817e80" - ] + "uris": ["http://www.mendeley.com/documents/?uuid=915562a7-fdd4-4e8b-af71-f03a2d817e80"] } ], "mendeley": { diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/lib/util/make-package.ts b/libs/ooxast/ooxast-util-to-unified-latex/src/lib/util/make-package.ts index 2366a1a4..d004e493 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/lib/util/make-package.ts +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/lib/util/make-package.ts @@ -7,7 +7,7 @@ export function makePackage(name: string, options: string[] = []): Macro { 'usepackage', args([options.join(','), name], { braces: '[]{}', - }) + }), ) : m('usepackage', name) } diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/footnotes/test.ooxast.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/footnotes/test.ooxast.json index ae7d5990..5a818393 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/footnotes/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/footnotes/test.ooxast.json @@ -185,4 +185,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/footnotes/test.tex.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/footnotes/test.tex.json index 9b6dc1c7..4f9191b4 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/footnotes/test.tex.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/footnotes/test.tex.json @@ -175,4 +175,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/formatting/test.ooxast.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/formatting/test.ooxast.json index 3a82194f..aea006cf 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/formatting/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/formatting/test.ooxast.json @@ -1278,4 +1278,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/formatting/test.tex.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/formatting/test.tex.json index 47670854..1981ad9c 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/formatting/test.tex.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/formatting/test.tex.json @@ -528,4 +528,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/image/test.ooxast.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/image/test.ooxast.json index a49b9616..073204c7 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/image/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/image/test.ooxast.json @@ -469,4 +469,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/image/test.tex.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/image/test.tex.json index 1cca217d..bafa334f 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/image/test.tex.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/image/test.tex.json @@ -249,4 +249,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/lists/test.ooxast.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/lists/test.ooxast.json index a417ecb1..d03ee060 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/lists/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/lists/test.ooxast.json @@ -2095,4 +2095,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/lists/test.tex.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/lists/test.tex.json index e8f171e1..3c6fb73b 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/lists/test.tex.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/lists/test.tex.json @@ -657,4 +657,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/math/test.ooxast.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/math/test.ooxast.json index 8b5c7dd3..f92d1f1b 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/math/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/math/test.ooxast.json @@ -1789,4 +1789,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/math/test.tex.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/math/test.tex.json index a292710e..c49597bf 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/math/test.tex.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/math/test.tex.json @@ -296,4 +296,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/styles/test.ooxast.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/styles/test.ooxast.json index b70553f0..d3afa34d 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/styles/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/styles/test.ooxast.json @@ -858,4 +858,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/styles/test.tex.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/styles/test.tex.json index 07e860ac..10174b9a 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/styles/test.tex.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/styles/test.tex.json @@ -375,4 +375,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/tables/test.ooxast.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/tables/test.ooxast.json index 24143042..8a4af112 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/tables/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/tables/test.ooxast.json @@ -2569,4 +2569,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/tables/test.tex.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/tables/test.tex.json index 3542cb5a..3ed1ef56 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/tables/test.tex.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/tables/test.tex.json @@ -588,4 +588,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/zotero-2/test.ooxast.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/zotero-2/test.ooxast.json index 38f4fcec..72cbc66d 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/zotero-2/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/zotero-2/test.ooxast.json @@ -24863,4 +24863,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/zotero-2/test.tex.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/zotero-2/test.tex.json index badedb21..fd51506f 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/zotero-2/test.tex.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/fixtures/zotero-2/test.tex.json @@ -7964,4 +7964,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/nocites/test.ooxast.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/nocites/test.ooxast.json index f3ec1a8f..438fddfe 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/nocites/test.ooxast.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/nocites/test.ooxast.json @@ -12382,4 +12382,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast-util-to-unified-latex/src/test/nocites/test.tex.json b/libs/ooxast/ooxast-util-to-unified-latex/src/test/nocites/test.tex.json index 6fb68377..74975f59 100644 --- a/libs/ooxast/ooxast-util-to-unified-latex/src/test/nocites/test.tex.json +++ b/libs/ooxast/ooxast-util-to-unified-latex/src/test/nocites/test.tex.json @@ -2160,4 +2160,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/ooxast/ooxast/CHANGELOG.md b/libs/ooxast/ooxast/CHANGELOG.md index 1cc3caf4..f7995ed6 100644 --- a/libs/ooxast/ooxast/CHANGELOG.md +++ b/libs/ooxast/ooxast/CHANGELOG.md @@ -4,17 +4,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.1.4](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-0.1.3...ooxast-0.1.4) (2023-09-21) - ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.1.3](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-0.1.2...ooxast-0.1.3) (2023-03-14) - ### Bug Fixes -* update types ([1149014](https://github.com/TrialAndErrorOrg/parsers/commit/11490147f93c78274c2432a9f2077bdebec00fca)) +- update types ([1149014](https://github.com/TrialAndErrorOrg/parsers/commit/11490147f93c78274c2432a9f2077bdebec00fca)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/ooxast-0.1.1...ooxast-0.1.2) (2023-03-09) @@ -22,99 +20,93 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## 0.1.0 (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) -* it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) -* **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) -* **ooxast:** metadata types ([2cb81c8](https://github.com/TrialAndErrorOrg/parsers/commit/2cb81c8a4ce31a1078a955a974f97a697a5ebe33)) -* **parser:** give up on efficient parsing for now ([92b9c45](https://github.com/TrialAndErrorOrg/parsers/commit/92b9c45361dbf38d7f9be244270ef81e40facd8c)) -* **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) -* **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) -* **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) -* **reoff:** read file more async ([fed7aa9](https://github.com/TrialAndErrorOrg/parsers/commit/fed7aa97af458404b04d805250ad5bfc348ee52c)) -* **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) +- it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) +- **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) +- **ooxast:** metadata types ([2cb81c8](https://github.com/TrialAndErrorOrg/parsers/commit/2cb81c8a4ce31a1078a955a974f97a697a5ebe33)) +- **parser:** give up on efficient parsing for now ([92b9c45](https://github.com/TrialAndErrorOrg/parsers/commit/92b9c45361dbf38d7f9be244270ef81e40facd8c)) +- **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) +- **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) +- **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) +- **reoff:** read file more async ([fed7aa9](https://github.com/TrialAndErrorOrg/parsers/commit/fed7aa97af458404b04d805250ad5bfc348ee52c)) +- **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) -* **frontend:** make 3 extra packages just so webpack doesn't import fs ugh ([bed432a](https://github.com/TrialAndErrorOrg/parsers/commit/bed432acf70a7950d981fff2a5bce4a98a4440ff)) -* jest ([beee4cc](https://github.com/TrialAndErrorOrg/parsers/commit/beee4cc41cd5789e2405eecf20cf7133066b4b39)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* **types:** added attributes to all elements ([4fc34a8](https://github.com/TrialAndErrorOrg/parsers/commit/4fc34a86ca91ea71e3e3f9235bfb4793ab944b28)) -* **types:** added children to all elements ([ae9e014](https://github.com/TrialAndErrorOrg/parsers/commit/ae9e0141cfe6c7a089da1d53c83d65f8264f17b3)) -* **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) -* **types:** sike!!!! fixed it nerd ([d94a66d](https://github.com/TrialAndErrorOrg/parsers/commit/d94a66d8dc3c152fcf6ab8a56251b52c6cbb85f7)) -* **types:** sike!!!! fixed it nerd ([ebbc049](https://github.com/TrialAndErrorOrg/parsers/commit/ebbc049955437627872653b6cfda120f485bc4ab)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) +- **frontend:** make 3 extra packages just so webpack doesn't import fs ugh ([bed432a](https://github.com/TrialAndErrorOrg/parsers/commit/bed432acf70a7950d981fff2a5bce4a98a4440ff)) +- jest ([beee4cc](https://github.com/TrialAndErrorOrg/parsers/commit/beee4cc41cd5789e2405eecf20cf7133066b4b39)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **types:** added attributes to all elements ([4fc34a8](https://github.com/TrialAndErrorOrg/parsers/commit/4fc34a86ca91ea71e3e3f9235bfb4793ab944b28)) +- **types:** added children to all elements ([ae9e014](https://github.com/TrialAndErrorOrg/parsers/commit/ae9e0141cfe6c7a089da1d53c83d65f8264f17b3)) +- **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) +- **types:** sike!!!! fixed it nerd ([d94a66d](https://github.com/TrialAndErrorOrg/parsers/commit/d94a66d8dc3c152fcf6ab8a56251b52c6cbb85f7)) +- **types:** sike!!!! fixed it nerd ([ebbc049](https://github.com/TrialAndErrorOrg/parsers/commit/ebbc049955437627872653b6cfda120f485bc4ab)) ## 0.1.0 (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) -* it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) -* **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) -* **ooxast:** metadata types ([2cb81c8](https://github.com/TrialAndErrorOrg/parsers/commit/2cb81c8a4ce31a1078a955a974f97a697a5ebe33)) -* **parser:** give up on efficient parsing for now ([92b9c45](https://github.com/TrialAndErrorOrg/parsers/commit/92b9c45361dbf38d7f9be244270ef81e40facd8c)) -* **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) -* **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) -* **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) -* **reoff:** read file more async ([fed7aa9](https://github.com/TrialAndErrorOrg/parsers/commit/fed7aa97af458404b04d805250ad5bfc348ee52c)) -* **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) +- it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) +- **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) +- **ooxast:** metadata types ([2cb81c8](https://github.com/TrialAndErrorOrg/parsers/commit/2cb81c8a4ce31a1078a955a974f97a697a5ebe33)) +- **parser:** give up on efficient parsing for now ([92b9c45](https://github.com/TrialAndErrorOrg/parsers/commit/92b9c45361dbf38d7f9be244270ef81e40facd8c)) +- **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) +- **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) +- **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) +- **reoff:** read file more async ([fed7aa9](https://github.com/TrialAndErrorOrg/parsers/commit/fed7aa97af458404b04d805250ad5bfc348ee52c)) +- **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) -* **frontend:** make 3 extra packages just so webpack doesn't import fs ugh ([bed432a](https://github.com/TrialAndErrorOrg/parsers/commit/bed432acf70a7950d981fff2a5bce4a98a4440ff)) -* jest ([beee4cc](https://github.com/TrialAndErrorOrg/parsers/commit/beee4cc41cd5789e2405eecf20cf7133066b4b39)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* **types:** added attributes to all elements ([4fc34a8](https://github.com/TrialAndErrorOrg/parsers/commit/4fc34a86ca91ea71e3e3f9235bfb4793ab944b28)) -* **types:** added children to all elements ([ae9e014](https://github.com/TrialAndErrorOrg/parsers/commit/ae9e0141cfe6c7a089da1d53c83d65f8264f17b3)) -* **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) -* **types:** sike!!!! fixed it nerd ([d94a66d](https://github.com/TrialAndErrorOrg/parsers/commit/d94a66d8dc3c152fcf6ab8a56251b52c6cbb85f7)) -* **types:** sike!!!! fixed it nerd ([ebbc049](https://github.com/TrialAndErrorOrg/parsers/commit/ebbc049955437627872653b6cfda120f485bc4ab)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) +- **frontend:** make 3 extra packages just so webpack doesn't import fs ugh ([bed432a](https://github.com/TrialAndErrorOrg/parsers/commit/bed432acf70a7950d981fff2a5bce4a98a4440ff)) +- jest ([beee4cc](https://github.com/TrialAndErrorOrg/parsers/commit/beee4cc41cd5789e2405eecf20cf7133066b4b39)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **types:** added attributes to all elements ([4fc34a8](https://github.com/TrialAndErrorOrg/parsers/commit/4fc34a86ca91ea71e3e3f9235bfb4793ab944b28)) +- **types:** added children to all elements ([ae9e014](https://github.com/TrialAndErrorOrg/parsers/commit/ae9e0141cfe6c7a089da1d53c83d65f8264f17b3)) +- **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) +- **types:** sike!!!! fixed it nerd ([d94a66d](https://github.com/TrialAndErrorOrg/parsers/commit/d94a66d8dc3c152fcf6ab8a56251b52c6cbb85f7)) +- **types:** sike!!!! fixed it nerd ([ebbc049](https://github.com/TrialAndErrorOrg/parsers/commit/ebbc049955437627872653b6cfda120f485bc4ab)) ## 0.1.0 (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) -* it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) -* **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) -* **ooxast:** metadata types ([2cb81c8](https://github.com/TrialAndErrorOrg/parsers/commit/2cb81c8a4ce31a1078a955a974f97a697a5ebe33)) -* **parser:** give up on efficient parsing for now ([92b9c45](https://github.com/TrialAndErrorOrg/parsers/commit/92b9c45361dbf38d7f9be244270ef81e40facd8c)) -* **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) -* **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) -* **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) -* **reoff:** read file more async ([fed7aa9](https://github.com/TrialAndErrorOrg/parsers/commit/fed7aa97af458404b04d805250ad5bfc348ee52c)) -* **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) +- it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) +- **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) +- **ooxast:** metadata types ([2cb81c8](https://github.com/TrialAndErrorOrg/parsers/commit/2cb81c8a4ce31a1078a955a974f97a697a5ebe33)) +- **parser:** give up on efficient parsing for now ([92b9c45](https://github.com/TrialAndErrorOrg/parsers/commit/92b9c45361dbf38d7f9be244270ef81e40facd8c)) +- **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) +- **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) +- **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) +- **reoff:** read file more async ([fed7aa9](https://github.com/TrialAndErrorOrg/parsers/commit/fed7aa97af458404b04d805250ad5bfc348ee52c)) +- **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) -* **frontend:** make 3 extra packages just so webpack doesn't import fs ugh ([bed432a](https://github.com/TrialAndErrorOrg/parsers/commit/bed432acf70a7950d981fff2a5bce4a98a4440ff)) -* jest ([beee4cc](https://github.com/TrialAndErrorOrg/parsers/commit/beee4cc41cd5789e2405eecf20cf7133066b4b39)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* **types:** added attributes to all elements ([4fc34a8](https://github.com/TrialAndErrorOrg/parsers/commit/4fc34a86ca91ea71e3e3f9235bfb4793ab944b28)) -* **types:** added children to all elements ([ae9e014](https://github.com/TrialAndErrorOrg/parsers/commit/ae9e0141cfe6c7a089da1d53c83d65f8264f17b3)) -* **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) -* **types:** sike!!!! fixed it nerd ([d94a66d](https://github.com/TrialAndErrorOrg/parsers/commit/d94a66d8dc3c152fcf6ab8a56251b52c6cbb85f7)) -* **types:** sike!!!! fixed it nerd ([ebbc049](https://github.com/TrialAndErrorOrg/parsers/commit/ebbc049955437627872653b6cfda120f485bc4ab)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) +- **frontend:** make 3 extra packages just so webpack doesn't import fs ugh ([bed432a](https://github.com/TrialAndErrorOrg/parsers/commit/bed432acf70a7950d981fff2a5bce4a98a4440ff)) +- jest ([beee4cc](https://github.com/TrialAndErrorOrg/parsers/commit/beee4cc41cd5789e2405eecf20cf7133066b4b39)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- **parser:** okay now nx bork ([e02fd04](https://github.com/TrialAndErrorOrg/parsers/commit/e02fd0412196e36a7e8f39a4e5cb3664ce2f3305)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **types:** added attributes to all elements ([4fc34a8](https://github.com/TrialAndErrorOrg/parsers/commit/4fc34a86ca91ea71e3e3f9235bfb4793ab944b28)) +- **types:** added children to all elements ([ae9e014](https://github.com/TrialAndErrorOrg/parsers/commit/ae9e0141cfe6c7a089da1d53c83d65f8264f17b3)) +- **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) +- **types:** sike!!!! fixed it nerd ([d94a66d](https://github.com/TrialAndErrorOrg/parsers/commit/d94a66d8dc3c152fcf6ab8a56251b52c6cbb85f7)) +- **types:** sike!!!! fixed it nerd ([ebbc049](https://github.com/TrialAndErrorOrg/parsers/commit/ebbc049955437627872653b6cfda120f485bc4ab)) diff --git a/libs/ooxast/ooxast/package.json b/libs/ooxast/ooxast/package.json index 737c28f8..fcfc32ed 100755 --- a/libs/ooxast/ooxast/package.json +++ b/libs/ooxast/ooxast/package.json @@ -33,5 +33,8 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "utility-types": "^3.10.0" + } } diff --git a/libs/ooxast/ooxast/project.json b/libs/ooxast/ooxast/project.json index 361433fe..a20c8772 100755 --- a/libs/ooxast/ooxast/project.json +++ b/libs/ooxast/ooxast/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/ooxast/ooxast/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/ooxast/ooxast/src/lib/attributes.d.ts b/libs/ooxast/ooxast/src/lib/attributes.d.ts index ea424f63..0cc44a5f 100755 --- a/libs/ooxast/ooxast/src/lib/attributes.d.ts +++ b/libs/ooxast/ooxast/src/lib/attributes.d.ts @@ -1,152 +1,152 @@ -export type Attributes = -| AlignH -| AlignV -| RelFromH -| RelFromV -| WrapText -| CalendarType -| ConformanceClass -| VerticalAlignRun -| XAlign -| YAlign -| BreakBin -| BreakBinSub -| FType -| Jc -| LimLoc -| Script -| Shp -| Style -| TopBot -| AnimationBuildType -| AnimationChartOnlyBuildType -| AnimationDgmOnlyBuildType -| BevelPresetType -| BlackWhiteMode -| BlendMode -| BlipCompression -| ChartBuildStep -| ColorSchemeIndex -| CompoundLine -| DgmBuildStep -| EffectContainerType -| FontCollectionIndex -| LightRigDirection -| LightRigType -| LineCap -| LineEndLength -| LineEndType -| LineEndWidth -| OnOffStyleType -| PathFillMode -| PathShadeType -| PenAlignment -| PresetCameraType -| PresetColorVal -| PresetLineDashVal -| PresetMaterialType -| PresetPatternVal -| PresetShadowVal -| RectAlignment -| SchemeColorVal -| ShapeType -| SystemColorVal -| TextAlignType -| TextAnchoringType -| TextAutonumberScheme -| TextCapsType -| TextFontAlignType -| TextHorzOverflowType -| TextShapeType -| TextStrikeType -| TextTabAlignType -| TextUnderlineType -| TextVerticalType -| TextVertOverflowType -| TextWrappingType -| TileFlipMode -| AnnotationVMerge -| Border -| BrClear -| BrType -| CaptionPos -| ChapterSep -| CharacterSpacing -| CombineBrackets -| Direction -| DisplacedByCustomXml -| DocGrid -| DocPartBehavior -| DocPartGallery -| DocPartType -| DocProtect -| DropCap -| EdGrp -| EdnPos -| Em -| FFTextType -| FldCharType -| FontFamily -| FrameLayout -| FrameScrollbar -| FtnEdn -| FtnPos -| HAnchor -| HdrFtr -| HeightRule -| HexColorAuto -| HighlightColor -| Hint -| InfoTextType -| Jc -| JcTable -| LevelSuffix -| LineNumberRestart -| LineSpacingRule -| Lock -| MailMergeDest -| MailMergeDocType -| MailMergeOdsoFMDFieldType -| MailMergeSourceType -| Merge -| MultiLevelType -| NumberFormat -| ObjectDrawAspect -| ObjectUpdateMode -| PageBorderDisplay -| PageBorderOffset -| PageBorderZOrder -| PageOrientation -| Pitch -| Proof -| ProofErr -| PTabAlignment -| PTabLeader -| PTabRelativeTo -| RestartNumber -| RubyAlign -| SdtDateMappingType -| SectionMark -| Shd -| StyleSort -| StyleType -| TabJc -| TabTlc -| TargetScreenSz -| TblLayoutType -| TblOverlap -| TblStyleOverrideType -| TblWidth -| TextAlignment -| TextboxTightWrap -| TextDirection -| TextEffect -| Theme -| ThemeColor -| Underline -| VAnchor -| VerticalJc -| View -| WmlColorSchemeIndex -| Wrap -| Zoom +export type Attributes = + | AlignH + | AlignV + | RelFromH + | RelFromV + | WrapText + | CalendarType + | ConformanceClass + | VerticalAlignRun + | XAlign + | YAlign + | BreakBin + | BreakBinSub + | FType + | Jc + | LimLoc + | Script + | Shp + | Style + | TopBot + | AnimationBuildType + | AnimationChartOnlyBuildType + | AnimationDgmOnlyBuildType + | BevelPresetType + | BlackWhiteMode + | BlendMode + | BlipCompression + | ChartBuildStep + | ColorSchemeIndex + | CompoundLine + | DgmBuildStep + | EffectContainerType + | FontCollectionIndex + | LightRigDirection + | LightRigType + | LineCap + | LineEndLength + | LineEndType + | LineEndWidth + | OnOffStyleType + | PathFillMode + | PathShadeType + | PenAlignment + | PresetCameraType + | PresetColorVal + | PresetLineDashVal + | PresetMaterialType + | PresetPatternVal + | PresetShadowVal + | RectAlignment + | SchemeColorVal + | ShapeType + | SystemColorVal + | TextAlignType + | TextAnchoringType + | TextAutonumberScheme + | TextCapsType + | TextFontAlignType + | TextHorzOverflowType + | TextShapeType + | TextStrikeType + | TextTabAlignType + | TextUnderlineType + | TextVerticalType + | TextVertOverflowType + | TextWrappingType + | TileFlipMode + | AnnotationVMerge + | Border + | BrClear + | BrType + | CaptionPos + | ChapterSep + | CharacterSpacing + | CombineBrackets + | Direction + | DisplacedByCustomXml + | DocGrid + | DocPartBehavior + | DocPartGallery + | DocPartType + | DocProtect + | DropCap + | EdGrp + | EdnPos + | Em + | FFTextType + | FldCharType + | FontFamily + | FrameLayout + | FrameScrollbar + | FtnEdn + | FtnPos + | HAnchor + | HdrFtr + | HeightRule + | HexColorAuto + | HighlightColor + | Hint + | InfoTextType + | Jc + | JcTable + | LevelSuffix + | LineNumberRestart + | LineSpacingRule + | Lock + | MailMergeDest + | MailMergeDocType + | MailMergeOdsoFMDFieldType + | MailMergeSourceType + | Merge + | MultiLevelType + | NumberFormat + | ObjectDrawAspect + | ObjectUpdateMode + | PageBorderDisplay + | PageBorderOffset + | PageBorderZOrder + | PageOrientation + | Pitch + | Proof + | ProofErr + | PTabAlignment + | PTabLeader + | PTabRelativeTo + | RestartNumber + | RubyAlign + | SdtDateMappingType + | SectionMark + | Shd + | StyleSort + | StyleType + | TabJc + | TabTlc + | TargetScreenSz + | TblLayoutType + | TblOverlap + | TblStyleOverrideType + | TblWidth + | TextAlignment + | TextboxTightWrap + | TextDirection + | TextEffect + | Theme + | ThemeColor + | Underline + | VAnchor + | VerticalJc + | View + | WmlColorSchemeIndex + | Wrap + | Zoom diff --git a/libs/plugins/better-nx-tsc/jest.config.ts b/libs/plugins/better-nx-tsc/jest.config.ts index c9690def..fbb7f274 100644 --- a/libs/plugins/better-nx-tsc/jest.config.ts +++ b/libs/plugins/better-nx-tsc/jest.config.ts @@ -7,4 +7,4 @@ export default { }, moduleFileExtensions: ['ts', 'js', 'html'], coverageDirectory: '../../coverage/packages/better-nx-tsc', -}; +} diff --git a/libs/plugins/better-nx-tsc/src/executors/publishable/schema.json b/libs/plugins/better-nx-tsc/src/executors/publishable/schema.json index 49788e1a..7b58f3a0 100644 --- a/libs/plugins/better-nx-tsc/src/executors/publishable/schema.json +++ b/libs/plugins/better-nx-tsc/src/executors/publishable/schema.json @@ -15,7 +15,5 @@ "description": "Run through all the steps without actually publishing" } }, - "required": [ - "dist" - ] + "required": ["dist"] } diff --git a/libs/plugins/better-nx-tsc/src/executors/tsc/schema.json b/libs/plugins/better-nx-tsc/src/executors/tsc/schema.json index 6d25dbf2..d71131ef 100644 --- a/libs/plugins/better-nx-tsc/src/executors/tsc/schema.json +++ b/libs/plugins/better-nx-tsc/src/executors/tsc/schema.json @@ -61,10 +61,7 @@ "buildableProjectDepsInPackageJsonType": { "type": "string", "description": "When `updateBuildableProjectDepsInPackageJson` is `true`, this adds dependencies to either `peerDependencies` or `dependencies`.", - "enum": [ - "dependencies", - "peerDependencies" - ], + "enum": ["dependencies", "peerDependencies"], "default": "peerDependencies" }, "external": { @@ -72,10 +69,7 @@ "oneOf": [ { "type": "string", - "enum": [ - "all", - "none" - ] + "enum": ["all", "none"] }, { "type": "array", @@ -90,18 +84,12 @@ "oneOf": [ { "type": "string", - "enum": [ - "esm", - "cjs" - ] + "enum": ["esm", "cjs"] }, { "type": "array", "items": { - "enum": [ - "esm", - "cjs" - ] + "enum": ["esm", "cjs"] } } ] @@ -123,9 +111,7 @@ "type": "string" }, "description": "List of target names that annotate a build target for a project", - "default": [ - "build" - ] + "default": ["build"] }, "generateLockfile": { "type": "boolean", @@ -134,11 +120,7 @@ "x-priority": "internal" } }, - "required": [ - "main", - "outputPath", - "tsConfig" - ], + "required": ["main", "outputPath", "tsConfig"], "definitions": { "assetPattern": { "oneOf": [ @@ -166,11 +148,7 @@ } }, "additionalProperties": false, - "required": [ - "glob", - "input", - "output" - ] + "required": ["glob", "input", "output"] }, { "type": "string" @@ -194,9 +172,7 @@ } }, "additionalProperties": false, - "required": [ - "name" - ] + "required": ["name"] } ] } diff --git a/libs/plugins/better-nx-tsc/tsconfig.spec.json b/libs/plugins/better-nx-tsc/tsconfig.spec.json index 9b2a121d..f6d8ffcc 100644 --- a/libs/plugins/better-nx-tsc/tsconfig.spec.json +++ b/libs/plugins/better-nx-tsc/tsconfig.spec.json @@ -5,10 +5,5 @@ "module": "commonjs", "types": ["jest", "node"] }, - "include": [ - "jest.config.ts", - "src/**/*.test.ts", - "src/**/*.spec.ts", - "src/**/*.d.ts" - ] + "include": ["jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts", "src/**/*.d.ts"] } diff --git a/libs/processors/docx-to-jats/project.json b/libs/processors/docx-to-jats/project.json index a53514b3..2393300e 100755 --- a/libs/processors/docx-to-jats/project.json +++ b/libs/processors/docx-to-jats/project.json @@ -6,10 +6,7 @@ "targets": { "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/processors/docx-to-jats/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/processors/docx-to-tex/project.json b/libs/processors/docx-to-tex/project.json index 645fb14e..c350a272 100755 --- a/libs/processors/docx-to-tex/project.json +++ b/libs/processors/docx-to-tex/project.json @@ -6,10 +6,7 @@ "targets": { "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/processors/docx-to-tex/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/processors/docx-to-tex/src/lib/processors-docx-to-tex.ts b/libs/processors/docx-to-tex/src/lib/processors-docx-to-tex.ts index 6c714c67..ed0c92c5 100755 --- a/libs/processors/docx-to-tex/src/lib/processors-docx-to-tex.ts +++ b/libs/processors/docx-to-tex/src/lib/processors-docx-to-tex.ts @@ -17,7 +17,7 @@ export async function docxToTex( url?: string mailto?: string log?: boolean - } = {} + } = {}, ): Promise { const vfile = await docxToVFile(input) const { citationType: type, url: apiUrl, mailto } = options @@ -25,14 +25,7 @@ export async function docxToTex( const proc = unified() .use(reoffParse) .use(reoffClean, { - rPrRemoveList: [ - 'w:lang', - 'w:shd', - 'w:szCs', - 'w:kern', - 'w:rFonts', - 'w:noProof', - ], + rPrRemoveList: ['w:lang', 'w:shd', 'w:szCs', 'w:kern', 'w:rFonts', 'w:noProof'], }) .use(reoffParseReferences, { apiUrl, mailto }) .use(reoffCite, { type: type || 'mendeley' }) diff --git a/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.jats.json index d1dad55f..9d5a8fe0 100644 --- a/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.jats.json @@ -17361,4 +17361,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.ooxast.json index e3723bbc..50ed874c 100644 --- a/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.ooxast.json @@ -71065,4 +71065,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.tex.json index b8cfffce..1fad15d8 100644 --- a/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/citationparagraph/test.tex.json @@ -14469,4 +14469,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.jats.json index 7252a50d..b49f337d 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.jats.json @@ -15207,4 +15207,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.ooxast.json index ec9f0b90..99682c59 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.ooxast.json @@ -125895,4 +125895,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.tex.json index ec78e1a3..adc092c4 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/citavi/test.tex.json @@ -12841,4 +12841,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/complete/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/complete/test.jats.json index bdbd9031..7867fb4b 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/complete/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/complete/test.jats.json @@ -35597,4 +35597,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/complete/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/complete/test.ooxast.json index 80bbf43a..5a75afcc 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/complete/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/complete/test.ooxast.json @@ -257653,4 +257653,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/complete/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/complete/test.tex.json index 867d2a2b..bf15fd61 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/complete/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/complete/test.tex.json @@ -21753,4 +21753,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.jats.json index 26be00fb..12b2f555 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.jats.json @@ -4448,4 +4448,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.ooxast.json index 6a4859c9..b11355b9 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.ooxast.json @@ -18406,4 +18406,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.tex.json index 611a198a..114af3a1 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/endnote/test.tex.json @@ -3241,4 +3241,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.jats.json index 01157782..205b5d25 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.jats.json @@ -112,4 +112,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.ooxast.json index cd0a56be..e9a15987 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.ooxast.json @@ -968,4 +968,4 @@ } } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.tex.json index de386b8e..802e1ccf 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/footnotes/test.tex.json @@ -153,4 +153,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.jats.json index 6b4ce74a..fd2832ff 100644 --- a/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.jats.json @@ -241,4 +241,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.ooxast.json index 4a8d57f1..ce741134 100644 --- a/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.ooxast.json @@ -1768,4 +1768,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.tex.json index f7a4ea34..0ccf600f 100644 --- a/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/formatting/test.tex.json @@ -267,4 +267,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/image/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/image/test.jats.json index 00731ca1..d2f9a4a9 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/image/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/image/test.jats.json @@ -89,4 +89,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/image/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/image/test.ooxast.json index 8f6b0e06..592fab13 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/image/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/image/test.ooxast.json @@ -1433,4 +1433,4 @@ } } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/image/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/image/test.tex.json index e7f48656..e96234f1 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/image/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/image/test.tex.json @@ -150,4 +150,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/lists/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/lists/test.jats.json index 6b4ce74a..fd2832ff 100644 --- a/libs/processors/docx-to-tex/src/test/fixtures/lists/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/lists/test.jats.json @@ -241,4 +241,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/lists/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/lists/test.ooxast.json index 4a8d57f1..ce741134 100644 --- a/libs/processors/docx-to-tex/src/test/fixtures/lists/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/lists/test.ooxast.json @@ -1768,4 +1768,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/lists/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/lists/test.tex.json index f7a4ea34..0ccf600f 100644 --- a/libs/processors/docx-to-tex/src/test/fixtures/lists/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/lists/test.tex.json @@ -267,4 +267,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.jats.json index 175b7d58..e4652230 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.jats.json @@ -3221,4 +3221,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.ooxast.json index f3ec1a8f..438fddfe 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.ooxast.json @@ -12382,4 +12382,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.tex.json index 6660d246..962d44a6 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/nocites/test.tex.json @@ -1871,4 +1871,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/tables/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/tables/test.jats.json index 4748e690..704a866b 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/tables/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/tables/test.jats.json @@ -332,4 +332,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/tables/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/tables/test.ooxast.json index c240bc79..1460f9d0 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/tables/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/tables/test.ooxast.json @@ -2553,4 +2553,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/tables/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/tables/test.tex.json index 502c9cb1..ea8de0a6 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/tables/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/tables/test.tex.json @@ -466,4 +466,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/word/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/word/test.jats.json index edbc2e26..1e64c9a4 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/word/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/word/test.jats.json @@ -325,4 +325,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/word/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/word/test.ooxast.json index 541da6ce..40bca573 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/word/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/word/test.ooxast.json @@ -832,4 +832,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/word/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/word/test.tex.json index 4044c2cc..405716a6 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/word/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/word/test.tex.json @@ -299,4 +299,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.jats.json index 3b35a5bb..b8383978 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.jats.json @@ -12897,4 +12897,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.ooxast.json index c9443e6a..2f667172 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.ooxast.json @@ -23678,4 +23678,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.tex.json index 42bc2735..5be9eb29 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/zotero-2/test.tex.json @@ -6081,4 +6081,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.jats.json b/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.jats.json index fcaf80ed..29e49175 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.jats.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.jats.json @@ -10028,4 +10028,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.ooxast.json b/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.ooxast.json index cc57a9b3..bf28a694 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.ooxast.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.ooxast.json @@ -42943,4 +42943,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.tex.json b/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.tex.json index 053667a5..f4d7d480 100755 --- a/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.tex.json +++ b/libs/processors/docx-to-tex/src/test/fixtures/zotero/test.tex.json @@ -7769,4 +7769,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/libs/processors/jats-to-tex/project.json b/libs/processors/jats-to-tex/project.json index 4223dfe5..5b611262 100755 --- a/libs/processors/jats-to-tex/project.json +++ b/libs/processors/jats-to-tex/project.json @@ -6,10 +6,7 @@ "targets": { "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/processors/jats-to-tex/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/processors/jats-to-tex/src/lib/processors-jats-to-tex.ts b/libs/processors/jats-to-tex/src/lib/processors-jats-to-tex.ts index 2ba6e79f..9c580999 100755 --- a/libs/processors/jats-to-tex/src/lib/processors-jats-to-tex.ts +++ b/libs/processors/jats-to-tex/src/lib/processors-jats-to-tex.ts @@ -5,10 +5,7 @@ import { unified } from 'unified' import { VFile } from 'vfile' export const jatsToTex = async (jats: string): Promise => { - const proc = unified() - .use(rejourParse) - .use(rejourRelatex) - .use(relatexStringify) + const proc = unified().use(rejourParse).use(rejourRelatex).use(relatexStringify) // console.log(jats) // console.log(proc) diff --git a/libs/processors/jote-docx-tex/project.json b/libs/processors/jote-docx-tex/project.json index 1756f8fb..478e307b 100755 --- a/libs/processors/jote-docx-tex/project.json +++ b/libs/processors/jote-docx-tex/project.json @@ -6,10 +6,7 @@ "targets": { "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/processors/jote-docx-tex/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/processors/jote-docx-tex/src/lib/processors-jote-docx-tex.ts b/libs/processors/jote-docx-tex/src/lib/processors-jote-docx-tex.ts index 64f18bc3..12ffa4ab 100755 --- a/libs/processors/jote-docx-tex/src/lib/processors-jote-docx-tex.ts +++ b/libs/processors/jote-docx-tex/src/lib/processors-jote-docx-tex.ts @@ -18,7 +18,7 @@ export async function docxToTex( citationType?: 'mendeley' | 'native' | 'citavi' | 'zotero' | 'endnote' url?: string mailto?: string - } = {} + } = {}, ): Promise { const vfile = await docxToVFile(input) const { citationType: type, url: apiUrl, mailto } = options @@ -26,14 +26,7 @@ export async function docxToTex( const proc = unified() .use(reoffParse) .use(reoffClean, { - rPrRemoveList: [ - 'w:lang', - 'w:shd', - 'w:szCs', - 'w:kern', - 'w:rFonts', - 'w:noProof', - ], + rPrRemoveList: ['w:lang', 'w:shd', 'w:szCs', 'w:kern', 'w:rFonts', 'w:noProof'], }) .use(reoffParseReferences, { apiUrl, mailto }) .use(reoffCite, { type: type ?? 'mendeley' } as Options) diff --git a/libs/rejour/rejour-frontmatter/package.json b/libs/rejour/rejour-frontmatter/package.json index 7b8ce15c..a11c7f81 100755 --- a/libs/rejour/rejour-frontmatter/package.json +++ b/libs/rejour/rejour-frontmatter/package.json @@ -32,5 +32,12 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "jast-types": "*", + "jast-util-to-csl": "*", + "unist-util-visit": "^4.1.2", + "unist-util-is": "^5.2.1", + "vfile": "^5.3.7" + } } diff --git a/libs/rejour/rejour-frontmatter/project.json b/libs/rejour/rejour-frontmatter/project.json index 00b67a2c..e409468f 100755 --- a/libs/rejour/rejour-frontmatter/project.json +++ b/libs/rejour/rejour-frontmatter/project.json @@ -41,10 +41,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/rejour/rejour-frontmatter/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/rejour/rejour-meta/package.json b/libs/rejour/rejour-meta/package.json index 5d06ae91..85ce9845 100755 --- a/libs/rejour/rejour-meta/package.json +++ b/libs/rejour/rejour-meta/package.json @@ -32,5 +32,8 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "jast-types": "*" + } } diff --git a/libs/rejour/rejour-meta/project.json b/libs/rejour/rejour-meta/project.json index ca51eec6..52a3fd0c 100755 --- a/libs/rejour/rejour-meta/project.json +++ b/libs/rejour/rejour-meta/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/rejour/rejour-meta/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/rejour/rejour-move-abstract/package.json b/libs/rejour/rejour-move-abstract/package.json index 7b264f10..f43d1598 100755 --- a/libs/rejour/rejour-move-abstract/package.json +++ b/libs/rejour/rejour-move-abstract/package.json @@ -32,5 +32,11 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "jast-types": "*", + "unist-util-visit": "^4.1.2", + "unist-util-remove": "^3.1.1", + "unist-util-filter": "^4.0.1" + } } diff --git a/libs/rejour/rejour-move-abstract/project.json b/libs/rejour/rejour-move-abstract/project.json index acdcb5ae..0ec2c9d7 100755 --- a/libs/rejour/rejour-move-abstract/project.json +++ b/libs/rejour/rejour-move-abstract/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/rejour/rejour-move-abstract/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/rejour/rejour-parse/CHANGELOG.md b/libs/rejour/rejour-parse/CHANGELOG.md index 0820f199..c89c0a50 100644 --- a/libs/rejour/rejour-parse/CHANGELOG.md +++ b/libs/rejour/rejour-parse/CHANGELOG.md @@ -6,33 +6,32 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `jast-types` updated to version `0.1.2` +- `jast-types` updated to version `0.1.2` ### Bug Fixes -* make small fixes ([3c87afc](https://github.com/TrialAndErrorOrg/parsers/commit/3c87afc5afd38971bba9157b41eb6ee83f7482c2)) +- make small fixes ([3c87afc](https://github.com/TrialAndErrorOrg/parsers/commit/3c87afc5afd38971bba9157b41eb6ee83f7482c2)) ## 0.1.0 (2023-03-09) ### Dependency Updates -* `jast-types` updated to version `0.1.0` -* `utils-misc` updated to version `0.1.0` +- `jast-types` updated to version `0.1.0` +- `utils-misc` updated to version `0.1.0` ### Features -* added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **ci:** rename jast -> jats to prevent dispute ([dfeb4a1](https://github.com/TrialAndErrorOrg/parsers/commit/dfeb4a1ffc1dc937bd8b15764434d846ef323222)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) -* **ojs:** add more ojs stuff ([3c55a9d](https://github.com/TrialAndErrorOrg/parsers/commit/3c55a9d17cecef513085c55870728e53bee17194)) -* **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) -* **rejour-relatex:** parse lists, and display everything ([9dbab58](https://github.com/TrialAndErrorOrg/parsers/commit/9dbab5875d891f5e94f9627c3ae5c3a93b743613)) - +- added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **ci:** rename jast -> jats to prevent dispute ([dfeb4a1](https://github.com/TrialAndErrorOrg/parsers/commit/dfeb4a1ffc1dc937bd8b15764434d846ef323222)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) +- **ojs:** add more ojs stuff ([3c55a9d](https://github.com/TrialAndErrorOrg/parsers/commit/3c55a9d17cecef513085c55870728e53bee17194)) +- **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) +- **rejour-relatex:** parse lists, and display everything ([9dbab58](https://github.com/TrialAndErrorOrg/parsers/commit/9dbab5875d891f5e94f9627c3ae5c3a93b743613)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* make build work ([b80360b](https://github.com/TrialAndErrorOrg/parsers/commit/b80360bc88bc7c1ba838c070ab8fae598dc963b4)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- make build work ([b80360b](https://github.com/TrialAndErrorOrg/parsers/commit/b80360bc88bc7c1ba838c070ab8fae598dc963b4)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/rejour/rejour-parse/package.json b/libs/rejour/rejour-parse/package.json index 4af7bb23..e9bc603a 100755 --- a/libs/rejour/rejour-parse/package.json +++ b/libs/rejour/rejour-parse/package.json @@ -34,5 +34,12 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "jast-types": "*", + "xast-util-from-xml": "^3.0.0", + "unified": "^10.1.2", + "unist-util-filter": "^4.0.1", + "unist-util-map": "^3.1.3" + } } diff --git a/libs/rejour/rejour-parse/project.json b/libs/rejour/rejour-parse/project.json index 9bc69938..c1cc7ed4 100755 --- a/libs/rejour/rejour-parse/project.json +++ b/libs/rejour/rejour-parse/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/rejour/rejour-parse/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/rejour/rejour-relatex/package.json b/libs/rejour/rejour-relatex/package.json index c2c480de..5c82e384 100755 --- a/libs/rejour/rejour-relatex/package.json +++ b/libs/rejour/rejour-relatex/package.json @@ -34,5 +34,14 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "rejour-parse": "*", + "relatex-stringify": "*", + "jast-util-to-texast": "*", + "jast-types": "*", + "texast": "*", + "unified": "^10.1.2", + "vfile": "^5.3.7" + } } diff --git a/libs/rejour/rejour-relatex/project.json b/libs/rejour/rejour-relatex/project.json index 61618079..4eb7c582 100755 --- a/libs/rejour/rejour-relatex/project.json +++ b/libs/rejour/rejour-relatex/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/rejour/rejour-relatex/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/rejour/rejour-stringify/CHANGELOG.md b/libs/rejour/rejour-stringify/CHANGELOG.md index 92a7cf4c..6a1bacc2 100644 --- a/libs/rejour/rejour-stringify/CHANGELOG.md +++ b/libs/rejour/rejour-stringify/CHANGELOG.md @@ -6,19 +6,18 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `jast-types` updated to version `0.1.2` -* `utils-misc` updated to version `0.1.0` +- `jast-types` updated to version `0.1.2` +- `utils-misc` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **ci:** rename jast -> jats to prevent dispute ([dfeb4a1](https://github.com/TrialAndErrorOrg/parsers/commit/dfeb4a1ffc1dc937bd8b15764434d846ef323222)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) -* **ojs:** add more ojs stuff ([3c55a9d](https://github.com/TrialAndErrorOrg/parsers/commit/3c55a9d17cecef513085c55870728e53bee17194)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **ci:** rename jast -> jats to prevent dispute ([dfeb4a1](https://github.com/TrialAndErrorOrg/parsers/commit/dfeb4a1ffc1dc937bd8b15764434d846ef323222)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) +- **ojs:** add more ojs stuff ([3c55a9d](https://github.com/TrialAndErrorOrg/parsers/commit/3c55a9d17cecef513085c55870728e53bee17194)) ### Bug Fixes -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* **rejour-stringify:** move to new format ([ddbd7e9](https://github.com/TrialAndErrorOrg/parsers/commit/ddbd7e97f46a2154eb2fb1cf472e61671c039b71)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **rejour-stringify:** move to new format ([ddbd7e9](https://github.com/TrialAndErrorOrg/parsers/commit/ddbd7e97f46a2154eb2fb1cf472e61671c039b71)) diff --git a/libs/rejour/rejour-stringify/package.json b/libs/rejour/rejour-stringify/package.json index b5ad7094..bb0c72d3 100755 --- a/libs/rejour/rejour-stringify/package.json +++ b/libs/rejour/rejour-stringify/package.json @@ -32,5 +32,11 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "jast-types": "*", + "unified": "^10.1.2", + "unist-util-map": "^3.1.3", + "xast-util-to-xml": "^3.0.2" + } } diff --git a/libs/rejour/rejour-stringify/project.json b/libs/rejour/rejour-stringify/project.json index a9508995..9cdd4b5c 100755 --- a/libs/rejour/rejour-stringify/project.json +++ b/libs/rejour/rejour-stringify/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/rejour/rejour-stringify/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/relatex/relatex-add-preamble/package.json b/libs/relatex/relatex-add-preamble/package.json index f173da8e..4550ec11 100755 --- a/libs/relatex/relatex-add-preamble/package.json +++ b/libs/relatex/relatex-add-preamble/package.json @@ -32,5 +32,11 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "texast": "*", + "texast-util-add-preamble": "*", + "vfile": "^5.3.7", + "unified": "^10.1.2" + } } diff --git a/libs/relatex/relatex-add-preamble/project.json b/libs/relatex/relatex-add-preamble/project.json index 0178d3ad..3af072e6 100755 --- a/libs/relatex/relatex-add-preamble/project.json +++ b/libs/relatex/relatex-add-preamble/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/relatex/relatex-add-preamble/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/relatex/relatex-add-preamble/src/lib/relatex-add-preamble.ts b/libs/relatex/relatex-add-preamble/src/lib/relatex-add-preamble.ts index 4d86c767..ba3efe2b 100755 --- a/libs/relatex/relatex-add-preamble/src/lib/relatex-add-preamble.ts +++ b/libs/relatex/relatex-add-preamble/src/lib/relatex-add-preamble.ts @@ -4,7 +4,7 @@ import { Plugin } from 'unified' import { PreambleCommand, addPreamble } from 'texast-util-add-preamble' export default function relatexAddPreamble( - settings: PreambleCommand[] + settings: PreambleCommand[], ): ReturnType> { return (tree: Root, file: VFile) => { return addPreamble(tree, settings) diff --git a/libs/relatex/relatex-stringify/src/lib/relatex-stringify.ts b/libs/relatex/relatex-stringify/src/lib/relatex-stringify.ts index e51db721..893664ad 100755 --- a/libs/relatex/relatex-stringify/src/lib/relatex-stringify.ts +++ b/libs/relatex/relatex-stringify/src/lib/relatex-stringify.ts @@ -17,9 +17,8 @@ const relatexStringify = function relatexStringify(options?: Options | void) { // Note: this option is not in the readme. // The goal is for it to be set by plugins on `data` instead of being // passed by users. - extensions: (this.data('toLatexExtensions') || - []) as ToLatexOptions['extensions'], - }) + extensions: (this.data('toLatexExtensions') || []) as ToLatexOptions['extensions'], + }), ) } diff --git a/libs/reoff/docx-to-vfile/CHANGELOG.md b/libs/reoff/docx-to-vfile/CHANGELOG.md index a09c2743..c19265a7 100644 --- a/libs/reoff/docx-to-vfile/CHANGELOG.md +++ b/libs/reoff/docx-to-vfile/CHANGELOG.md @@ -4,53 +4,46 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.8.2](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.8.1...docx-to-vfile-0.8.2) (2023-09-21) - ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.8.2](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.8.1...docx-to-vfile-0.8.2) (2023-09-21) - ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.8.1](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.8.0...docx-to-vfile-0.8.1) (2023-07-18) - ### Bug Fixes -* stupid package.json issue ([e27ee3e](https://github.com/TrialAndErrorOrg/parsers/commit/e27ee3ed91619e8adb0de6ed96af99da0ec79198)) +- stupid package.json issue ([e27ee3e](https://github.com/TrialAndErrorOrg/parsers/commit/e27ee3ed91619e8adb0de6ed96af99da0ec79198)) ## [0.8.0](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.7.0...docx-to-vfile-0.8.0) (2023-07-11) ## [0.7.0](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.6.1...docx-to-vfile-0.7.0) (2023-05-30) - ### Features -* **docx-to-vfile:** move relations mapping to reoff-parse ([e0e4334](https://github.com/TrialAndErrorOrg/parsers/commit/e0e43345fcba201be8d3bc52615dbf422c2c6f64)) +- **docx-to-vfile:** move relations mapping to reoff-parse ([e0e4334](https://github.com/TrialAndErrorOrg/parsers/commit/e0e43345fcba201be8d3bc52615dbf422c2c6f64)) ## [0.6.1](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.6.0...docx-to-vfile-0.6.1) (2023-03-27) - ### Bug Fixes -* **docx-to-vfile:** fix imports ([8fbd4d1](https://github.com/TrialAndErrorOrg/parsers/commit/8fbd4d19fe0eedd8f22514e7da6e86e54453cca9)) +- **docx-to-vfile:** fix imports ([8fbd4d1](https://github.com/TrialAndErrorOrg/parsers/commit/8fbd4d19fe0eedd8f22514e7da6e86e54453cca9)) ## [0.6.0](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.5.3...docx-to-vfile-0.6.0) (2023-03-27) - ### Features -* **docx-to-vfile:** allow for Buffer input ([3e22847](https://github.com/TrialAndErrorOrg/parsers/commit/3e22847ddde6a3a129f846149d2148462e90cd40)) -* **docx-to-vfile:** make more isomorphic ([41ed5e8](https://github.com/TrialAndErrorOrg/parsers/commit/41ed5e8f89bfe1b2e58ef6573ec5ae530fda9645)) - +- **docx-to-vfile:** allow for Buffer input ([3e22847](https://github.com/TrialAndErrorOrg/parsers/commit/3e22847ddde6a3a129f846149d2148462e90cd40)) +- **docx-to-vfile:** make more isomorphic ([41ed5e8](https://github.com/TrialAndErrorOrg/parsers/commit/41ed5e8f89bfe1b2e58ef6573ec5ae530fda9645)) ### Bug Fixes -* **docx-to-vfile:** add vitest and make sure it works in vite ([39e53bb](https://github.com/TrialAndErrorOrg/parsers/commit/39e53bb4129e4c005798cb03322ab380290de41c)) +- **docx-to-vfile:** add vitest and make sure it works in vite ([39e53bb](https://github.com/TrialAndErrorOrg/parsers/commit/39e53bb4129e4c005798cb03322ab380290de41c)) ## [0.5.3](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.5.2...docx-to-vfile-0.5.3) (2023-03-14) @@ -60,107 +53,85 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.5.0](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.4.1...docx-to-vfile-0.5.0) (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) ## [0.5.0](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.4.1...docx-to-vfile-0.5.0) (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) ## [0.5.0](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.4.1...docx-to-vfile-0.5.0) (2023-03-09) - ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) ## [0.4.1](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.4.0...docx-to-vfile-0.4.1) (2023-03-06) - ### Bug Fixes -* it builds, oh my god ([62ff1e3](https://github.com/TrialAndErrorOrg/parsers/commit/62ff1e37c3c778b56e7f889cc33fbd5c6aa522fd)) - - +- it builds, oh my god ([62ff1e3](https://github.com/TrialAndErrorOrg/parsers/commit/62ff1e37c3c778b56e7f889cc33fbd5c6aa522fd)) # [0.4.0](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.3.0...docx-to-vfile-0.4.0) (2023-03-05) - ### Bug Fixes -* **docx-to-vfile:** set known data attributes on VFile DataMap interface instead of extending the filetype and breaking everything ([0afe6e5](https://github.com/TrialAndErrorOrg/parsers/commit/0afe6e5c51f6374856a1267e6895717998e72330)) - +- **docx-to-vfile:** set known data attributes on VFile DataMap interface instead of extending the filetype and breaking everything ([0afe6e5](https://github.com/TrialAndErrorOrg/parsers/commit/0afe6e5c51f6374856a1267e6895717998e72330)) ### Features -* **docx-to-vfile:** finalize api ([7c14a6d](https://github.com/TrialAndErrorOrg/parsers/commit/7c14a6db76322c1e380f043b5742fa2abf289a0d)) - - +- **docx-to-vfile:** finalize api ([7c14a6d](https://github.com/TrialAndErrorOrg/parsers/commit/7c14a6db76322c1e380f043b5742fa2abf289a0d)) # [0.3.0](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.2.0...docx-to-vfile-0.3.0) (2023-03-05) - ### Bug Fixes -* make tests run again ([4621f7d](https://github.com/TrialAndErrorOrg/parsers/commit/4621f7df2454b9a4220d2eabcf6a3dbf8f61cae8)) - +- make tests run again ([4621f7d](https://github.com/TrialAndErrorOrg/parsers/commit/4621f7df2454b9a4220d2eabcf6a3dbf8f61cae8)) ### Features -* **docx-to-vfile:** be less prescriptive about which files are to be included in the vfile, defer that to `reoff-parse` ([5ec48a5](https://github.com/TrialAndErrorOrg/parsers/commit/5ec48a5e51a0c83dd24b65847950138a46049307)) - - +- **docx-to-vfile:** be less prescriptive about which files are to be included in the vfile, defer that to `reoff-parse` ([5ec48a5](https://github.com/TrialAndErrorOrg/parsers/commit/5ec48a5e51a0c83dd24b65847950138a46049307)) # [0.2.0](https://github.com/TrialAndErrorOrg/parsers/compare/docx-to-vfile-0.1.0...docx-to-vfile-0.2.0) (2023-03-05) - ### Features -* **docx-to-vfile:** setup auto versioning/deployment ([d643888](https://github.com/TrialAndErrorOrg/parsers/commit/d64388820517b4a584a7e34f7fce93c590ecc5de)) - - +- **docx-to-vfile:** setup auto versioning/deployment ([d643888](https://github.com/TrialAndErrorOrg/parsers/commit/d64388820517b4a584a7e34f7fce93c590ecc5de)) # 0.1.0 (2023-03-05) - ### Bug Fixes -* **frontend:** make 3 extra packages just so webpack doesn't import fs ugh ([bed432a](https://github.com/TrialAndErrorOrg/parsers/commit/bed432acf70a7950d981fff2a5bce4a98a4440ff)) -* **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) - +- **frontend:** make 3 extra packages just so webpack doesn't import fs ugh ([bed432a](https://github.com/TrialAndErrorOrg/parsers/commit/bed432acf70a7950d981fff2a5bce4a98a4440ff)) +- **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) ### Features -* add relationmapping for vfile ([e4662b5](https://github.com/TrialAndErrorOrg/parsers/commit/e4662b5d38337ea06d97763ab32d0fd88ac95bad)) -* added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) -* better unzip lib that's browser compatible ([0646a95](https://github.com/TrialAndErrorOrg/parsers/commit/0646a95d32f7128dad3275b98892305136480bf6)) -* citations from word to latex works ([1582e25](https://github.com/TrialAndErrorOrg/parsers/commit/1582e2553843505e3ddc2355676e0702418bbfdc)) -* figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) -* it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) -* **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) -* **reoff:** parse docx to unist ([7dcdb70](https://github.com/TrialAndErrorOrg/parsers/commit/7dcdb7016a639e8af4eaeb25eaa3ff9927d21952)) -* **reoff:** parse more async ([7d76e79](https://github.com/TrialAndErrorOrg/parsers/commit/7d76e7971401c5e89f742730dda3f4f780e3e093)) -* **reoff:** read file more async ([fed7aa9](https://github.com/TrialAndErrorOrg/parsers/commit/fed7aa97af458404b04d805250ad5bfc348ee52c)) +- add relationmapping for vfile ([e4662b5](https://github.com/TrialAndErrorOrg/parsers/commit/e4662b5d38337ea06d97763ab32d0fd88ac95bad)) +- added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) +- better unzip lib that's browser compatible ([0646a95](https://github.com/TrialAndErrorOrg/parsers/commit/0646a95d32f7128dad3275b98892305136480bf6)) +- citations from word to latex works ([1582e25](https://github.com/TrialAndErrorOrg/parsers/commit/1582e2553843505e3ddc2355676e0702418bbfdc)) +- figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) +- it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) +- **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) +- **reoff:** parse docx to unist ([7dcdb70](https://github.com/TrialAndErrorOrg/parsers/commit/7dcdb7016a639e8af4eaeb25eaa3ff9927d21952)) +- **reoff:** parse more async ([7d76e79](https://github.com/TrialAndErrorOrg/parsers/commit/7d76e7971401c5e89f742730dda3f4f780e3e093)) +- **reoff:** read file more async ([fed7aa9](https://github.com/TrialAndErrorOrg/parsers/commit/fed7aa97af458404b04d805250ad5bfc348ee52c)) diff --git a/libs/reoff/docx-to-vfile/jest.config.js b/libs/reoff/docx-to-vfile/jest.config.js index 07fa66f8..abf1e259 100644 --- a/libs/reoff/docx-to-vfile/jest.config.js +++ b/libs/reoff/docx-to-vfile/jest.config.js @@ -10,13 +10,16 @@ const config = { }, testEnvironment: 'node', transform: { - '^.+.[tj]sx?$': ['@swc/jest', { - swcrc: false, - "module": { - "type": "es6", - "strict": true + '^.+.[tj]sx?$': [ + '@swc/jest', + { + swcrc: false, + module: { + type: 'es6', + strict: true, + }, }, - }], + ], }, transformIgnorePatterns: [], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], diff --git a/libs/reoff/docx-to-vfile/package.json b/libs/reoff/docx-to-vfile/package.json index 52b1a279..2f6fb47b 100755 --- a/libs/reoff/docx-to-vfile/package.json +++ b/libs/reoff/docx-to-vfile/package.json @@ -38,5 +38,9 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "vfile": "^5.3.7", + "unzipit": "^1.4.2" + } } diff --git a/libs/reoff/docx-to-vfile/project.json b/libs/reoff/docx-to-vfile/project.json index b6857974..3ed64f6a 100755 --- a/libs/reoff/docx-to-vfile/project.json +++ b/libs/reoff/docx-to-vfile/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/docx-to-vfile/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/vite:test", diff --git a/libs/reoff/reoff-cite/CHANGELOG.md b/libs/reoff/reoff-cite/CHANGELOG.md index de763ebb..e6f31233 100644 --- a/libs/reoff/reoff-cite/CHANGELOG.md +++ b/libs/reoff/reoff-cite/CHANGELOG.md @@ -6,56 +6,55 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast` updated to version `0.1.4` -* `reoff-parse` updated to version `0.3.0` -* `docx-to-vfile` updated to version `0.8.2` -* `ooxast-util-citations` updated to version `0.2.0` +- `ooxast` updated to version `0.1.4` +- `reoff-parse` updated to version `0.3.0` +- `docx-to-vfile` updated to version `0.8.2` +- `ooxast-util-citations` updated to version `0.2.0` ### Features -* **reoff-cite.ts:** add support for finding citations in footnotes and endnotes in Word documents ([3657304](https://github.com/TrialAndErrorOrg/parsers/commit/365730473056bc954da0376d1871bda5528a8eff)) - +- **reoff-cite.ts:** add support for finding citations in footnotes and endnotes in Word documents ([3657304](https://github.com/TrialAndErrorOrg/parsers/commit/365730473056bc954da0376d1871bda5528a8eff)) ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-cite-0.1.1...reoff-cite-0.1.2) (2023-03-29) ### Dependency Updates -* `ooxast-util-citations` updated to version `0.1.2` +- `ooxast-util-citations` updated to version `0.1.2` ### Bug Fixes -* **reoff-cite:** update deps and slight thingies ([be4bd50](https://github.com/TrialAndErrorOrg/parsers/commit/be4bd5013e99192e9f7e98184020acbcf95d92db)) +- **reoff-cite:** update deps and slight thingies ([be4bd50](https://github.com/TrialAndErrorOrg/parsers/commit/be4bd5013e99192e9f7e98184020acbcf95d92db)) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-cite-0.1.0...reoff-cite-0.1.1) (2023-03-14) ### Dependency Updates -* `ooxast` updated to version `0.1.3` -* `ooxast-util-citations` updated to version `0.1.1` +- `ooxast` updated to version `0.1.3` +- `ooxast-util-citations` updated to version `0.1.1` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `ooxast` updated to version `0.1.2` -* `ooxast-util-citations` updated to version `0.1.0` +- `ooxast` updated to version `0.1.2` +- `ooxast-util-citations` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) -* it... works ([cf52c8d](https://github.com/TrialAndErrorOrg/parsers/commit/cf52c8d4e0e45a1364ad7be39ca535593835c3ff)) -* **ojs:** add more ojs stuff ([3c55a9d](https://github.com/TrialAndErrorOrg/parsers/commit/3c55a9d17cecef513085c55870728e53bee17194)) -* she builds! ([9b49c2d](https://github.com/TrialAndErrorOrg/parsers/commit/9b49c2d7ff401fe32d6d7a99919dd50cfdb4f0a1)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) +- it... works ([cf52c8d](https://github.com/TrialAndErrorOrg/parsers/commit/cf52c8d4e0e45a1364ad7be39ca535593835c3ff)) +- **ojs:** add more ojs stuff ([3c55a9d](https://github.com/TrialAndErrorOrg/parsers/commit/3c55a9d17cecef513085c55870728e53bee17194)) +- she builds! ([9b49c2d](https://github.com/TrialAndErrorOrg/parsers/commit/9b49c2d7ff401fe32d6d7a99919dd50cfdb4f0a1)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/reoff/reoff-cite/package.json b/libs/reoff/reoff-cite/package.json index 1d5c5b66..e33fdadd 100755 --- a/libs/reoff/reoff-cite/package.json +++ b/libs/reoff/reoff-cite/package.json @@ -34,5 +34,14 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "reoff-parse": "*", + "docx-to-vfile": "*", + "ooxast-util-citations": "*", + "vfile": "^5.3.7", + "csl-json": "0.1.0", + "unified": "^10.1.2" + } } diff --git a/libs/reoff/reoff-cite/project.json b/libs/reoff/reoff-cite/project.json index 9f70600f..c173902e 100755 --- a/libs/reoff/reoff-cite/project.json +++ b/libs/reoff/reoff-cite/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-cite/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/reoff/reoff-clean/CHANGELOG.md b/libs/reoff/reoff-clean/CHANGELOG.md index eb06d9af..d017431f 100644 --- a/libs/reoff/reoff-clean/CHANGELOG.md +++ b/libs/reoff/reoff-clean/CHANGELOG.md @@ -6,40 +6,40 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast-util-remove-rsid` updated to version `0.2.1` -* `docx-to-vfile` updated to version `0.8.2` -* `ooxast` updated to version `0.1.4` -* `reoff-parse` updated to version `0.3.0` +- `ooxast-util-remove-rsid` updated to version `0.2.1` +- `docx-to-vfile` updated to version `0.8.2` +- `ooxast` updated to version `0.1.4` +- `reoff-parse` updated to version `0.3.0` ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) -* **reoff-clean:** also process footnotes and endnotes ([81d36d7](https://github.com/TrialAndErrorOrg/parsers/commit/81d36d76c081a6181078e3aa8d7533ef2f2006f9)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) +- **reoff-clean:** also process footnotes and endnotes ([81d36d7](https://github.com/TrialAndErrorOrg/parsers/commit/81d36d76c081a6181078e3aa8d7533ef2f2006f9)) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-clean-0.1.0...reoff-clean-0.1.1) (2023-03-14) ### Dependency Updates -* `ooxast` updated to version `0.1.3` -* `ooxast-util-remove-rsid` updated to version `0.1.2` +- `ooxast` updated to version `0.1.3` +- `ooxast-util-remove-rsid` updated to version `0.1.2` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `ooxast` updated to version `0.1.2` -* `ooxast-util-remove-rsid` updated to version `0.1.1` +- `ooxast` updated to version `0.1.2` +- `ooxast-util-remove-rsid` updated to version `0.1.1` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) -* **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) -* **reoff:** reoff clean plugin ([75b9016](https://github.com/TrialAndErrorOrg/parsers/commit/75b901685f856438750e9e11ac4d62a070f73c2c)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **citations:** improve citation recognition somewhat ([93ae18c](https://github.com/TrialAndErrorOrg/parsers/commit/93ae18c42a4bd3e2072c4fb0ffcb350d4fb9c4d2)) +- **parser:** make the parser contain more metadata ([59c8623](https://github.com/TrialAndErrorOrg/parsers/commit/59c8623885f0330e9c945306e09214b5fb378d5b)) +- **reoff:** reoff clean plugin ([75b9016](https://github.com/TrialAndErrorOrg/parsers/commit/75b901685f856438750e9e11ac4d62a070f73c2c)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/reoff/reoff-clean/package.json b/libs/reoff/reoff-clean/package.json index 6c943488..4c5ae466 100755 --- a/libs/reoff/reoff-clean/package.json +++ b/libs/reoff/reoff-clean/package.json @@ -33,5 +33,13 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast-util-remove-rsid": "*", + "docx-to-vfile": "*", + "ooxast": "*", + "reoff-parse": "*", + "unified": "^10.1.2", + "vfile": "^5.3.7" + } } diff --git a/libs/reoff/reoff-clean/project.json b/libs/reoff/reoff-clean/project.json index 86f7f909..e36a70a2 100755 --- a/libs/reoff/reoff-clean/project.json +++ b/libs/reoff/reoff-clean/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-clean/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/reoff/reoff-compile/package.json b/libs/reoff/reoff-compile/package.json index d353cceb..4da86ff4 100644 --- a/libs/reoff/reoff-compile/package.json +++ b/libs/reoff/reoff-compile/package.json @@ -32,5 +32,12 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "docx-to-vfile": "*", + "@zip.js/zip.js": "^2.6.83", + "unified": "^10.1.2", + "xast-util-to-xml": "^3.0.2" + } } diff --git a/libs/reoff/reoff-compile/project.json b/libs/reoff/reoff-compile/project.json index e9c3bf6f..e0770d32 100644 --- a/libs/reoff/reoff-compile/project.json +++ b/libs/reoff/reoff-compile/project.json @@ -94,10 +94,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-compile/**/*.ts"] - } + "outputs": ["{options.outputFile}"] } }, "tags": [] diff --git a/libs/reoff/reoff-compile/tsconfig.spec.json b/libs/reoff/reoff-compile/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/reoff/reoff-compile/tsconfig.spec.json +++ b/libs/reoff/reoff-compile/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/reoff/reoff-infer-headings/CHANGELOG.md b/libs/reoff/reoff-infer-headings/CHANGELOG.md index 058cab80..34c4a3fd 100644 --- a/libs/reoff/reoff-infer-headings/CHANGELOG.md +++ b/libs/reoff/reoff-infer-headings/CHANGELOG.md @@ -6,9 +6,9 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `reoff-markup-to-style` updated to version `0.0.3` +- `reoff-markup-to-style` updated to version `0.0.3` ### Bug Fixes -* **reoff-infer-headings:** create reoff plugin that's a very thin wrapper around markup-to-style ([d08f3c5](https://github.com/TrialAndErrorOrg/parsers/commit/d08f3c508f6fb6f897f45294c1ab3ab8618299f8)) -* **reoff-:** make them compile ([84c95e4](https://github.com/TrialAndErrorOrg/parsers/commit/84c95e4ced2556b03d3fa61fabebba7439a57029)) +- **reoff-infer-headings:** create reoff plugin that's a very thin wrapper around markup-to-style ([d08f3c5](https://github.com/TrialAndErrorOrg/parsers/commit/d08f3c508f6fb6f897f45294c1ab3ab8618299f8)) +- **reoff-:** make them compile ([84c95e4](https://github.com/TrialAndErrorOrg/parsers/commit/84c95e4ced2556b03d3fa61fabebba7439a57029)) diff --git a/libs/reoff/reoff-infer-headings/package.json b/libs/reoff/reoff-infer-headings/package.json index 65d86642..42656611 100644 --- a/libs/reoff/reoff-infer-headings/package.json +++ b/libs/reoff/reoff-infer-headings/package.json @@ -32,5 +32,8 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "reoff-markup-to-style": "*" + } } diff --git a/libs/reoff/reoff-infer-headings/project.json b/libs/reoff/reoff-infer-headings/project.json index a462aa0d..b02f7787 100644 --- a/libs/reoff/reoff-infer-headings/project.json +++ b/libs/reoff/reoff-infer-headings/project.json @@ -81,10 +81,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-infer-headings/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/reoff/reoff-infer-headings/tsconfig.spec.json b/libs/reoff/reoff-infer-headings/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/reoff/reoff-infer-headings/tsconfig.spec.json +++ b/libs/reoff/reoff-infer-headings/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/reoff/reoff-markup-to-style/CHANGELOG.md b/libs/reoff/reoff-markup-to-style/CHANGELOG.md index 97e220e0..3927d29a 100644 --- a/libs/reoff/reoff-markup-to-style/CHANGELOG.md +++ b/libs/reoff/reoff-markup-to-style/CHANGELOG.md @@ -6,40 +6,41 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast-util-markup-to-style` updated to version `0.2.0` -* `ooxast` updated to version `0.1.4` +- `ooxast-util-markup-to-style` updated to version `0.2.0` +- `ooxast` updated to version `0.1.4` ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* make citations work ([67993d3](https://github.com/TrialAndErrorOrg/parsers/commit/67993d33150e05024be7e8df676e59d4cd9c57b1)) -* make typecheck work sort of ([d6a2eb6](https://github.com/TrialAndErrorOrg/parsers/commit/d6a2eb690a06d376043309f8bea6f418a4ff16ec)) -* **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- make citations work ([67993d3](https://github.com/TrialAndErrorOrg/parsers/commit/67993d33150e05024be7e8df676e59d4cd9c57b1)) +- make typecheck work sort of ([d6a2eb6](https://github.com/TrialAndErrorOrg/parsers/commit/d6a2eb690a06d376043309f8bea6f418a4ff16ec)) +- **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) ## [0.0.4](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-markup-to-style-0.0.3...reoff-markup-to-style-0.0.4) (2023-05-30) ### Dependency Updates -* `ooxast-util-markup-to-style` updated to version `0.1.1` -## [0.0.3](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-markup-to-style-0.0.2...reoff-markup-to-style-0.0.3) (2023-03-29) +- `ooxast-util-markup-to-style` updated to version `0.1.1` +## [0.0.3](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-markup-to-style-0.0.2...reoff-markup-to-style-0.0.3) (2023-03-29) ### Bug Fixes -* **reoff-:** make them compile ([84c95e4](https://github.com/TrialAndErrorOrg/parsers/commit/84c95e4ced2556b03d3fa61fabebba7439a57029)) +- **reoff-:** make them compile ([84c95e4](https://github.com/TrialAndErrorOrg/parsers/commit/84c95e4ced2556b03d3fa61fabebba7439a57029)) ## [0.0.2](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-markup-to-style-0.0.1...reoff-markup-to-style-0.0.2) (2023-03-29) ### Dependency Updates -* `ooxast-util-markup-to-style` updated to version `0.1.0` +- `ooxast-util-markup-to-style` updated to version `0.1.0` + ## 0.0.1 (2023-03-27) ### Dependency Updates -* `ooxast` updated to version `0.1.3` -* `ooxast-util-markup-to-style` updated to version `0.0.2` +- `ooxast` updated to version `0.1.3` +- `ooxast-util-markup-to-style` updated to version `0.0.2` ### Bug Fixes -* **reoff-markup-to-style:** create reoff plugin for inferring styles ([4b24aac](https://github.com/TrialAndErrorOrg/parsers/commit/4b24aac3d139d769fdd4958aa903bb0a18f98abf)) +- **reoff-markup-to-style:** create reoff plugin for inferring styles ([4b24aac](https://github.com/TrialAndErrorOrg/parsers/commit/4b24aac3d139d769fdd4958aa903bb0a18f98abf)) diff --git a/libs/reoff/reoff-markup-to-style/package.json b/libs/reoff/reoff-markup-to-style/package.json index 9c1079d4..63b27983 100644 --- a/libs/reoff/reoff-markup-to-style/package.json +++ b/libs/reoff/reoff-markup-to-style/package.json @@ -33,5 +33,10 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast-util-markup-to-style": "*", + "ooxast": "*", + "unified": "^10.1.2" + } } diff --git a/libs/reoff/reoff-markup-to-style/project.json b/libs/reoff/reoff-markup-to-style/project.json index 06e4babf..48dc67b0 100644 --- a/libs/reoff/reoff-markup-to-style/project.json +++ b/libs/reoff/reoff-markup-to-style/project.json @@ -91,10 +91,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-markup-to-style/**/*.ts"] - } + "outputs": ["{options.outputFile}"] } }, "tags": [] diff --git a/libs/reoff/reoff-markup-to-style/tsconfig.spec.json b/libs/reoff/reoff-markup-to-style/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/reoff/reoff-markup-to-style/tsconfig.spec.json +++ b/libs/reoff/reoff-markup-to-style/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/reoff/reoff-parse-references-browser/package.json b/libs/reoff/reoff-parse-references-browser/package.json index 4fb9e999..81b997ea 100755 --- a/libs/reoff/reoff-parse-references-browser/package.json +++ b/libs/reoff/reoff-parse-references-browser/package.json @@ -32,5 +32,10 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "ooxast-util-parse-bib-browser": "*", + "vfile": "^5.3.7" + } } diff --git a/libs/reoff/reoff-parse-references-browser/project.json b/libs/reoff/reoff-parse-references-browser/project.json index 7c5da526..37c72b24 100755 --- a/libs/reoff/reoff-parse-references-browser/project.json +++ b/libs/reoff/reoff-parse-references-browser/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-parse-references-browser/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/reoff/reoff-parse-references/CHANGELOG.md b/libs/reoff/reoff-parse-references/CHANGELOG.md index 7a658c24..8d0a52c6 100644 --- a/libs/reoff/reoff-parse-references/CHANGELOG.md +++ b/libs/reoff/reoff-parse-references/CHANGELOG.md @@ -6,41 +6,42 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast` updated to version `0.1.4` -* `ooxast-util-parse-bib` updated to version `0.1.3` +- `ooxast` updated to version `0.1.4` +- `ooxast-util-parse-bib` updated to version `0.1.3` ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-parse-references-0.1.1...reoff-parse-references-0.1.2) (2023-03-29) ### Dependency Updates -* `ooxast-util-parse-bib` updated to version `0.1.2` +- `ooxast-util-parse-bib` updated to version `0.1.2` + ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-parse-references-0.1.0...reoff-parse-references-0.1.1) (2023-03-14) ### Dependency Updates -* `ooxast` updated to version `0.1.3` -* `ooxast-util-parse-bib` updated to version `0.1.1` +- `ooxast` updated to version `0.1.3` +- `ooxast-util-parse-bib` updated to version `0.1.1` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `ooxast` updated to version `0.1.2` -* `ooxast-util-parse-bib` updated to version `0.1.0` +- `ooxast` updated to version `0.1.2` +- `ooxast-util-parse-bib` updated to version `0.1.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) -* it... works ([cf52c8d](https://github.com/TrialAndErrorOrg/parsers/commit/cf52c8d4e0e45a1364ad7be39ca535593835c3ff)) -* **ojs:** add more ojs stuff ([3c55a9d](https://github.com/TrialAndErrorOrg/parsers/commit/3c55a9d17cecef513085c55870728e53bee17194)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- fix names ([a4f65fc](https://github.com/TrialAndErrorOrg/parsers/commit/a4f65fcb2fde9dd23750bc9ccddfb0e1ab11548f)) +- it... works ([cf52c8d](https://github.com/TrialAndErrorOrg/parsers/commit/cf52c8d4e0e45a1364ad7be39ca535593835c3ff)) +- **ojs:** add more ojs stuff ([3c55a9d](https://github.com/TrialAndErrorOrg/parsers/commit/3c55a9d17cecef513085c55870728e53bee17194)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/reoff/reoff-parse-references/package.json b/libs/reoff/reoff-parse-references/package.json index d66253f1..2577ac63 100755 --- a/libs/reoff/reoff-parse-references/package.json +++ b/libs/reoff/reoff-parse-references/package.json @@ -32,5 +32,10 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast": "*", + "ooxast-util-parse-bib": "*", + "vfile": "^5.3.7" + } } diff --git a/libs/reoff/reoff-parse-references/project.json b/libs/reoff/reoff-parse-references/project.json index b1b9593c..ab221544 100755 --- a/libs/reoff/reoff-parse-references/project.json +++ b/libs/reoff/reoff-parse-references/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-parse-references/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/reoff/reoff-parse/CHANGELOG.md b/libs/reoff/reoff-parse/CHANGELOG.md index 057b9209..5d96880a 100644 --- a/libs/reoff/reoff-parse/CHANGELOG.md +++ b/libs/reoff/reoff-parse/CHANGELOG.md @@ -6,43 +6,45 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `docx-to-vfile` updated to version `0.8.2` +- `docx-to-vfile` updated to version `0.8.2` ### Features -* **reoff-parse:** handle foot and endnote relations ([c79cfb4](https://github.com/TrialAndErrorOrg/parsers/commit/c79cfb4fa7e68c27c1b478b4b2402f85db4a4995)) - +- **reoff-parse:** handle foot and endnote relations ([c79cfb4](https://github.com/TrialAndErrorOrg/parsers/commit/c79cfb4fa7e68c27c1b478b4b2402f85db4a4995)) ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* make typecheck work sort of ([d6a2eb6](https://github.com/TrialAndErrorOrg/parsers/commit/d6a2eb690a06d376043309f8bea6f418a4ff16ec)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- make typecheck work sort of ([d6a2eb6](https://github.com/TrialAndErrorOrg/parsers/commit/d6a2eb690a06d376043309f8bea6f418a4ff16ec)) ## [0.3.0](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-parse-0.2.7...reoff-parse-0.3.0) (2023-05-30) ### Dependency Updates -* `docx-to-vfile` updated to version `0.7.0` +- `docx-to-vfile` updated to version `0.7.0` ### Features -* **reoff-parse:** handle foot and endnote relations ([c79cfb4](https://github.com/TrialAndErrorOrg/parsers/commit/c79cfb4fa7e68c27c1b478b4b2402f85db4a4995)) +- **reoff-parse:** handle foot and endnote relations ([c79cfb4](https://github.com/TrialAndErrorOrg/parsers/commit/c79cfb4fa7e68c27c1b478b4b2402f85db4a4995)) ## [0.2.7](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-parse-0.2.6...reoff-parse-0.2.7) (2023-03-29) ### Dependency Updates -* `docx-to-vfile` updated to version `0.6.1` +- `docx-to-vfile` updated to version `0.6.1` + ## [0.2.6](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-parse-0.2.5...reoff-parse-0.2.6) (2023-03-27) ### Dependency Updates -* `docx-to-vfile` updated to version `0.6.0` +- `docx-to-vfile` updated to version `0.6.0` + ## [0.2.5](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-parse-0.2.4...reoff-parse-0.2.5) (2023-03-14) ### Dependency Updates -* `docx-to-vfile` updated to version `0.5.3` +- `docx-to-vfile` updated to version `0.5.3` + ## [0.2.4](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-parse-0.2.3...reoff-parse-0.2.4) (2023-03-13) ## [0.2.3](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-parse-0.2.2...reoff-parse-0.2.3) (2023-03-13) @@ -55,44 +57,42 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `docx-to-vfile` updated to version `0.5.1` +- `docx-to-vfile` updated to version `0.5.1` + ## [0.2.0](https://github.com/TrialAndErrorOrg/parsers/compare/reoff-parse-0.1.0...reoff-parse-0.2.0) (2023-03-09) ### Dependency Updates -* `docx-to-vfile` updated to version `0.5.0` +- `docx-to-vfile` updated to version `0.5.0` ### Features -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) - +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) ### Bug Fixes -* correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- correct preset ([c2079ba](https://github.com/TrialAndErrorOrg/parsers/commit/c2079ba3a0121a5c3a2b9017a3d53214953b2c98)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) # 0.1.0 (2023-03-06) - ### Bug Fixes -* fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) -* it builds, oh my god ([6d8087e](https://github.com/TrialAndErrorOrg/parsers/commit/6d8087ed6b54aecbe02060c347959f55bd9535bb)) -* **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) - +- fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) +- it builds, oh my god ([6d8087e](https://github.com/TrialAndErrorOrg/parsers/commit/6d8087ed6b54aecbe02060c347959f55bd9535bb)) +- **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) ### Features -* added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) -* citations from word to latex works ([1582e25](https://github.com/TrialAndErrorOrg/parsers/commit/1582e2553843505e3ddc2355676e0702418bbfdc)) -* figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) -* it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) -* **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) -* **ooxast:** metadata types ([2cb81c8](https://github.com/TrialAndErrorOrg/parsers/commit/2cb81c8a4ce31a1078a955a974f97a697a5ebe33)) -* **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) -* **reoff-parse:** change the way this works basically ([c382996](https://github.com/TrialAndErrorOrg/parsers/commit/c3829966800081cdbe4f45b828413ef422c37f1f)) -* **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) -* **reoff:** parse docx to unist ([7dcdb70](https://github.com/TrialAndErrorOrg/parsers/commit/7dcdb7016a639e8af4eaeb25eaa3ff9927d21952)) -* **reoff:** read file more async ([fed7aa9](https://github.com/TrialAndErrorOrg/parsers/commit/fed7aa97af458404b04d805250ad5bfc348ee52c)) -* **reoff:** utiltiy to clean ooxast tree ([0827207](https://github.com/TrialAndErrorOrg/parsers/commit/082720772ffe4caff8d812962c2f42d4c71b5747)) +- added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) +- citations from word to latex works ([1582e25](https://github.com/TrialAndErrorOrg/parsers/commit/1582e2553843505e3ddc2355676e0702418bbfdc)) +- figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) +- it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) +- **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) +- **ooxast:** metadata types ([2cb81c8](https://github.com/TrialAndErrorOrg/parsers/commit/2cb81c8a4ce31a1078a955a974f97a697a5ebe33)) +- **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) +- **reoff-parse:** change the way this works basically ([c382996](https://github.com/TrialAndErrorOrg/parsers/commit/c3829966800081cdbe4f45b828413ef422c37f1f)) +- **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) +- **reoff:** parse docx to unist ([7dcdb70](https://github.com/TrialAndErrorOrg/parsers/commit/7dcdb7016a639e8af4eaeb25eaa3ff9927d21952)) +- **reoff:** read file more async ([fed7aa9](https://github.com/TrialAndErrorOrg/parsers/commit/fed7aa97af458404b04d805250ad5bfc348ee52c)) +- **reoff:** utiltiy to clean ooxast tree ([0827207](https://github.com/TrialAndErrorOrg/parsers/commit/082720772ffe4caff8d812962c2f42d4c71b5747)) diff --git a/libs/reoff/reoff-parse/jest.config.js b/libs/reoff/reoff-parse/jest.config.js index 1b64970b..eb6b4744 100644 --- a/libs/reoff/reoff-parse/jest.config.js +++ b/libs/reoff/reoff-parse/jest.config.js @@ -10,9 +10,12 @@ const config = { }, testEnvironment: 'node', transform: { - '^.+.[tj]sx?$': ['@swc/jest', { - swcrc: false, - }], + '^.+.[tj]sx?$': [ + '@swc/jest', + { + swcrc: false, + }, + ], }, transformIgnorePatterns: [], moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], diff --git a/libs/reoff/reoff-parse/package.json b/libs/reoff/reoff-parse/package.json index cd512b2d..998a0d37 100755 --- a/libs/reoff/reoff-parse/package.json +++ b/libs/reoff/reoff-parse/package.json @@ -26,5 +26,13 @@ } }, "main": "./index.js", - "types": "./index.d.ts" + "types": "./index.d.ts", + "dependencies": { + "docx-to-vfile": "*", + "xast-util-from-xml": "^3.0.0", + "unified": "^10.1.2", + "unist-util-filter": "^4.0.1", + "vfile": "^5.3.7", + "vfile-message": "^3.1.4" + } } diff --git a/libs/reoff/reoff-parse/project.json b/libs/reoff/reoff-parse/project.json index 981f1e0a..782fcdf5 100755 --- a/libs/reoff/reoff-parse/project.json +++ b/libs/reoff/reoff-parse/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-parse/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/reoff/reoff-parse/src/test/ooxasttree.json b/libs/reoff/reoff-parse/src/test/ooxasttree.json index 1d5d01bb..c7f9d9d0 100644 --- a/libs/reoff/reoff-parse/src/test/ooxasttree.json +++ b/libs/reoff/reoff-parse/src/test/ooxasttree.json @@ -375990,4 +375990,4 @@ } ], "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/reoff/reoff-parse/src/test/testrelations.json b/libs/reoff/reoff-parse/src/test/testrelations.json index ce7f0111..10f76149 100644 --- a/libs/reoff/reoff-parse/src/test/testrelations.json +++ b/libs/reoff/reoff-parse/src/test/testrelations.json @@ -932454,4 +932454,4 @@ } }, "source": "word/document.xml" -} \ No newline at end of file +} diff --git a/libs/reoff/reoff-rejour/CHANGELOG.md b/libs/reoff/reoff-rejour/CHANGELOG.md index e7bd350c..f51ae0c2 100644 --- a/libs/reoff/reoff-rejour/CHANGELOG.md +++ b/libs/reoff/reoff-rejour/CHANGELOG.md @@ -6,24 +6,23 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast-util-to-jast` updated to version `0.1.0` -* `jast-types` updated to version `0.1.2` -* `ooxast` updated to version `0.1.2` +- `ooxast-util-to-jast` updated to version `0.1.0` +- `jast-types` updated to version `0.1.2` +- `ooxast` updated to version `0.1.2` ### Features -* added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) -* it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) -* **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) -* **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) - +- added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- figure parsing in reoff ([fe2b9f8](https://github.com/TrialAndErrorOrg/parsers/commit/fe2b9f8e9eb1fb2421e3272dcc60fe2b871f2392)) +- it working ([53f8f03](https://github.com/TrialAndErrorOrg/parsers/commit/53f8f038f89a6e64a64600b3e6cb8deb1717cda7)) +- **pdf:** pdf compilation baybee ([f3cf107](https://github.com/TrialAndErrorOrg/parsers/commit/f3cf107193e3e015da3dc950736aa38e5803b5cd)) +- **reoff:** add basic office parsing infrastructure ([3adfb9d](https://github.com/TrialAndErrorOrg/parsers/commit/3adfb9d1b44fe4e6f79a41ae5269c43ddbdfd5c2)) ### Bug Fixes -* correct typings and remove ts-expect-error ([6c26b55](https://github.com/TrialAndErrorOrg/parsers/commit/6c26b551e2f328065575854cf7fd77cef0c63c8e)) -* fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* **reoff-rejour:** update to new format ([a184684](https://github.com/TrialAndErrorOrg/parsers/commit/a184684ec9dc4d6b3810e54a817131861fdd311d)) +- correct typings and remove ts-expect-error ([6c26b55](https://github.com/TrialAndErrorOrg/parsers/commit/6c26b551e2f328065575854cf7fd77cef0c63c8e)) +- fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **reoff-rejour:** update to new format ([a184684](https://github.com/TrialAndErrorOrg/parsers/commit/a184684ec9dc4d6b3810e54a817131861fdd311d)) diff --git a/libs/reoff/reoff-rejour/package.json b/libs/reoff/reoff-rejour/package.json index 45b5f4f4..95aa439d 100755 --- a/libs/reoff/reoff-rejour/package.json +++ b/libs/reoff/reoff-rejour/package.json @@ -37,5 +37,11 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast-util-to-jast": "*", + "jast-types": "*", + "ooxast": "*", + "unified": "^10.1.2" + } } diff --git a/libs/reoff/reoff-rejour/project.json b/libs/reoff/reoff-rejour/project.json index 709024de..f9538728 100755 --- a/libs/reoff/reoff-rejour/project.json +++ b/libs/reoff/reoff-rejour/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-rejour/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/reoff/reoff-remark/CHANGELOG.md b/libs/reoff/reoff-remark/CHANGELOG.md index 020924af..6a7af029 100644 --- a/libs/reoff/reoff-remark/CHANGELOG.md +++ b/libs/reoff/reoff-remark/CHANGELOG.md @@ -6,17 +6,16 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast-util-to-mdast` updated to version `0.1.0` -* `ooxast` updated to version `0.1.3` +- `ooxast-util-to-mdast` updated to version `0.1.0` +- `ooxast` updated to version `0.1.3` ### Features -* **reoff-remark:** add reoff-remark ([56c96fe](https://github.com/TrialAndErrorOrg/parsers/commit/56c96fea61af92eac769096b9e33e0a69a596f58)) - +- **reoff-remark:** add reoff-remark ([56c96fe](https://github.com/TrialAndErrorOrg/parsers/commit/56c96fea61af92eac769096b9e33e0a69a596f58)) ### Bug Fixes -* **reoff-remark:** export correct options ([8b0c205](https://github.com/TrialAndErrorOrg/parsers/commit/8b0c2055ae6dcaa41c09c7d53624379f69ca5e52)) +- **reoff-remark:** export correct options ([8b0c205](https://github.com/TrialAndErrorOrg/parsers/commit/8b0c2055ae6dcaa41c09c7d53624379f69ca5e52)) ## 0.1.0 (2023-03-09) diff --git a/libs/reoff/reoff-remark/package.json b/libs/reoff/reoff-remark/package.json index a9f5be20..395f0b01 100644 --- a/libs/reoff/reoff-remark/package.json +++ b/libs/reoff/reoff-remark/package.json @@ -35,5 +35,10 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast-util-to-mdast": "*", + "ooxast": "*", + "unified": "^10.1.2" + } } diff --git a/libs/reoff/reoff-remark/project.json b/libs/reoff/reoff-remark/project.json index 7037c57d..cf4fc05d 100644 --- a/libs/reoff/reoff-remark/project.json +++ b/libs/reoff/reoff-remark/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-remark/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/reoff/reoff-remark/tsconfig.spec.json b/libs/reoff/reoff-remark/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/reoff/reoff-remark/tsconfig.spec.json +++ b/libs/reoff/reoff-remark/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/reoff/reoff-unified-latex/CHANGELOG.md b/libs/reoff/reoff-unified-latex/CHANGELOG.md index 1dccf913..a7b3133f 100644 --- a/libs/reoff/reoff-unified-latex/CHANGELOG.md +++ b/libs/reoff/reoff-unified-latex/CHANGELOG.md @@ -6,26 +6,25 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `ooxast-util-to-unified-latex` updated to version `0.2.0` -* `ooxast` updated to version `0.1.3` +- `ooxast-util-to-unified-latex` updated to version `0.2.0` +- `ooxast` updated to version `0.1.3` ### Bug Fixes -* **reoff-unified-latex:** set the types correctly ([4178515](https://github.com/TrialAndErrorOrg/parsers/commit/417851598ddcc2b51292874328a26d3caf98ad2b)) +- **reoff-unified-latex:** set the types correctly ([4178515](https://github.com/TrialAndErrorOrg/parsers/commit/417851598ddcc2b51292874328a26d3caf98ad2b)) ## 0.1.0 (2023-03-09) ### Dependency Updates -* `ooxast-util-to-unified-latex` updated to version `0.1.0` -* `ooxast` updated to version `0.1.2` +- `ooxast-util-to-unified-latex` updated to version `0.1.0` +- `ooxast` updated to version `0.1.2` ### Features -* **docs:** update docs ([4e5c927](https://github.com/TrialAndErrorOrg/parsers/commit/4e5c927d745469aa1e1cc584d9d218bc88f87e4f)) -* **reoff-unified-latex:** add reoff-unified-latex converter ([71d53a9](https://github.com/TrialAndErrorOrg/parsers/commit/71d53a9984b5696db8bd92493e56fef7976567f1)) - +- **docs:** update docs ([4e5c927](https://github.com/TrialAndErrorOrg/parsers/commit/4e5c927d745469aa1e1cc584d9d218bc88f87e4f)) +- **reoff-unified-latex:** add reoff-unified-latex converter ([71d53a9](https://github.com/TrialAndErrorOrg/parsers/commit/71d53a9984b5696db8bd92493e56fef7976567f1)) ### Bug Fixes -* **reoff-unified-latex:** pass vfile to converter ([a87284b](https://github.com/TrialAndErrorOrg/parsers/commit/a87284bf345f4f0ad40eaf351ee86a3a47d8c98e)) +- **reoff-unified-latex:** pass vfile to converter ([a87284b](https://github.com/TrialAndErrorOrg/parsers/commit/a87284bf345f4f0ad40eaf351ee86a3a47d8c98e)) diff --git a/libs/reoff/reoff-unified-latex/package.json b/libs/reoff/reoff-unified-latex/package.json index bd9c8042..08fab4e1 100644 --- a/libs/reoff/reoff-unified-latex/package.json +++ b/libs/reoff/reoff-unified-latex/package.json @@ -35,5 +35,11 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "ooxast-util-to-unified-latex": "*", + "ooxast": "*", + "unified": "^10.1.2", + "@unified-latex/unified-latex-types": "^1.3.1" + } } diff --git a/libs/reoff/reoff-unified-latex/project.json b/libs/reoff/reoff-unified-latex/project.json index ab909486..30e95248 100644 --- a/libs/reoff/reoff-unified-latex/project.json +++ b/libs/reoff/reoff-unified-latex/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/reoff/reoff-unified-latex/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/reoff/reoff-unified-latex/tsconfig.spec.json b/libs/reoff/reoff-unified-latex/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/reoff/reoff-unified-latex/tsconfig.spec.json +++ b/libs/reoff/reoff-unified-latex/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/texast/texast-util-add-preamble/package.json b/libs/texast/texast-util-add-preamble/package.json index 85290f27..02d3f4fb 100755 --- a/libs/texast/texast-util-add-preamble/package.json +++ b/libs/texast/texast-util-add-preamble/package.json @@ -35,5 +35,9 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "texast": "*", + "unist-util-visit": "^4.1.2" + } } diff --git a/libs/texast/texast-util-add-preamble/project.json b/libs/texast/texast-util-add-preamble/project.json index f8441404..06d17bac 100755 --- a/libs/texast/texast-util-add-preamble/project.json +++ b/libs/texast/texast-util-add-preamble/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/texast/texast-util-add-preamble/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/texast/texast-util-add-preamble/src/lib/texast-util-add-preamble.ts b/libs/texast/texast-util-add-preamble/src/lib/texast-util-add-preamble.ts index 4069d85a..a5aa99c3 100755 --- a/libs/texast/texast-util-add-preamble/src/lib/texast-util-add-preamble.ts +++ b/libs/texast/texast-util-add-preamble/src/lib/texast-util-add-preamble.ts @@ -17,7 +17,7 @@ export function addPreamble(tree: Root, commands: PreambleCommand[]) { preambleCommandToCommand(c), { type: 'text', value: '\n' } as any, ]), - ] + ], ) }) @@ -37,7 +37,7 @@ function preambleCommandToCommand(precom: PreambleCommand): Command { ? ({ type: 'text', value: arg } as Text) : preambleCommandToCommand(arg), ], - } as CommandArg) + } as CommandArg), ) : [] const args: CommandArg[] = precom.args?.length @@ -50,7 +50,7 @@ function preambleCommandToCommand(precom: PreambleCommand): Command { ? ({ type: 'text', value: arg } as Text) : preambleCommandToCommand(arg), ], - } as CommandArg) + } as CommandArg), ) : [] diff --git a/libs/texast/texast-util-to-latex/package.json b/libs/texast/texast-util-to-latex/package.json index 35663a4d..71f0375d 100755 --- a/libs/texast/texast-util-to-latex/package.json +++ b/libs/texast/texast-util-to-latex/package.json @@ -3,7 +3,7 @@ "version": "0.0.1", "dependencies": { "escape-latex": "^1.2.0", - "zwitch": "^2.0.2" + "texast": "*" }, "license": "GPL-3.0-or-later", "repository": "https://github.com/TrialAndErrorOrg/parsers", diff --git a/libs/texast/texast-util-to-latex/project.json b/libs/texast/texast-util-to-latex/project.json index fff49494..4dfc3faa 100755 --- a/libs/texast/texast-util-to-latex/project.json +++ b/libs/texast/texast-util-to-latex/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/texast/texast-util-to-latex/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/texast/texast-util-to-latex/src/lib/types.ts b/libs/texast/texast-util-to-latex/src/lib/types.ts index 2c0512ab..16f5fc63 100755 --- a/libs/texast/texast-util-to-latex/src/lib/types.ts +++ b/libs/texast/texast-util-to-latex/src/lib/types.ts @@ -42,7 +42,7 @@ export type Handle = ( node: any, parent: Parent | null | undefined, context: Context, - safeOptions: SafeOptions + safeOptions: SafeOptions, ) => string export type Handlers = Record @@ -51,7 +51,7 @@ export type Join = ( left: Node, right: Node, parent: Parent, - context: Context + context: Context, ) => boolean | null | void | number export interface Unsafe { diff --git a/libs/texast/texast/package.json b/libs/texast/texast/package.json index e5cb143b..2cd52de2 100755 --- a/libs/texast/texast/package.json +++ b/libs/texast/texast/package.json @@ -1,10 +1,7 @@ { "name": "texast", "version": "0.0.1", - "dependencies": { - "@types/unist": "^2.0.6", - "latex-utensils": "^4.1.0" - }, + "dependencies": {}, "license": "GPL-3.0-or-later", "repository": "https://github.com/TrialAndErrorOrg/parsers", "author": "Thomas F. K. Jorna ", diff --git a/libs/texast/texast/project.json b/libs/texast/texast/project.json index 41859e66..f8c63aca 100755 --- a/libs/texast/texast/project.json +++ b/libs/texast/texast/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/texast/texast/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/texast/texast/src/lib/texast.ts b/libs/texast/texast/src/lib/texast.ts index 4d6e0c13..03247e73 100755 --- a/libs/texast/texast/src/lib/texast.ts +++ b/libs/texast/texast/src/lib/texast.ts @@ -1,8 +1,4 @@ -import { - Node as UnistNode, - Literal as UnistLiteral, - Parent as UnistParent, -} from 'unist' +import { Node as UnistNode, Literal as UnistLiteral, Parent as UnistParent } from 'unist' export function isKnownNode(node: UnistNode): node is TexastContent { return [ @@ -73,9 +69,7 @@ export type EnvironmentContent = TopLevelDocumentContent export type CommandContent = Command | Text | Comment export type ParagraphContent = Text | InlineMath | Command | Comment -export function isParagraphContent( - content: TexastContent -): content is ParagraphContent { +export function isParagraphContent(content: TexastContent): content is ParagraphContent { return ['text', 'inlineMath', 'command', 'comment'].includes(content.type) } @@ -106,8 +100,7 @@ export interface Parent extends UnistParent { children: TexastContent[] } -export interface Group - extends Parent { +export interface Group extends Parent { type: Pick extends string ? Pick : string children: Child[] } @@ -126,12 +119,10 @@ export const isCommandArg = (node: Root | TexastContent): node is CommandArg => export interface CommandArgOpt extends CommandArg { optional: true } -export const isOptionalCommandArg = ( - node: TexastContent -): node is CommandArgOpt => isCommandArg(node) && !!node.optional +export const isOptionalCommandArg = (node: TexastContent): node is CommandArgOpt => + isCommandArg(node) && !!node.optional -export interface Environment - extends Parent { +export interface Environment extends Parent { type: 'environment' name: string children: Array diff --git a/libs/texast/texast/tsconfig.lib.json b/libs/texast/texast/tsconfig.lib.json index 57f14e3c..47f85f3a 100755 --- a/libs/texast/texast/tsconfig.lib.json +++ b/libs/texast/texast/tsconfig.lib.json @@ -5,11 +5,6 @@ "declaration": true, "types": ["node"] }, - "exclude": [ - "**/*.spec.ts", - "**/*.test.ts", - "**/utensil-types.ts", - "jest.config.ts" - ], + "exclude": ["**/*.spec.ts", "**/*.test.ts", "**/utensil-types.ts", "jest.config.ts"], "include": ["**/*.ts"] } diff --git a/libs/unified-latex/unified-latex-stringify/CHANGELOG.md b/libs/unified-latex/unified-latex-stringify/CHANGELOG.md index 2d9921a5..4da33b45 100644 --- a/libs/unified-latex/unified-latex-stringify/CHANGELOG.md +++ b/libs/unified-latex/unified-latex-stringify/CHANGELOG.md @@ -4,40 +4,35 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.1.4](https://github.com/TrialAndErrorOrg/parsers/compare/unified-latex-stringify-0.1.3...unified-latex-stringify-0.1.4) (2023-09-21) - ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* stupid package.json issue ([e27ee3e](https://github.com/TrialAndErrorOrg/parsers/commit/e27ee3ed91619e8adb0de6ed96af99da0ec79198)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- stupid package.json issue ([e27ee3e](https://github.com/TrialAndErrorOrg/parsers/commit/e27ee3ed91619e8adb0de6ed96af99da0ec79198)) ## [0.1.3](https://github.com/TrialAndErrorOrg/parsers/compare/unified-latex-stringify-0.1.2...unified-latex-stringify-0.1.3) (2023-05-30) - ### Bug Fixes -* try to fix unified latex but no work ([5336c78](https://github.com/TrialAndErrorOrg/parsers/commit/5336c78bbdd5495df35ee8cef050aefb55311bd5)) +- try to fix unified latex but no work ([5336c78](https://github.com/TrialAndErrorOrg/parsers/commit/5336c78bbdd5495df35ee8cef050aefb55311bd5)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/unified-latex-stringify-0.1.1...unified-latex-stringify-0.1.2) (2023-03-29) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/unified-latex-stringify-0.1.0...unified-latex-stringify-0.1.1) (2023-03-09) - ### Bug Fixes -* **jast-util-to-csl:** remove slow visit dependency ([936345f](https://github.com/TrialAndErrorOrg/parsers/commit/936345f4baf354bc676d9c005378720699b53eb9)) -* **unified-latex-stringify:** change to correct name ([d490b56](https://github.com/TrialAndErrorOrg/parsers/commit/d490b56f58c1dad44390895d44bd9c008ca8aded)) +- **jast-util-to-csl:** remove slow visit dependency ([936345f](https://github.com/TrialAndErrorOrg/parsers/commit/936345f4baf354bc676d9c005378720699b53eb9)) +- **unified-latex-stringify:** change to correct name ([d490b56](https://github.com/TrialAndErrorOrg/parsers/commit/d490b56f58c1dad44390895d44bd9c008ca8aded)) ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/unified-latex-stringify-0.1.0...unified-latex-stringify-0.1.1) (2023-03-09) - ### Bug Fixes -* **unified-latex-stringify:** change to correct name ([d490b56](https://github.com/TrialAndErrorOrg/parsers/commit/d490b56f58c1dad44390895d44bd9c008ca8aded)) +- **unified-latex-stringify:** change to correct name ([d490b56](https://github.com/TrialAndErrorOrg/parsers/commit/d490b56f58c1dad44390895d44bd9c008ca8aded)) ## 0.1.0 (2023-03-09) - ### Features -* **docs:** update docs ([4e5c927](https://github.com/TrialAndErrorOrg/parsers/commit/4e5c927d745469aa1e1cc584d9d218bc88f87e4f)) -* **unified-latex-stringify:** create unified latex stringify ([fd7e969](https://github.com/TrialAndErrorOrg/parsers/commit/fd7e9697c19e5c040d78fa53d339f3672bdb5a79)) +- **docs:** update docs ([4e5c927](https://github.com/TrialAndErrorOrg/parsers/commit/4e5c927d745469aa1e1cc584d9d218bc88f87e4f)) +- **unified-latex-stringify:** create unified latex stringify ([fd7e969](https://github.com/TrialAndErrorOrg/parsers/commit/fd7e9697c19e5c040d78fa53d339f3672bdb5a79)) diff --git a/libs/unified-latex/unified-latex-stringify/tsconfig.spec.json b/libs/unified-latex/unified-latex-stringify/tsconfig.spec.json index 8d420258..bc97a7b5 100644 --- a/libs/unified-latex/unified-latex-stringify/tsconfig.spec.json +++ b/libs/unified-latex/unified-latex-stringify/tsconfig.spec.json @@ -13,6 +13,6 @@ "**/*.spec.js", "**/*.test.jsx", "**/*.spec.jsx", - "**/*.d.ts", + "**/*.d.ts" ] } diff --git a/libs/utils/ojs-to-preamble/project.json b/libs/utils/ojs-to-preamble/project.json index 6a2352e5..442f7ccd 100755 --- a/libs/utils/ojs-to-preamble/project.json +++ b/libs/utils/ojs-to-preamble/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/utils/ojs-to-preamble/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/utils/readme/package.json b/libs/utils/readme/package.json index 5c3e84eb..ae1c16a9 100644 --- a/libs/utils/readme/package.json +++ b/libs/utils/readme/package.json @@ -3,5 +3,16 @@ "version": "0.0.1", "main": "src/index.js", "generators": "./generators.json", - "executors": "./executors.json" + "executors": "./executors.json", + "dependencies": { + "@nx/devkit": "16.8.1", + "remark": "^14.0.2", + "remark-license": "^6.1.0", + "remark-toc": "^8.0.1", + "unist-util-visit": "^4.1.2", + "mdast-util-to-string": "^3.2.0", + "mdast-util-from-markdown": "^1.3.1", + "remark-gfm": "^3.0.1", + "remark-usage": "^10.0.1" + } } diff --git a/libs/xast/xast-util-has-attribute/CHANGELOG.md b/libs/xast/xast-util-has-attribute/CHANGELOG.md index 2f521841..adfde6ab 100644 --- a/libs/xast/xast-util-has-attribute/CHANGELOG.md +++ b/libs/xast/xast-util-has-attribute/CHANGELOG.md @@ -4,17 +4,15 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.1.6](https://github.com/TrialAndErrorOrg/parsers/compare/xast-util-has-attribute-0.1.5...xast-util-has-attribute-0.1.6) (2023-09-21) - ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) ## [0.1.5](https://github.com/TrialAndErrorOrg/parsers/compare/xast-util-has-attribute-0.1.4...xast-util-has-attribute-0.1.5) (2023-07-18) - ### Bug Fixes -* **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) +- **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) ## [0.1.4](https://github.com/TrialAndErrorOrg/parsers/compare/xast-util-has-attribute-0.1.3...xast-util-has-attribute-0.1.4) (2023-03-14) @@ -26,16 +24,14 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## 0.1.0 (2023-03-09) - ### Features -* added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) - +- added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) ### Bug Fixes -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) diff --git a/libs/xast/xast-util-has-attribute/project.json b/libs/xast/xast-util-has-attribute/project.json index 44b9202b..20454395 100755 --- a/libs/xast/xast-util-has-attribute/project.json +++ b/libs/xast/xast-util-has-attribute/project.json @@ -41,10 +41,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/xast/xast-util-has-attribute/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/xast/xast-util-is-element/CHANGELOG.md b/libs/xast/xast-util-is-element/CHANGELOG.md index 8e1d2cd7..46182968 100644 --- a/libs/xast/xast-util-is-element/CHANGELOG.md +++ b/libs/xast/xast-util-is-element/CHANGELOG.md @@ -4,19 +4,17 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## [0.1.5](https://github.com/TrialAndErrorOrg/parsers/compare/xast-util-is-element-0.1.4...xast-util-is-element-0.1.5) (2023-09-21) - ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* make citations work ([67993d3](https://github.com/TrialAndErrorOrg/parsers/commit/67993d33150e05024be7e8df676e59d4cd9c57b1)) -* something xast ([576964c](https://github.com/TrialAndErrorOrg/parsers/commit/576964c7f1cfb0d0ad3741fb4fb0d17d063d69a3)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- make citations work ([67993d3](https://github.com/TrialAndErrorOrg/parsers/commit/67993d33150e05024be7e8df676e59d4cd9c57b1)) +- something xast ([576964c](https://github.com/TrialAndErrorOrg/parsers/commit/576964c7f1cfb0d0ad3741fb4fb0d17d063d69a3)) ## [0.1.5](https://github.com/TrialAndErrorOrg/parsers/compare/xast-util-is-element-0.1.4...xast-util-is-element-0.1.5) (2023-07-18) - ### Bug Fixes -* make citations work ([67993d3](https://github.com/TrialAndErrorOrg/parsers/commit/67993d33150e05024be7e8df676e59d4cd9c57b1)) +- make citations work ([67993d3](https://github.com/TrialAndErrorOrg/parsers/commit/67993d33150e05024be7e8df676e59d4cd9c57b1)) ## [0.1.4](https://github.com/TrialAndErrorOrg/parsers/compare/xast-util-is-element-0.1.3...xast-util-is-element-0.1.4) (2023-03-14) @@ -30,38 +28,34 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ## 0.1.0 (2023-03-09) - ### Features -* added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) -* **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) - +- added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) +- **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) ### Bug Fixes -* change the name of test.ts so it gets picked up ([9374957](https://github.com/TrialAndErrorOrg/parsers/commit/93749570b8306e0b7f5ea75648fab5a0f254cd85)) -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) +- change the name of test.ts so it gets picked up ([9374957](https://github.com/TrialAndErrorOrg/parsers/commit/93749570b8306e0b7f5ea75648fab5a0f254cd85)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) ## 0.1.0 (2023-03-09) - ### Features -* added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) -* **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) - +- added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- **ooxast:** add actual ooxml types ([ad3d947](https://github.com/TrialAndErrorOrg/parsers/commit/ad3d9473fac066d0125316360ce759e3b57e4202)) +- **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) ### Bug Fixes -* change the name of test.ts so it gets picked up ([9374957](https://github.com/TrialAndErrorOrg/parsers/commit/93749570b8306e0b7f5ea75648fab5a0f254cd85)) -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) +- change the name of test.ts so it gets picked up ([9374957](https://github.com/TrialAndErrorOrg/parsers/commit/93749570b8306e0b7f5ea75648fab5a0f254cd85)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- **types:** fixing types ([2893172](https://github.com/TrialAndErrorOrg/parsers/commit/2893172ccf37ad1d12a35fea3ef61700bd24dafb)) diff --git a/libs/xast/xast-util-is-element/project.json b/libs/xast/xast-util-is-element/project.json index 244df844..0e72da71 100755 --- a/libs/xast/xast-util-is-element/project.json +++ b/libs/xast/xast-util-is-element/project.json @@ -13,10 +13,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/xast/xast-util-is-element/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/xast/xast-util-is-element/src/lib/xast-util-is-element.ts b/libs/xast/xast-util-is-element/src/lib/xast-util-is-element.ts index 4e5b73c5..eff6ee38 100755 --- a/libs/xast/xast-util-is-element/src/lib/xast-util-is-element.ts +++ b/libs/xast/xast-util-is-element/src/lib/xast-util-is-element.ts @@ -22,7 +22,7 @@ export type PredicateTest = export type TestFunctionAnything = ( element: Element, index?: number | null | undefined, - parent?: Parent | null | undefined + parent?: Parent | null | undefined, ) => boolean | void /** @@ -31,7 +31,7 @@ export type TestFunctionAnything = ( export type TestFunctionPredicate = ( element: Element, index?: number | null | undefined, - parent?: Parent | null | undefined + parent?: Parent | null | undefined, ) => element is X /** @@ -40,7 +40,7 @@ export type TestFunctionPredicate = ( export type AssertAnything = ( node?: unknown, index?: number | null | undefined, - parent?: Parent | null | undefined + parent?: Parent | null | undefined, ) => boolean /** @@ -50,7 +50,7 @@ export type AssertAnything = ( export type AssertPredicate = ( node?: unknown, index?: number | null | undefined, - parent?: Parent | null | undefined + parent?: Parent | null | undefined, ) => node is Y // Check if `node` is an `element` and whether it passes the given test. @@ -85,25 +85,19 @@ export const isElement = test?: Test, index?: number, parent?: Parent, - context?: unknown + context?: unknown, ): boolean { const check = convertElement(test) if ( index !== undefined && index !== null && - (typeof index !== 'number' || - index < 0 || - index === Number.POSITIVE_INFINITY) + (typeof index !== 'number' || index < 0 || index === Number.POSITIVE_INFINITY) ) { throw new Error('Expected positive finite index for child node') } - if ( - parent !== undefined && - parent !== null && - (!parent.type || !parent.children) - ) { + if (parent !== undefined && parent !== null && (!parent.type || !parent.children)) { throw new Error('Expected parent node') } @@ -112,10 +106,7 @@ export const isElement = return false } - if ( - (parent === undefined || parent === null) !== - (index === undefined || index === null) - ) { + if ((parent === undefined || parent === null) !== (index === undefined || index === null)) { throw new Error('Expected both parent and index') } @@ -126,15 +117,9 @@ export const isElement = test?: PredicateTest, index?: number, parent?: Parent, - context?: unknown + context?: unknown, ) => node is T) & - (( - node: unknown, - test: Test, - index?: number, - parent?: Parent, - context?: unknown - ) => boolean) + ((node: unknown, test: Test, index?: number, parent?: Parent, context?: unknown) => boolean) export const convertElement = /** @@ -171,9 +156,7 @@ export const convertElement = } throw new Error('Expected function, string, or array as test') - } as (( - test: T['name'] | TestFunctionPredicate - ) => AssertPredicate) & + } as ((test: T['name'] | TestFunctionPredicate) => AssertPredicate) & ((test?: Test) => AssertAnything) /** @@ -241,15 +224,8 @@ function castFactory(check: TestFunctionAnything): AssertAnything { * parameters: Array. * => boolean */ - function assertion( - this: unknown, - node: unknown, - ...parameters: Array - ): boolean { - return ( - element(node) && - Boolean(check.call(this, node, ...(parameters as number[]))) - ) + function assertion(this: unknown, node: unknown, ...parameters: Array): boolean { + return element(node) && Boolean(check.call(this, node, ...(parameters as number[]))) } } @@ -265,7 +241,7 @@ function element(node: unknown): node is Element { // @ts-expect-error Looks like a node. node.type === 'element' && // @ts-expect-error Looks like an element. - typeof node.name === 'string' + typeof node.name === 'string', ) } diff --git a/libs/xast/xast-util-select/CHANGELOG.md b/libs/xast/xast-util-select/CHANGELOG.md index 871be4b6..9af115c2 100644 --- a/libs/xast/xast-util-select/CHANGELOG.md +++ b/libs/xast/xast-util-select/CHANGELOG.md @@ -6,47 +6,48 @@ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/s ### Dependency Updates -* `xast-util-has-attribute` updated to version `0.1.6` -* `xast-util-is-element` updated to version `0.1.5` +- `xast-util-has-attribute` updated to version `0.1.6` +- `xast-util-is-element` updated to version `0.1.5` ### Bug Fixes -* don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) -* **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) +- don't use shady custom builder, just run a script that fixes the package.json ([def3c18](https://github.com/TrialAndErrorOrg/parsers/commit/def3c1844ae0a0d547de2b0a01689a302b58ab61)) +- **ooxast-util-to-unified-latex:** just give up on infer heading for now ([4709f1c](https://github.com/TrialAndErrorOrg/parsers/commit/4709f1cbe5fe8bb3e6fbc3ade8f5c92c8c71afb1)) ## [0.1.2](https://github.com/TrialAndErrorOrg/parsers/compare/xast-util-select-0.1.1...xast-util-select-0.1.2) (2023-03-14) ### Dependency Updates -* `xast-util-has-attribute` updated to version `0.1.4` -* `xast-util-is-element` updated to version `0.1.4` +- `xast-util-has-attribute` updated to version `0.1.4` +- `xast-util-is-element` updated to version `0.1.4` + ## [0.1.1](https://github.com/TrialAndErrorOrg/parsers/compare/xast-util-select-0.1.0...xast-util-select-0.1.1) (2023-03-09) ### Dependency Updates -* `xast-util-has-attribute` updated to version `0.1.2` -* `xast-util-is-element` updated to version `0.1.2` +- `xast-util-has-attribute` updated to version `0.1.2` +- `xast-util-is-element` updated to version `0.1.2` + ## 0.1.0 (2023-03-09) ### Dependency Updates -* `xast-util-has-attribute` updated to version `0.1.0` -* `xast-util-is-element` updated to version `0.1.0` +- `xast-util-has-attribute` updated to version `0.1.0` +- `xast-util-is-element` updated to version `0.1.0` ### Features -* added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) -* brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) -* citation parser!!! ([cd0e258](https://github.com/TrialAndErrorOrg/parsers/commit/cd0e2586e3d180ccaa30c694a2dbc064a7f8466b)) -* fix type errors ([0ce6946](https://github.com/TrialAndErrorOrg/parsers/commit/0ce6946f228d735dfea5177a941fa23dca474405)) -* **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) - +- added eslint and changed tsignore to expect ([95083c0](https://github.com/TrialAndErrorOrg/parsers/commit/95083c07fc19aeb3a4dc2fa0ecbb2597a86c11fa)) +- brand spanking new project.json ([32e19eb](https://github.com/TrialAndErrorOrg/parsers/commit/32e19ebf3f71c80336f637297d8f4db274d098bf)) +- citation parser!!! ([cd0e258](https://github.com/TrialAndErrorOrg/parsers/commit/cd0e2586e3d180ccaa30c694a2dbc064a7f8466b)) +- fix type errors ([0ce6946](https://github.com/TrialAndErrorOrg/parsers/commit/0ce6946f228d735dfea5177a941fa23dca474405)) +- **xast-utils:** add xast-util-select, xast-util-is-element, xast-util-has-attribute ([5f8ab76](https://github.com/TrialAndErrorOrg/parsers/commit/5f8ab764a09da5debb4200ac3a996ced2ca2bbf4)) ### Bug Fixes -* change the name of test.ts so it gets picked up ([9374957](https://github.com/TrialAndErrorOrg/parsers/commit/93749570b8306e0b7f5ea75648fab5a0f254cd85)) -* enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) -* fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) -* **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) -* properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) -* really import all dependencies ([f4b1f67](https://github.com/TrialAndErrorOrg/parsers/commit/f4b1f676ecc74ad086223f1f0da0189f346a76ba)) +- change the name of test.ts so it gets picked up ([9374957](https://github.com/TrialAndErrorOrg/parsers/commit/93749570b8306e0b7f5ea75648fab5a0f254cd85)) +- enter a new era ([9c2a0e5](https://github.com/TrialAndErrorOrg/parsers/commit/9c2a0e505472c43d384f3cc78543ad90877b7c3d)) +- fixed all eslint errors like a good boy ([eae924f](https://github.com/TrialAndErrorOrg/parsers/commit/eae924fdc4e9741cc455696daf63754eb5a2481b)) +- **jest:** allow jest to be run even if there is a .swcrc ([6f188f2](https://github.com/TrialAndErrorOrg/parsers/commit/6f188f2a06922ee00d9367b29e666894e48c6c1e)) +- properly set all package.jsons ([5af9c17](https://github.com/TrialAndErrorOrg/parsers/commit/5af9c177be9910511844c481ca59cfcc7bd9b0f6)) +- really import all dependencies ([f4b1f67](https://github.com/TrialAndErrorOrg/parsers/commit/f4b1f676ecc74ad086223f1f0da0189f346a76ba)) diff --git a/libs/xast/xast-util-select/package.json b/libs/xast/xast-util-select/package.json index 2194a7d7..439b7718 100755 --- a/libs/xast/xast-util-select/package.json +++ b/libs/xast/xast-util-select/package.json @@ -30,5 +30,18 @@ "index.d.ts", "index.js", "/lib" - ] + ], + "dependencies": { + "xast-util-has-attribute": "*", + "xast-util-is-element": "*", + "property-information": "^6.1.1", + "zwitch": "^2.0.2", + "comma-separated-tokens": "^2.0.2", + "space-separated-tokens": "^2.0.2", + "direction": "^2.0.1", + "css-selector-parser": "^1.4.1", + "nth-check": "^2.1.1", + "bcp-47-match": "^2.0.1", + "hast-util-whitespace": "^2.0.1" + } } diff --git a/libs/xast/xast-util-select/project.json b/libs/xast/xast-util-select/project.json index 46a795c6..cd880e53 100755 --- a/libs/xast/xast-util-select/project.json +++ b/libs/xast/xast-util-select/project.json @@ -41,10 +41,7 @@ }, "lint": { "executor": "@nx/linter:eslint", - "outputs": ["{options.outputFile}"], - "options": { - "lintFilePatterns": ["libs/xast/xast-util-select/**/*.ts"] - } + "outputs": ["{options.outputFile}"] }, "test": { "executor": "@nx/jest:jest", diff --git a/libs/xast/xast-util-select/src/lib/attribute.ts b/libs/xast/xast-util-select/src/lib/attribute.ts index 7449b17e..798499ef 100755 --- a/libs/xast/xast-util-select/src/lib/attribute.ts +++ b/libs/xast/xast-util-select/src/lib/attribute.ts @@ -1,11 +1,4 @@ -import { - Rule, - RuleAttr, - Element, - Schema, - Info, - AttributeValue, -} from './types.js' +import { Rule, RuleAttr, Element, Schema, Info, AttributeValue } from './types.js' import { stringify as commas } from 'comma-separated-tokens' import { find } from 'property-information' @@ -18,7 +11,7 @@ const handle = zwitch('operator', { * TODO: Why doesnt TS-expect-error work reee */ //// @ts-expect-error: hush. - unknown: unknownOperator as any, + unknown: unknownOperator as any, //// @ts-expect-error: hush. invalid: exists as any, handlers: { @@ -37,11 +30,7 @@ const handle = zwitch('operator', { * @param {Schema} schema * @returns {boolean} */ -export function attribute( - query: Rule, - element: Element, - schema: Schema -): boolean { +export function attribute(query: Rule, element: Element, schema: Schema): boolean { const attrs = query.attrs let index = -1 @@ -78,7 +67,7 @@ function exact(query: RuleAttr, element: Element, info: Info): boolean { return Boolean( hasAttribute(element, info.attribute) && element.attributes && - normalizeValue(element.attributes[info.attribute], info) === query.value + normalizeValue(element.attributes[info.attribute], info) === query.value, ) } @@ -90,11 +79,7 @@ function exact(query: RuleAttr, element: Element, info: Info): boolean { * @param {Info} info * @returns {boolean} */ -function spaceSeparatedList( - query: RuleAttr, - element: Element, - info: Info -): boolean { +function spaceSeparatedList(query: RuleAttr, element: Element, info: Info): boolean { const value = element.attributes && element.attributes[info.attribute] return ( @@ -108,8 +93,7 @@ function spaceSeparatedList( value.includes(query.value)) || // For all other values (including comma-separated lists), return whether this // is an exact match. - (hasAttribute(element, info.attribute) && - normalizeValue(value, info) === query.value) + (hasAttribute(element, info.attribute) && normalizeValue(value, info) === query.value) ) } @@ -122,17 +106,14 @@ function spaceSeparatedList( * @returns {boolean} */ function exactOrPrefix(query: RuleAttr, element: Element, info: Info): boolean { - const value = normalizeValue( - element.attributes && element.attributes[info.attribute], - info - ) + const value = normalizeValue(element.attributes && element.attributes[info.attribute], info) return Boolean( hasAttribute(element, info.attribute) && query.value && (value === query.value || (value.slice(0, query.value.length) === query.value && - value.charAt(query.value.length) === '-')) + value.charAt(query.value.length) === '-')), ) } @@ -149,10 +130,8 @@ function begins(query: RuleAttr, element: Element, info: Info): boolean { hasAttribute(element, info.attribute) && element.attributes && query.value && - normalizeValue(element.attributes[info.attribute], info).slice( - 0, - query.value.length - ) === query.value + normalizeValue(element.attributes[info.attribute], info).slice(0, query.value.length) === + query.value, ) } @@ -169,9 +148,8 @@ function ends(query: RuleAttr, element: Element, info: Info): boolean { hasAttribute(element, info.attribute) && element.attributes && query.value && - normalizeValue(element.attributes[info.attribute], info).slice( - -query.value.length - ) === query.value + normalizeValue(element.attributes[info.attribute], info).slice(-query.value.length) === + query.value, ) } @@ -188,9 +166,7 @@ function contains(query: RuleAttr, element: Element, info: Info): boolean { hasAttribute(element, info.attribute) && element.attributes && query.value && - normalizeValue(element.attributes[info.attribute], info).includes( - query.value - ) + normalizeValue(element.attributes[info.attribute], info).includes(query.value), ) } diff --git a/libs/xast/xast-util-select/src/lib/types.ts b/libs/xast/xast-util-select/src/lib/types.ts index 8ed73225..51d08e10 100755 --- a/libs/xast/xast-util-select/src/lib/types.ts +++ b/libs/xast/xast-util-select/src/lib/types.ts @@ -6,27 +6,10 @@ export type XastNode = XXastParent['children'][number] | Root export type ElementChild = Element['children'][number] export type AttributeValue = Attribute[string] -import { - RuleSet, - Rule, - Selector, - Selectors, - RulePseudo, - AttrValueType, -} from 'css-selector-parser' +import { RuleSet, Rule, Selector, Selectors, RulePseudo, AttrValueType } from 'css-selector-parser' import { html } from 'property-information' -export type { - Element, - AttrValueType, - Selector, - Selectors, - RuleSet, - Rule, - RulePseudo, - Parent, - Node, -} +export type { Element, AttrValueType, Selector, Selectors, RuleSet, Rule, RulePseudo, Parent, Node } /** * Fix for types. */ @@ -83,7 +66,7 @@ export type SelectIterator = ( node: XastNode, index: number, parent: XastParent | null, - state: SelectState + state: SelectState, ) => void export type Handler = ( @@ -91,7 +74,7 @@ export type Handler = ( node: XastNode, index: number | null, parent: Parent | null, - state: SelectState + state: SelectState, ) => void export {} diff --git a/nx.json b/nx.json index a3a3a134..4b596ac1 100755 --- a/nx.json +++ b/nx.json @@ -50,35 +50,26 @@ }, "targetDefaults": { "lint": { - "inputs": ["default", "{workspaceRoot}/.eslintrc.json"] + "inputs": ["default", "{workspaceRoot}/.eslintrc.json"], + "options": { + "fix": true, + "lintFilePatterns": ["{projectRoot}/**/*.{js,jsx,ts,tsx}", "{projectRoot}/package.json"] + } }, "build": { - "dependsOn": [], + "dependsOn": ["^build", "lint"], "inputs": ["production", "^production"] }, - "make-publishable": { - "dependsOn": ["build", "^make-publishable", "lint"], - "inputs": ["production", "^production"], - "executor": "better-nx-tsc:publishable", - "outputs": ["{workspaceRoot}/dist/{projectRoot}"] - }, - "better-nx-tsc:publishable": { - "options": { - "dist": "dist/{projectRoot}" - } - }, "version": { - "dependsOn": ["^version", "make-publishable"], + "dependsOn": ["^version", "build"], "options": { "preset": "conventional", "trackDeps": true } }, "npm": { - "dependsOn": ["make-publishable"], "options": { - "access": "public", - "noBuild": true + "access": "public" } }, "e2e": { @@ -94,16 +85,7 @@ "options": { "verbose": true, "cacheDirectory": "/tmp/nx-cache", - "cacheableOperations": [ - "build", - "make-publishable", - "lint", - "test", - "e2e", - "npm", - "readme", - "version" - ] + "cacheableOperations": ["build", "lint", "test", "e2e", "npm", "readme", "version"] } } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b4b5a79c..51fe3132 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -747,28 +747,44 @@ devDependencies: version: 0.31.4(@vitest/ui@0.31.4)(jsdom@22.1.0) packages: - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, + } + engines: { node: '>=0.10.0' } /@ampproject/remapping@2.2.0: - resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==, + } + engines: { node: '>=6.0.0' } dependencies: '@jridgewell/gen-mapping': 0.1.1 '@jridgewell/trace-mapping': 0.3.17 /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, + } + engines: { node: '>=6.0.0' } dependencies: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.18 /@angular-devkit/core@13.3.5(chokidar@3.5.3): - resolution: {integrity: sha512-w7vzK4VoYP9rLgxJ2SwEfrkpKybdD+QgQZlsDBzT0C6Ebp7b4gkNcNVFo8EiZvfDl6Yplw2IAP7g7fs3STn0hQ==} - engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + resolution: + { + integrity: sha512-w7vzK4VoYP9rLgxJ2SwEfrkpKybdD+QgQZlsDBzT0C6Ebp7b4gkNcNVFo8EiZvfDl6Yplw2IAP7g7fs3STn0hQ==, + } + engines: + { + node: ^12.20.0 || ^14.15.0 || >=16.10.0, + npm: ^6.11.0 || ^7.5.6 || >=8.0.0, + yarn: '>= 1.13.0', + } peerDependencies: chokidar: ^3.5.2 peerDependenciesMeta: @@ -785,8 +801,16 @@ packages: dev: true /@angular-devkit/schematics@13.3.5(chokidar@3.5.3): - resolution: {integrity: sha512-0N/kL/Vfx0yVAEwa3HYxNx9wYb+G9r1JrLjJQQzDp+z9LtcojNf7j3oey6NXrDUs1WjVZOa/AIdRl3/DuaoG5w==} - engines: {node: ^12.20.0 || ^14.15.0 || >=16.10.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'} + resolution: + { + integrity: sha512-0N/kL/Vfx0yVAEwa3HYxNx9wYb+G9r1JrLjJQQzDp+z9LtcojNf7j3oey6NXrDUs1WjVZOa/AIdRl3/DuaoG5w==, + } + engines: + { + node: ^12.20.0 || ^14.15.0 || >=16.10.0, + npm: ^6.11.0 || ^7.5.6 || >=8.0.0, + yarn: '>= 1.13.0', + } dependencies: '@angular-devkit/core': 13.3.5(chokidar@3.5.3) jsonc-parser: 3.0.0 @@ -798,7 +822,10 @@ packages: dev: true /@auth/core@0.5.1: - resolution: {integrity: sha512-t9z8F7dkuVceKWBmMy1fd2t6H+vfRju/YJ1lm+6RnJ7pNEvX5qMR874wg0+cYbWvyZazLi8fFK/FA6I3D5sSkA==} + resolution: + { + integrity: sha512-t9z8F7dkuVceKWBmMy1fd2t6H+vfRju/YJ1lm+6RnJ7pNEvX5qMR874wg0+cYbWvyZazLi8fFK/FA6I3D5sSkA==, + } peerDependencies: nodemailer: ^6.8.0 peerDependenciesMeta: @@ -814,7 +841,10 @@ packages: dev: false /@auth/sveltekit@0.3.0(@sveltejs/kit@1.13.0)(svelte@3.57.0): - resolution: {integrity: sha512-J9uwaKadzPaQMYec9CYpa9WAjV5EIMEhj4vTuJH6HTp2FJOOJQB5t19WqWv9rYzBVm2rBTPPplQXPI5UKOvg4Q==} + resolution: + { + integrity: sha512-J9uwaKadzPaQMYec9CYpa9WAjV5EIMEhj4vTuJH6HTp2FJOOJQB5t19WqWv9rYzBVm2rBTPPplQXPI5UKOvg4Q==, + } peerDependencies: '@sveltejs/kit': ^1.0.0 svelte: ^3.54.0 @@ -827,29 +857,44 @@ packages: dev: false /@babel/code-frame@7.18.6: - resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/highlight': 7.18.6 /@babel/code-frame@7.22.13: - resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/highlight': 7.22.20 chalk: 2.4.2 /@babel/compat-data@7.20.5: - resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==, + } + engines: { node: '>=6.9.0' } /@babel/compat-data@7.22.20: - resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==, + } + engines: { node: '>=6.9.0' } /@babel/core@7.20.5: - resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==, + } + engines: { node: '>=6.9.0' } dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 @@ -870,8 +915,11 @@ packages: - supports-color /@babel/core@7.22.20: - resolution: {integrity: sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA==, + } + engines: { node: '>=6.9.0' } dependencies: '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.22.13 @@ -892,16 +940,22 @@ packages: - supports-color /@babel/generator@7.20.5: - resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.20.5 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 /@babel/generator@7.21.1: - resolution: {integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 '@jridgewell/gen-mapping': 0.3.3 @@ -909,8 +963,11 @@ packages: jsesc: 2.5.2 /@babel/generator@7.22.15: - resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 '@jridgewell/gen-mapping': 0.3.3 @@ -918,27 +975,39 @@ packages: jsesc: 2.5.2 /@babel/helper-annotate-as-pure@7.18.6: - resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 dev: true /@babel/helper-annotate-as-pure@7.22.5: - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: - resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-compilation-targets@7.20.0(@babel/core@7.20.5): - resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -949,8 +1018,11 @@ packages: semver: 6.3.1 /@babel/helper-compilation-targets@7.22.15: - resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/compat-data': 7.22.20 '@babel/helper-validator-option': 7.22.15 @@ -959,8 +1031,11 @@ packages: semver: 6.3.1 /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.20.5): - resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -977,8 +1052,11 @@ packages: dev: true /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -994,8 +1072,11 @@ packages: semver: 6.3.1 /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1005,7 +1086,10 @@ packages: semver: 6.3.1 /@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.20): - resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==} + resolution: + { + integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==, + } peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -1019,67 +1103,100 @@ packages: - supports-color /@babel/helper-environment-visitor@7.18.9: - resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, + } + engines: { node: '>=6.9.0' } /@babel/helper-environment-visitor@7.22.20: - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, + } + engines: { node: '>=6.9.0' } /@babel/helper-function-name@7.19.0: - resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/template': 7.20.7 '@babel/types': 7.22.19 /@babel/helper-function-name@7.21.0: - resolution: {integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/template': 7.22.15 '@babel/types': 7.22.19 /@babel/helper-function-name@7.22.5: - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/template': 7.22.15 '@babel/types': 7.22.19 /@babel/helper-hoist-variables@7.18.6: - resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-hoist-variables@7.22.5: - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-member-expression-to-functions@7.22.15: - resolution: {integrity: sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-qLNsZbgrNh0fDQBCPocSL8guki1hcPvltGDv/NxvUoABwFq7GkKSu1nRXeJkVZc+wJvne2E0RKQz+2SQrz6eAA==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-module-imports@7.18.6: - resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-module-imports@7.22.15: - resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-module-transforms@7.20.2: - resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.18.6 @@ -1093,8 +1210,11 @@ packages: - supports-color /@babel/helper-module-transforms@7.22.20(@babel/core@7.22.20): - resolution: {integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1106,22 +1226,34 @@ packages: '@babel/helper-validator-identifier': 7.22.20 /@babel/helper-optimise-call-expression@7.22.5: - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-plugin-utils@7.20.2: - resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==, + } + engines: { node: '>=6.9.0' } /@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, + } + engines: { node: '>=6.9.0' } /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.22.20): - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1131,8 +1263,11 @@ packages: '@babel/helper-wrap-function': 7.22.20 /@babel/helper-replace-supers@7.22.20(@babel/core@7.20.5): - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1143,8 +1278,11 @@ packages: dev: true /@babel/helper-replace-supers@7.22.20(@babel/core@7.22.20): - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1154,70 +1292,109 @@ packages: '@babel/helper-optimise-call-expression': 7.22.5 /@babel/helper-simple-access@7.20.2: - resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-skip-transparent-expression-wrappers@7.22.5: - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-split-export-declaration@7.18.6: - resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-split-export-declaration@7.22.6: - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/types': 7.22.19 /@babel/helper-string-parser@7.19.4: - resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, + } + engines: { node: '>=6.9.0' } /@babel/helper-string-parser@7.22.5: - resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, + } + engines: { node: '>=6.9.0' } /@babel/helper-validator-identifier@7.19.1: - resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, + } + engines: { node: '>=6.9.0' } /@babel/helper-validator-identifier@7.22.20: - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, + } + engines: { node: '>=6.9.0' } /@babel/helper-validator-option@7.21.0: - resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==, + } + engines: { node: '>=6.9.0' } /@babel/helper-validator-option@7.22.15: - resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==, + } + engines: { node: '>=6.9.0' } /@babel/helper-wrap-function@7.22.20: - resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-function-name': 7.22.5 '@babel/template': 7.22.15 '@babel/types': 7.22.19 /@babel/helpers@7.20.6: - resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/template': 7.18.10 '@babel/traverse': 7.20.5 @@ -1226,8 +1403,11 @@ packages: - supports-color /@babel/helpers@7.22.15: - resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/template': 7.22.15 '@babel/traverse': 7.22.20 @@ -1236,45 +1416,63 @@ packages: - supports-color /@babel/highlight@7.18.6: - resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 /@babel/highlight@7.22.20: - resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 /@babel/parser@7.20.5: - resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==, + } + engines: { node: '>=6.0.0' } hasBin: true dependencies: '@babel/types': 7.20.5 /@babel/parser@7.21.2: - resolution: {integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ==, + } + engines: { node: '>=6.0.0' } hasBin: true dependencies: '@babel/types': 7.22.19 /@babel/parser@7.22.16: - resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==, + } + engines: { node: '>=6.0.0' } hasBin: true dependencies: '@babel/types': 7.22.19 /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1282,8 +1480,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.13.0 dependencies: @@ -1293,8 +1494,11 @@ packages: '@babel/plugin-transform-optional-chaining': 7.22.15(@babel/core@7.22.20) /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.20): - resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==, + } + engines: { node: '>=6.9.0' } deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 @@ -1304,8 +1508,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-proposal-decorators@7.22.15(@babel/core@7.20.5): - resolution: {integrity: sha512-kc0VvbbUyKelvzcKOSyQUSVVXS5pT3UhRB0e3c9An86MvLqs+gx0dN4asllrDluqSa3m9YyooXKGOFVomnyFkg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-kc0VvbbUyKelvzcKOSyQUSVVXS5pT3UhRB0e3c9An86MvLqs+gx0dN4asllrDluqSa3m9YyooXKGOFVomnyFkg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1318,8 +1525,11 @@ packages: dev: true /@babel/plugin-proposal-decorators@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-kc0VvbbUyKelvzcKOSyQUSVVXS5pT3UhRB0e3c9An86MvLqs+gx0dN4asllrDluqSa3m9YyooXKGOFVomnyFkg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-kc0VvbbUyKelvzcKOSyQUSVVXS5pT3UhRB0e3c9An86MvLqs+gx0dN4asllrDluqSa3m9YyooXKGOFVomnyFkg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1331,15 +1541,21 @@ packages: '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.22.20) /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.20): - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.20 /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.5): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + resolution: + { + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1347,7 +1563,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.20): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + resolution: + { + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1355,7 +1574,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.20.5): - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + resolution: + { + integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1363,7 +1585,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.20): - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + resolution: + { + integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1371,7 +1596,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.5): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + resolution: + { + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1379,7 +1607,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.20): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} + resolution: + { + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1387,8 +1618,11 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.20): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1396,8 +1630,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.20.5): - resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1406,8 +1643,11 @@ packages: dev: true /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.22.20): - resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1415,7 +1655,10 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.20): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + resolution: + { + integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1423,7 +1666,10 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.20): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + resolution: + { + integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1431,8 +1677,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1440,8 +1689,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1449,7 +1701,10 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.5): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + resolution: + { + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1457,7 +1712,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.20): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + resolution: + { + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1465,7 +1723,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.5): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + resolution: + { + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1473,7 +1734,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.20): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + resolution: + { + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1481,8 +1745,11 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.5): - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1491,8 +1758,11 @@ packages: dev: true /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.22.20): - resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1500,8 +1770,11 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1509,7 +1782,10 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.5): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + resolution: + { + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1517,7 +1793,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.20): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + resolution: + { + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1525,7 +1804,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.5): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + resolution: + { + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1533,7 +1815,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.20): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + resolution: + { + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1541,7 +1826,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.5): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + resolution: + { + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1549,7 +1837,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.20): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + resolution: + { + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1557,7 +1848,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.5): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1565,7 +1859,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.20): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1573,7 +1870,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.5): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + resolution: + { + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1581,7 +1881,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.20): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + resolution: + { + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1589,7 +1892,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.5): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + resolution: + { + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1597,7 +1903,10 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.20): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + resolution: + { + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1605,8 +1914,11 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.20): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1614,8 +1926,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.5): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1623,8 +1938,11 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.20): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1632,8 +1950,11 @@ packages: '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.20): - resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1641,8 +1962,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1650,8 +1974,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.20): - resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1660,8 +1987,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1669,8 +1999,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-async-generator-functions@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-jBm1Es25Y+tVoTi5rfd5t1KLmL8ogLKpXszboWOTTtGFGz2RKnQe2yn7HbZ+kb/B8N0FVSGQo874NSlOU1T4+w==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1681,8 +2014,11 @@ packages: '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.20) /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1692,8 +2028,11 @@ packages: '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.22.20) /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1701,8 +2040,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-block-scoping@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-G1czpdJBZCtngoK1sJgloLiOHUnkb/bLZwqVZD8kXmq0ZnVfTTWUcs9OWtp0mBtYJ+4LQY1fllqBkOIPhXmFmw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1710,8 +2052,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1720,8 +2065,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.22.20): - resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.12.0 dependencies: @@ -1731,8 +2079,11 @@ packages: '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.20) /@babel/plugin-transform-classes@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1748,8 +2099,11 @@ packages: globals: 11.12.0 /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1758,8 +2112,11 @@ packages: '@babel/template': 7.22.15 /@babel/plugin-transform-destructuring@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-HzG8sFl1ZVGTme74Nw+X01XsUTqERVQ6/RLHo3XjGRzm7XD6QTtfS3NJotVgCGy8BzkDqRjRBD8dAyJn5TuvSQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1767,8 +2124,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1777,8 +2137,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1786,8 +2149,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.22.20): - resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1796,8 +2162,11 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.20) /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1806,8 +2175,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.22.20): - resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1816,8 +2188,11 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.20) /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1825,8 +2200,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1836,8 +2214,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.22.20): - resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1846,8 +2227,11 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.20) /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1855,8 +2239,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.22.20): - resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1865,8 +2252,11 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.20) /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1874,8 +2264,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1884,8 +2277,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-modules-commonjs@7.19.6(@babel/core@7.20.5): - resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1897,8 +2293,11 @@ packages: - supports-color /@babel/plugin-transform-modules-commonjs@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-jWL4eh90w0HQOTKP2MoXXUpVxilxsB2Vl4ji69rSjS3EcZ/v4sBmn+A3NpepuJzBhOaEBbR7udonlHHn5DWidg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1908,8 +2307,11 @@ packages: '@babel/helper-simple-access': 7.22.5 /@babel/plugin-transform-modules-systemjs@7.22.11(@babel/core@7.22.20): - resolution: {integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-rIqHmHoMEOhI3VkVf5jQ15l539KrwhzqcBO6wdCNWPWc/JWt9ILNYNUssbRpeq0qWns8svuw8LnMNCvWBIJ8wA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1920,8 +2322,11 @@ packages: '@babel/helper-validator-identifier': 7.22.20 /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1930,8 +2335,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -1940,8 +2348,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1949,8 +2360,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.22.20): - resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1959,8 +2373,11 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.20) /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.22.20): - resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1969,8 +2386,11 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.20) /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1982,8 +2402,11 @@ packages: '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.22.20) /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -1992,8 +2415,11 @@ packages: '@babel/helper-replace-supers': 7.22.20(@babel/core@7.22.20) /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.22.20): - resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2002,8 +2428,11 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.20) /@babel/plugin-transform-optional-chaining@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-ngQ2tBhq5vvSJw2Q2Z9i7ealNkpDMU0rGWnHPKqRZO0tzZ5tlaoz4hDvhXioOoaE0X2vfNss1djwg0DXlfu30A==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2013,8 +2442,11 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.20) /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2022,8 +2454,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2032,8 +2467,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.22.20): - resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2044,8 +2482,11 @@ packages: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.20) /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2053,8 +2494,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-react-constant-elements@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2063,8 +2507,11 @@ packages: dev: true /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.20.5): - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2073,8 +2520,11 @@ packages: dev: true /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.22.20): - resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2083,8 +2533,11 @@ packages: dev: true /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.20.5): - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2093,8 +2546,11 @@ packages: dev: true /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.22.20): - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2103,8 +2559,11 @@ packages: dev: true /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.20.5): - resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2117,8 +2576,11 @@ packages: dev: true /@babel/plugin-transform-react-jsx@7.21.0(@babel/core@7.22.20): - resolution: {integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-6OAWljMvQrZjR2DaNhVfRz6dkCAVV+ymcLUmaf8bccGOHn2v5rHJK3tTpij0BuhdYWP4LLaqj5lwcdlpAAPuvg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2131,8 +2593,11 @@ packages: dev: true /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.20.5): - resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2142,8 +2607,11 @@ packages: dev: true /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.22.20): - resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2153,8 +2621,11 @@ packages: dev: true /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.22.20): - resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2163,8 +2634,11 @@ packages: regenerator-transform: 0.15.2 /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2172,8 +2646,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-runtime@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2188,8 +2665,11 @@ packages: - supports-color /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2197,8 +2677,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2207,8 +2690,11 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2216,8 +2702,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2225,8 +2714,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2234,8 +2726,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2246,8 +2741,11 @@ packages: '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.20) /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.22.20): - resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2255,8 +2753,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2265,8 +2766,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2275,8 +2779,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.20): - resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -2285,8 +2792,11 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /@babel/preset-env@7.22.20(@babel/core@7.22.20): - resolution: {integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-11MY04gGC4kSzlPHRfvVkNAZhUxOvm7DCJ37hPDnUENwe06npjIRAfInEMTGSb4LZK5ZgDFkv5hw0lGebHeTyg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2375,7 +2885,10 @@ packages: - supports-color /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.22.20): - resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} + resolution: + { + integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, + } peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: @@ -2385,8 +2898,11 @@ packages: esutils: 2.0.3 /@babel/preset-react@7.18.6(@babel/core@7.20.5): - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2400,8 +2916,11 @@ packages: dev: true /@babel/preset-react@7.18.6(@babel/core@7.22.20): - resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2415,8 +2934,11 @@ packages: dev: true /@babel/preset-typescript@7.22.15(@babel/core@7.22.20): - resolution: {integrity: sha512-HblhNmh6yM+cU4VwbBRpxFhxsTdfS1zsvH9W+gEjD0ARV9+8B4sNfpI6GuhePti84nuvhiwKS539jKPFHskA9A==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-HblhNmh6yM+cU4VwbBRpxFhxsTdfS1zsvH9W+gEjD0ARV9+8B4sNfpI6GuhePti84nuvhiwKS539jKPFHskA9A==, + } + engines: { node: '>=6.9.0' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -2428,54 +2950,78 @@ packages: '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.20) /@babel/regjsgen@0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + resolution: + { + integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, + } /@babel/runtime@7.19.4: - resolution: {integrity: sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==, + } + engines: { node: '>=6.9.0' } dependencies: regenerator-runtime: 0.13.9 dev: false /@babel/runtime@7.21.0: - resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==, + } + engines: { node: '>=6.9.0' } dependencies: regenerator-runtime: 0.13.11 /@babel/runtime@7.22.15: - resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==, + } + engines: { node: '>=6.9.0' } dependencies: regenerator-runtime: 0.14.0 /@babel/template@7.18.10: - resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.18.6 '@babel/parser': 7.20.5 '@babel/types': 7.20.5 /@babel/template@7.20.7: - resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.18.6 '@babel/parser': 7.21.2 '@babel/types': 7.22.19 /@babel/template@7.22.15: - resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.22.13 '@babel/parser': 7.22.16 '@babel/types': 7.22.19 /@babel/traverse@7.20.5: - resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.18.6 '@babel/generator': 7.20.5 @@ -2491,8 +3037,11 @@ packages: - supports-color /@babel/traverse@7.21.2: - resolution: {integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.22.13 '@babel/generator': 7.22.15 @@ -2508,8 +3057,11 @@ packages: - supports-color /@babel/traverse@7.22.20: - resolution: {integrity: sha512-eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/code-frame': 7.22.13 '@babel/generator': 7.22.15 @@ -2525,34 +3077,49 @@ packages: - supports-color /@babel/types@7.20.5: - resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-string-parser': 7.19.4 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 /@babel/types@7.21.2: - resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-string-parser': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 /@babel/types@7.22.19: - resolution: {integrity: sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==, + } + engines: { node: '>=6.9.0' } dependencies: '@babel/helper-string-parser': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 /@bcoe/v8-coverage@0.2.3: - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + resolution: + { + integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, + } /@benrbray/mdast-util-cite@1.1.0: - resolution: {integrity: sha512-jJL69PwjdgD+p479e3AkIG/6GNfRigyfgA/iXZiV8I0PIXWv4fdonpncIthvDnyXV6+KTrKKObJ4s59qUZocBw==} + resolution: + { + integrity: sha512-jJL69PwjdgD+p479e3AkIG/6GNfRigyfgA/iXZiV8I0PIXWv4fdonpncIthvDnyXV6+KTrKKObJ4s59qUZocBw==, + } dependencies: '@benrbray/micromark-extension-cite': 1.0.0 transitivePeerDependencies: @@ -2560,7 +3127,10 @@ packages: dev: false /@benrbray/micromark-extension-cite@1.0.0: - resolution: {integrity: sha512-MiqLxAr6/+sslKOgsuAGOHIWFUyw9umL5GzBijPqMp/pcidOgeCzC1Sb8KT3pq0XyB3gYuQQjgEnXNDjQrJ/Wg==} + resolution: + { + integrity: sha512-MiqLxAr6/+sslKOgsuAGOHIWFUyw9umL5GzBijPqMp/pcidOgeCzC1Sb8KT3pq0XyB3gYuQQjgEnXNDjQrJ/Wg==, + } dependencies: micromark: 2.11.4 transitivePeerDependencies: @@ -2568,7 +3138,10 @@ packages: dev: false /@benrbray/remark-cite@1.1.0: - resolution: {integrity: sha512-UOeh0JOyO6JaCGgWimFtBCjXOabLLbGxT72KgQvIQH9MPX3DYGQtks0QAuGRz00raMV5UOK1uL12xMkh4MIlzA==} + resolution: + { + integrity: sha512-UOeh0JOyO6JaCGgWimFtBCjXOabLLbGxT72KgQvIQH9MPX3DYGQtks0QAuGRz00raMV5UOK1uL12xMkh4MIlzA==, + } dependencies: '@benrbray/mdast-util-cite': 1.1.0 '@benrbray/micromark-extension-cite': 1.0.0 @@ -2577,8 +3150,11 @@ packages: dev: false /@citation-js/cli@0.6.7: - resolution: {integrity: sha512-lUUmPtHs1ldrNaVTk+zwc/i5GZbYEMPFRJbhoV6Yb5o3JQlUk5TTMZNZuXpmOKEeVlbjaUbIfvcghPT99CizKg==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-lUUmPtHs1ldrNaVTk+zwc/i5GZbYEMPFRJbhoV6Yb5o3JQlUk5TTMZNZuXpmOKEeVlbjaUbIfvcghPT99CizKg==, + } + engines: { node: '>=14.0.0' } hasBin: true dependencies: '@citation-js/core': 0.6.5 @@ -2594,8 +3170,11 @@ packages: dev: false /@citation-js/core@0.6.5: - resolution: {integrity: sha512-YmfL3wby/oLgggs3hqRcllL0xYOUzTaABChTEEbcfXwrvIstgHzODG1tcPAVg/EVuVH151uMR9xttuzu+Lbxcg==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-YmfL3wby/oLgggs3hqRcllL0xYOUzTaABChTEEbcfXwrvIstgHzODG1tcPAVg/EVuVH151uMR9xttuzu+Lbxcg==, + } + engines: { node: '>=14.0.0' } dependencies: '@citation-js/date': 0.5.1 '@citation-js/name': 0.4.2 @@ -2606,18 +3185,27 @@ packages: dev: false /@citation-js/date@0.5.1: - resolution: {integrity: sha512-1iDKAZ4ie48PVhovsOXQ+C6o55dWJloXqtznnnKy6CltJBQLIuLLuUqa8zlIvma0ZigjVjgDUhnVaNU1MErtZw==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-1iDKAZ4ie48PVhovsOXQ+C6o55dWJloXqtznnnKy6CltJBQLIuLLuUqa8zlIvma0ZigjVjgDUhnVaNU1MErtZw==, + } + engines: { node: '>=10.0.0' } dev: false /@citation-js/name@0.4.2: - resolution: {integrity: sha512-brSPsjs2fOVzSnARLKu0qncn6suWjHVQtrqSUrnqyaRH95r/Ad4wPF5EsoWr+Dx8HzkCGb/ogmoAzfCsqlTwTQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-brSPsjs2fOVzSnARLKu0qncn6suWjHVQtrqSUrnqyaRH95r/Ad4wPF5EsoWr+Dx8HzkCGb/ogmoAzfCsqlTwTQ==, + } + engines: { node: '>=6' } dev: false /@citation-js/plugin-bibjson@0.6.5(@citation-js/core@0.6.5): - resolution: {integrity: sha512-SiWVgwWOs/up2FxAJlx56QPoWXDsjXMhVz0VUjzmS6bm+PXmqtzNDmqTCwf/CVgYWKl7UJStmsuB4WgnTlGBBA==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-SiWVgwWOs/up2FxAJlx56QPoWXDsjXMhVz0VUjzmS6bm+PXmqtzNDmqTCwf/CVgYWKl7UJStmsuB4WgnTlGBBA==, + } + engines: { node: '>=14.0.0' } peerDependencies: '@citation-js/core': ^0.6.0 dependencies: @@ -2627,8 +3215,11 @@ packages: dev: false /@citation-js/plugin-bibtex@0.6.6(@citation-js/core@0.6.5): - resolution: {integrity: sha512-hDcMK+e+WaA8f3b+SkIVB+41w39Yf3AVGQ6Ee1amC4KCF5kS6IoiAC5dUquCZoaJCrh5PEg1fyX2tuii6WkOhA==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-hDcMK+e+WaA8f3b+SkIVB+41w39Yf3AVGQ6Ee1amC4KCF5kS6IoiAC5dUquCZoaJCrh5PEg1fyX2tuii6WkOhA==, + } + engines: { node: '>=14.0.0' } peerDependencies: '@citation-js/core': ^0.6.0 dependencies: @@ -2639,8 +3230,11 @@ packages: dev: false /@citation-js/plugin-csl@0.6.7(@citation-js/core@0.6.5): - resolution: {integrity: sha512-cgMCaujDaSnYPHmmyk5vp7UTVmEEkToqh1gFH5OGUOlLOaFmRTQn8kssMrVQR/mBZlQmMeoh5NYVktNeo5eDCg==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-cgMCaujDaSnYPHmmyk5vp7UTVmEEkToqh1gFH5OGUOlLOaFmRTQn8kssMrVQR/mBZlQmMeoh5NYVktNeo5eDCg==, + } + engines: { node: '>=14.0.0' } peerDependencies: '@citation-js/core': ^0.6.0 dependencies: @@ -2650,8 +3244,11 @@ packages: dev: false /@citation-js/plugin-doi@0.6.6(@citation-js/core@0.6.5): - resolution: {integrity: sha512-7XJ20MFiC3pa5hEuN1VWvD0yQy1w19pD7X+NvChFnVVnxMQXnKo+1ZtjgQBSA4agseLeXlXSJe7xl9btjx/DKg==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-7XJ20MFiC3pa5hEuN1VWvD0yQy1w19pD7X+NvChFnVVnxMQXnKo+1ZtjgQBSA4agseLeXlXSJe7xl9btjx/DKg==, + } + engines: { node: '>=14.0.0' } peerDependencies: '@citation-js/core': ^0.6.0 dependencies: @@ -2660,8 +3257,11 @@ packages: dev: false /@citation-js/plugin-ris@0.6.5(@citation-js/core@0.6.5): - resolution: {integrity: sha512-DEKVeSL1Da79RI4F60IUQjgoFiVxYoKzv9RsyGe4oDGNKjlKfYrJkCVkfCI5rNX6z9rh3Ei5THDy+ka8jploVw==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-DEKVeSL1Da79RI4F60IUQjgoFiVxYoKzv9RsyGe4oDGNKjlKfYrJkCVkfCI5rNX6z9rh3Ei5THDy+ka8jploVw==, + } + engines: { node: '>=14.0.0' } peerDependencies: '@citation-js/core': ^0.6.0 dependencies: @@ -2671,8 +3271,11 @@ packages: dev: false /@citation-js/plugin-wikidata@0.6.5(@citation-js/core@0.6.5): - resolution: {integrity: sha512-ry5LrCjapqqmdQZaYavnb3wPOoKaXLIySjJ8tSTjdyNaoX3xM8KbiFl55a9GlsVfDmGDZKbm2DjKocMqkybCng==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-ry5LrCjapqqmdQZaYavnb3wPOoKaXLIySjJ8tSTjdyNaoX3xM8KbiFl55a9GlsVfDmGDZKbm2DjKocMqkybCng==, + } + engines: { node: '>=14.0.0' } peerDependencies: '@citation-js/core': ^0.6.0 dependencies: @@ -2683,8 +3286,11 @@ packages: dev: false /@cnakazawa/watch@1.0.4: - resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==} - engines: {node: '>=0.1.95'} + resolution: + { + integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==, + } + engines: { node: '>=0.1.95' } hasBin: true dependencies: exec-sh: 0.3.6 @@ -2692,15 +3298,21 @@ packages: dev: false /@colors/colors@1.5.0: - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} + resolution: + { + integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==, + } + engines: { node: '>=0.1.90' } requiresBuild: true dev: true optional: true /@commitlint/cli@17.5.1(@swc/core@1.3.87): - resolution: {integrity: sha512-pRRgGSzdHQHehxZbGA3qF6wVPyl+EEQgTe/t321rtMLFbuJ7nRj2waS17s/v5oEbyZtiY5S8PGB6XtEIm0I+Sg==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-pRRgGSzdHQHehxZbGA3qF6wVPyl+EEQgTe/t321rtMLFbuJ7nRj2waS17s/v5oEbyZtiY5S8PGB6XtEIm0I+Sg==, + } + engines: { node: '>=v14' } hasBin: true dependencies: '@commitlint/format': 17.4.4 @@ -2719,23 +3331,32 @@ packages: dev: true /@commitlint/config-conventional@17.4.4: - resolution: {integrity: sha512-u6ztvxqzi6NuhrcEDR7a+z0yrh11elY66nRrQIpqsqW6sZmpxYkDLtpRH8jRML+mmxYQ8s4qqF06Q/IQx5aJeQ==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-u6ztvxqzi6NuhrcEDR7a+z0yrh11elY66nRrQIpqsqW6sZmpxYkDLtpRH8jRML+mmxYQ8s4qqF06Q/IQx5aJeQ==, + } + engines: { node: '>=v14' } dependencies: conventional-changelog-conventionalcommits: 5.0.0 dev: true /@commitlint/config-validator@17.4.4: - resolution: {integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==, + } + engines: { node: '>=v14' } dependencies: '@commitlint/types': 17.4.4 ajv: 8.12.0 dev: true /@commitlint/ensure@17.4.4: - resolution: {integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==, + } + engines: { node: '>=v14' } dependencies: '@commitlint/types': 17.4.4 lodash.camelcase: 4.3.0 @@ -2746,29 +3367,41 @@ packages: dev: true /@commitlint/execute-rule@17.4.0: - resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==, + } + engines: { node: '>=v14' } dev: true /@commitlint/format@17.4.4: - resolution: {integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==, + } + engines: { node: '>=v14' } dependencies: '@commitlint/types': 17.4.4 chalk: 4.1.2 dev: true /@commitlint/is-ignored@17.4.4: - resolution: {integrity: sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw==, + } + engines: { node: '>=v14' } dependencies: '@commitlint/types': 17.4.4 semver: 7.3.8 dev: true /@commitlint/lint@17.4.4: - resolution: {integrity: sha512-qgkCRRFjyhbMDWsti/5jRYVJkgYZj4r+ZmweZObnbYqPUl5UKLWMf9a/ZZisOI4JfiPmRktYRZ2JmqlSvg+ccw==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-qgkCRRFjyhbMDWsti/5jRYVJkgYZj4r+ZmweZObnbYqPUl5UKLWMf9a/ZZisOI4JfiPmRktYRZ2JmqlSvg+ccw==, + } + engines: { node: '>=v14' } dependencies: '@commitlint/is-ignored': 17.4.4 '@commitlint/parse': 17.4.4 @@ -2777,8 +3410,11 @@ packages: dev: true /@commitlint/load@17.5.0(@swc/core@1.3.87): - resolution: {integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q==, + } + engines: { node: '>=v14' } dependencies: '@commitlint/config-validator': 17.4.4 '@commitlint/execute-rule': 17.4.0 @@ -2800,13 +3436,19 @@ packages: dev: true /@commitlint/message@17.4.2: - resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==, + } + engines: { node: '>=v14' } dev: true /@commitlint/parse@17.4.4: - resolution: {integrity: sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg==, + } + engines: { node: '>=v14' } dependencies: '@commitlint/types': 17.4.4 conventional-changelog-angular: 5.0.13 @@ -2814,8 +3456,11 @@ packages: dev: true /@commitlint/read@17.5.1: - resolution: {integrity: sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg==, + } + engines: { node: '>=v14' } dependencies: '@commitlint/top-level': 17.4.0 '@commitlint/types': 17.4.4 @@ -2825,8 +3470,11 @@ packages: dev: true /@commitlint/resolve-extends@17.4.4: - resolution: {integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==, + } + engines: { node: '>=v14' } dependencies: '@commitlint/config-validator': 17.4.4 '@commitlint/types': 17.4.4 @@ -2837,8 +3485,11 @@ packages: dev: true /@commitlint/rules@17.4.4: - resolution: {integrity: sha512-0tgvXnHi/mVcyR8Y8mjTFZIa/FEQXA4uEutXS/imH2v1UNkYDSEMsK/68wiXRpfW1euSgEdwRkvE1z23+yhNrQ==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-0tgvXnHi/mVcyR8Y8mjTFZIa/FEQXA4uEutXS/imH2v1UNkYDSEMsK/68wiXRpfW1euSgEdwRkvE1z23+yhNrQ==, + } + engines: { node: '>=v14' } dependencies: '@commitlint/ensure': 17.4.4 '@commitlint/message': 17.4.2 @@ -2848,33 +3499,48 @@ packages: dev: true /@commitlint/to-lines@17.4.0: - resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==, + } + engines: { node: '>=v14' } dev: true /@commitlint/top-level@17.4.0: - resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==, + } + engines: { node: '>=v14' } dependencies: find-up: 5.0.0 dev: true /@commitlint/types@17.4.4: - resolution: {integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==} - engines: {node: '>=v14'} + resolution: + { + integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==, + } + engines: { node: '>=v14' } dependencies: chalk: 4.1.2 dev: true /@cspotcode/source-map-support@0.8.1: - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, + } + engines: { node: '>=12' } dependencies: '@jridgewell/trace-mapping': 0.3.9 /@cypress/request@3.0.1: - resolution: {integrity: sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==, + } + engines: { node: '>= 6' } dependencies: aws-sign2: 0.7.0 aws4: 1.11.0 @@ -2897,7 +3563,10 @@ packages: dev: true /@cypress/xvfb@1.2.4(supports-color@8.1.1): - resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} + resolution: + { + integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==, + } dependencies: debug: 3.2.7(supports-color@8.1.1) lodash.once: 4.1.1 @@ -2906,21 +3575,33 @@ packages: dev: true /@edge-runtime/format@1.1.0-beta.31: - resolution: {integrity: sha512-tUZy+LMls1TivqVb7dbC0C0IMNjwP55co6vSkTgXCl9xFos3v43bCwAzivMaJ3NR8ZuihvK1gEj8CmvoqvOt0g==} + resolution: + { + integrity: sha512-tUZy+LMls1TivqVb7dbC0C0IMNjwP55co6vSkTgXCl9xFos3v43bCwAzivMaJ3NR8ZuihvK1gEj8CmvoqvOt0g==, + } dev: true /@edge-runtime/primitives@1.1.0-beta.31: - resolution: {integrity: sha512-OO1x32aJoxgME1k77RVxVNsazs5NY/SNwYEN8ptlZ6DKUXn0eesXftDsmlypX/OU0ZeJc61/xNVUuoeyDGJDVA==} + resolution: + { + integrity: sha512-OO1x32aJoxgME1k77RVxVNsazs5NY/SNwYEN8ptlZ6DKUXn0eesXftDsmlypX/OU0ZeJc61/xNVUuoeyDGJDVA==, + } dev: true /@edge-runtime/vm@1.1.0-beta.23: - resolution: {integrity: sha512-XBp3rCuX4scJVOo2KconAotL5XGX3zdd8IkfDNr5VVSQ/B6HkiTNuf+EvzSQTpplF+fiyLTpfcP9EbNLibwLTA==} + resolution: + { + integrity: sha512-XBp3rCuX4scJVOo2KconAotL5XGX3zdd8IkfDNr5VVSQ/B6HkiTNuf+EvzSQTpplF+fiyLTpfcP9EbNLibwLTA==, + } dependencies: '@edge-runtime/primitives': 1.1.0-beta.31 dev: true /@emotion/babel-plugin@11.11.0: - resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} + resolution: + { + integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==, + } dependencies: '@babel/helper-module-imports': 7.22.15 '@babel/runtime': 7.22.15 @@ -2936,7 +3617,10 @@ packages: dev: false /@emotion/cache@11.11.0: - resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} + resolution: + { + integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==, + } dependencies: '@emotion/memoize': 0.8.1 '@emotion/sheet': 1.2.2 @@ -2946,15 +3630,24 @@ packages: dev: false /@emotion/hash@0.9.1: - resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} + resolution: + { + integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==, + } dev: false /@emotion/memoize@0.8.1: - resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} + resolution: + { + integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==, + } dev: false /@emotion/react@11.11.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==} + resolution: + { + integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==, + } peerDependencies: '@types/react': '*' react: '>=16.8.0' @@ -2975,7 +3668,10 @@ packages: dev: false /@emotion/serialize@1.1.2: - resolution: {integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==} + resolution: + { + integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==, + } dependencies: '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 @@ -2985,15 +3681,24 @@ packages: dev: false /@emotion/sheet@1.2.2: - resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} + resolution: + { + integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==, + } dev: false /@emotion/unitless@0.8.1: - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + resolution: + { + integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==, + } dev: false /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0): - resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} + resolution: + { + integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==, + } peerDependencies: react: '>=16.8.0' dependencies: @@ -3001,15 +3706,24 @@ packages: dev: false /@emotion/utils@1.2.1: - resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} + resolution: + { + integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==, + } dev: false /@emotion/weak-memoize@0.3.1: - resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + resolution: + { + integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==, + } dev: false /@enio.ai/typedoc@1.0.8(nx@16.8.1)(typedoc-plugin-rename-defaults@0.6.5)(typedoc-theme-hierarchy@3.2.0)(typedoc@0.23.28)(typescript@5.2.2): - resolution: {integrity: sha512-oZtYpvAXYEnrV/b8KD2HMdE3upHfW0HN5Fh9BD7LXIvoA7f2vEJK2chBT4c3Tb/ZLdy9UwNmH288sP+z/7pVTg==} + resolution: + { + integrity: sha512-oZtYpvAXYEnrV/b8KD2HMdE3upHfW0HN5Fh9BD7LXIvoA7f2vEJK2chBT4c3Tb/ZLdy9UwNmH288sP+z/7pVTg==, + } peerDependencies: typedoc: ^0.23.26 typedoc-plugin-rename-defaults: ^0.6.4 @@ -3026,29 +3740,41 @@ packages: dev: false /@esbuild-kit/cjs-loader@2.4.2: - resolution: {integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==} + resolution: + { + integrity: sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg==, + } dependencies: '@esbuild-kit/core-utils': 3.1.0 get-tsconfig: 4.4.0 dev: true /@esbuild-kit/core-utils@3.1.0: - resolution: {integrity: sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==} + resolution: + { + integrity: sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw==, + } dependencies: esbuild: 0.17.14 source-map-support: 0.5.21 dev: true /@esbuild-kit/esm-loader@2.5.5: - resolution: {integrity: sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==} + resolution: + { + integrity: sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw==, + } dependencies: '@esbuild-kit/core-utils': 3.1.0 get-tsconfig: 4.4.0 dev: true /@esbuild/android-arm64@0.17.14: - resolution: {integrity: sha512-eLOpPO1RvtsP71afiFTvS7tVFShJBCT0txiv/xjFBo5a7R7Gjw7X0IgIaFoLKhqXYAXhahoXm7qAmRXhY4guJg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-eLOpPO1RvtsP71afiFTvS7tVFShJBCT0txiv/xjFBo5a7R7Gjw7X0IgIaFoLKhqXYAXhahoXm7qAmRXhY4guJg==, + } + engines: { node: '>=12' } cpu: [arm64] os: [android] requiresBuild: true @@ -3056,24 +3782,33 @@ packages: optional: true /@esbuild/android-arm64@0.18.20: - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==, + } + engines: { node: '>=12' } cpu: [arm64] os: [android] requiresBuild: true optional: true /@esbuild/android-arm64@0.19.3: - resolution: {integrity: sha512-w+Akc0vv5leog550kjJV9Ru+MXMR2VuMrui3C61mnysim0gkFCPOUTAfzTP0qX+HpN9Syu3YA3p1hf3EPqObRw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-w+Akc0vv5leog550kjJV9Ru+MXMR2VuMrui3C61mnysim0gkFCPOUTAfzTP0qX+HpN9Syu3YA3p1hf3EPqObRw==, + } + engines: { node: '>=12' } cpu: [arm64] os: [android] requiresBuild: true optional: true /@esbuild/android-arm@0.17.14: - resolution: {integrity: sha512-0CnlwnjDU8cks0yJLXfkaU/uoLyRf9VZJs4p1PskBr2AlAHeEsFEwJEo0of/Z3g+ilw5mpyDwThlxzNEIxOE4g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-0CnlwnjDU8cks0yJLXfkaU/uoLyRf9VZJs4p1PskBr2AlAHeEsFEwJEo0of/Z3g+ilw5mpyDwThlxzNEIxOE4g==, + } + engines: { node: '>=12' } cpu: [arm] os: [android] requiresBuild: true @@ -3081,24 +3816,33 @@ packages: optional: true /@esbuild/android-arm@0.18.20: - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==, + } + engines: { node: '>=12' } cpu: [arm] os: [android] requiresBuild: true optional: true /@esbuild/android-arm@0.19.3: - resolution: {integrity: sha512-Lemgw4io4VZl9GHJmjiBGzQ7ONXRfRPHcUEerndjwiSkbxzrpq0Uggku5MxxrXdwJ+pTj1qyw4jwTu7hkPsgIA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Lemgw4io4VZl9GHJmjiBGzQ7ONXRfRPHcUEerndjwiSkbxzrpq0Uggku5MxxrXdwJ+pTj1qyw4jwTu7hkPsgIA==, + } + engines: { node: '>=12' } cpu: [arm] os: [android] requiresBuild: true optional: true /@esbuild/android-x64@0.17.14: - resolution: {integrity: sha512-nrfQYWBfLGfSGLvRVlt6xi63B5IbfHm3tZCdu/82zuFPQ7zez4XjmRtF/wIRYbJQ/DsZrxJdEvYFE67avYXyng==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nrfQYWBfLGfSGLvRVlt6xi63B5IbfHm3tZCdu/82zuFPQ7zez4XjmRtF/wIRYbJQ/DsZrxJdEvYFE67avYXyng==, + } + engines: { node: '>=12' } cpu: [x64] os: [android] requiresBuild: true @@ -3106,24 +3850,33 @@ packages: optional: true /@esbuild/android-x64@0.18.20: - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==, + } + engines: { node: '>=12' } cpu: [x64] os: [android] requiresBuild: true optional: true /@esbuild/android-x64@0.19.3: - resolution: {integrity: sha512-FKQJKkK5MXcBHoNZMDNUAg1+WcZlV/cuXrWCoGF/TvdRiYS4znA0m5Il5idUwfxrE20bG/vU1Cr5e1AD6IEIjQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FKQJKkK5MXcBHoNZMDNUAg1+WcZlV/cuXrWCoGF/TvdRiYS4znA0m5Il5idUwfxrE20bG/vU1Cr5e1AD6IEIjQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [android] requiresBuild: true optional: true /@esbuild/darwin-arm64@0.17.14: - resolution: {integrity: sha512-eoSjEuDsU1ROwgBH/c+fZzuSyJUVXQTOIN9xuLs9dE/9HbV/A5IqdXHU1p2OfIMwBwOYJ9SFVGGldxeRCUJFyw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-eoSjEuDsU1ROwgBH/c+fZzuSyJUVXQTOIN9xuLs9dE/9HbV/A5IqdXHU1p2OfIMwBwOYJ9SFVGGldxeRCUJFyw==, + } + engines: { node: '>=12' } cpu: [arm64] os: [darwin] requiresBuild: true @@ -3131,24 +3884,33 @@ packages: optional: true /@esbuild/darwin-arm64@0.18.20: - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==, + } + engines: { node: '>=12' } cpu: [arm64] os: [darwin] requiresBuild: true optional: true /@esbuild/darwin-arm64@0.19.3: - resolution: {integrity: sha512-kw7e3FXU+VsJSSSl2nMKvACYlwtvZB8RUIeVShIEY6PVnuZ3c9+L9lWB2nWeeKWNNYDdtL19foCQ0ZyUL7nqGw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-kw7e3FXU+VsJSSSl2nMKvACYlwtvZB8RUIeVShIEY6PVnuZ3c9+L9lWB2nWeeKWNNYDdtL19foCQ0ZyUL7nqGw==, + } + engines: { node: '>=12' } cpu: [arm64] os: [darwin] requiresBuild: true optional: true /@esbuild/darwin-x64@0.17.14: - resolution: {integrity: sha512-zN0U8RWfrDttdFNkHqFYZtOH8hdi22z0pFm0aIJPsNC4QQZv7je8DWCX5iA4Zx6tRhS0CCc0XC2m7wKsbWEo5g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-zN0U8RWfrDttdFNkHqFYZtOH8hdi22z0pFm0aIJPsNC4QQZv7je8DWCX5iA4Zx6tRhS0CCc0XC2m7wKsbWEo5g==, + } + engines: { node: '>=12' } cpu: [x64] os: [darwin] requiresBuild: true @@ -3156,24 +3918,33 @@ packages: optional: true /@esbuild/darwin-x64@0.18.20: - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [darwin] requiresBuild: true optional: true /@esbuild/darwin-x64@0.19.3: - resolution: {integrity: sha512-tPfZiwF9rO0jW6Jh9ipi58N5ZLoSjdxXeSrAYypy4psA2Yl1dAMhM71KxVfmjZhJmxRjSnb29YlRXXhh3GqzYw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tPfZiwF9rO0jW6Jh9ipi58N5ZLoSjdxXeSrAYypy4psA2Yl1dAMhM71KxVfmjZhJmxRjSnb29YlRXXhh3GqzYw==, + } + engines: { node: '>=12' } cpu: [x64] os: [darwin] requiresBuild: true optional: true /@esbuild/freebsd-arm64@0.17.14: - resolution: {integrity: sha512-z0VcD4ibeZWVQCW1O7szaLxGsx54gcCnajEJMdYoYjLiq4g1jrP2lMq6pk71dbS5+7op/L2Aod+erw+EUr28/A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-z0VcD4ibeZWVQCW1O7szaLxGsx54gcCnajEJMdYoYjLiq4g1jrP2lMq6pk71dbS5+7op/L2Aod+erw+EUr28/A==, + } + engines: { node: '>=12' } cpu: [arm64] os: [freebsd] requiresBuild: true @@ -3181,24 +3952,33 @@ packages: optional: true /@esbuild/freebsd-arm64@0.18.20: - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==, + } + engines: { node: '>=12' } cpu: [arm64] os: [freebsd] requiresBuild: true optional: true /@esbuild/freebsd-arm64@0.19.3: - resolution: {integrity: sha512-ERDyjOgYeKe0Vrlr1iLrqTByB026YLPzTytDTz1DRCYM+JI92Dw2dbpRHYmdqn6VBnQ9Bor6J8ZlNwdZdxjlSg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ERDyjOgYeKe0Vrlr1iLrqTByB026YLPzTytDTz1DRCYM+JI92Dw2dbpRHYmdqn6VBnQ9Bor6J8ZlNwdZdxjlSg==, + } + engines: { node: '>=12' } cpu: [arm64] os: [freebsd] requiresBuild: true optional: true /@esbuild/freebsd-x64@0.17.14: - resolution: {integrity: sha512-hd9mPcxfTgJlolrPlcXkQk9BMwNBvNBsVaUe5eNUqXut6weDQH8whcNaKNF2RO8NbpT6GY8rHOK2A9y++s+ehw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-hd9mPcxfTgJlolrPlcXkQk9BMwNBvNBsVaUe5eNUqXut6weDQH8whcNaKNF2RO8NbpT6GY8rHOK2A9y++s+ehw==, + } + engines: { node: '>=12' } cpu: [x64] os: [freebsd] requiresBuild: true @@ -3206,24 +3986,33 @@ packages: optional: true /@esbuild/freebsd-x64@0.18.20: - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [freebsd] requiresBuild: true optional: true /@esbuild/freebsd-x64@0.19.3: - resolution: {integrity: sha512-nXesBZ2Ad1qL+Rm3crN7NmEVJ5uvfLFPLJev3x1j3feCQXfAhoYrojC681RhpdOph8NsvKBBwpYZHR7W0ifTTA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nXesBZ2Ad1qL+Rm3crN7NmEVJ5uvfLFPLJev3x1j3feCQXfAhoYrojC681RhpdOph8NsvKBBwpYZHR7W0ifTTA==, + } + engines: { node: '>=12' } cpu: [x64] os: [freebsd] requiresBuild: true optional: true /@esbuild/linux-arm64@0.17.14: - resolution: {integrity: sha512-FhAMNYOq3Iblcj9i+K0l1Fp/MHt+zBeRu/Qkf0LtrcFu3T45jcwB6A1iMsemQ42vR3GBhjNZJZTaCe3VFPbn9g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FhAMNYOq3Iblcj9i+K0l1Fp/MHt+zBeRu/Qkf0LtrcFu3T45jcwB6A1iMsemQ42vR3GBhjNZJZTaCe3VFPbn9g==, + } + engines: { node: '>=12' } cpu: [arm64] os: [linux] requiresBuild: true @@ -3231,24 +4020,33 @@ packages: optional: true /@esbuild/linux-arm64@0.18.20: - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==, + } + engines: { node: '>=12' } cpu: [arm64] os: [linux] requiresBuild: true optional: true /@esbuild/linux-arm64@0.19.3: - resolution: {integrity: sha512-qXvYKmXj8GcJgWq3aGvxL/JG1ZM3UR272SdPU4QSTzD0eymrM7leiZH77pvY3UetCy0k1xuXZ+VPvoJNdtrsWQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-qXvYKmXj8GcJgWq3aGvxL/JG1ZM3UR272SdPU4QSTzD0eymrM7leiZH77pvY3UetCy0k1xuXZ+VPvoJNdtrsWQ==, + } + engines: { node: '>=12' } cpu: [arm64] os: [linux] requiresBuild: true optional: true /@esbuild/linux-arm@0.17.14: - resolution: {integrity: sha512-BNTl+wSJ1omsH8s3TkQmIIIQHwvwJrU9u1ggb9XU2KTVM4TmthRIVyxSp2qxROJHhZuW/r8fht46/QE8hU8Qvg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-BNTl+wSJ1omsH8s3TkQmIIIQHwvwJrU9u1ggb9XU2KTVM4TmthRIVyxSp2qxROJHhZuW/r8fht46/QE8hU8Qvg==, + } + engines: { node: '>=12' } cpu: [arm] os: [linux] requiresBuild: true @@ -3256,24 +4054,33 @@ packages: optional: true /@esbuild/linux-arm@0.18.20: - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==, + } + engines: { node: '>=12' } cpu: [arm] os: [linux] requiresBuild: true optional: true /@esbuild/linux-arm@0.19.3: - resolution: {integrity: sha512-zr48Cg/8zkzZCzDHNxXO/89bf9e+r4HtzNUPoz4GmgAkF1gFAFmfgOdCbR8zMbzFDGb1FqBBhdXUpcTQRYS1cQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-zr48Cg/8zkzZCzDHNxXO/89bf9e+r4HtzNUPoz4GmgAkF1gFAFmfgOdCbR8zMbzFDGb1FqBBhdXUpcTQRYS1cQ==, + } + engines: { node: '>=12' } cpu: [arm] os: [linux] requiresBuild: true optional: true /@esbuild/linux-ia32@0.17.14: - resolution: {integrity: sha512-91OK/lQ5y2v7AsmnFT+0EyxdPTNhov3y2CWMdizyMfxSxRqHazXdzgBKtlmkU2KYIc+9ZK3Vwp2KyXogEATYxQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-91OK/lQ5y2v7AsmnFT+0EyxdPTNhov3y2CWMdizyMfxSxRqHazXdzgBKtlmkU2KYIc+9ZK3Vwp2KyXogEATYxQ==, + } + engines: { node: '>=12' } cpu: [ia32] os: [linux] requiresBuild: true @@ -3281,24 +4088,33 @@ packages: optional: true /@esbuild/linux-ia32@0.18.20: - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==, + } + engines: { node: '>=12' } cpu: [ia32] os: [linux] requiresBuild: true optional: true /@esbuild/linux-ia32@0.19.3: - resolution: {integrity: sha512-7XlCKCA0nWcbvYpusARWkFjRQNWNGlt45S+Q18UeS///K6Aw8bB2FKYe9mhVWy/XLShvCweOLZPrnMswIaDXQA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7XlCKCA0nWcbvYpusARWkFjRQNWNGlt45S+Q18UeS///K6Aw8bB2FKYe9mhVWy/XLShvCweOLZPrnMswIaDXQA==, + } + engines: { node: '>=12' } cpu: [ia32] os: [linux] requiresBuild: true optional: true /@esbuild/linux-loong64@0.17.14: - resolution: {integrity: sha512-vp15H+5NR6hubNgMluqqKza85HcGJgq7t6rMH7O3Y6ApiOWPkvW2AJfNojUQimfTp6OUrACUXfR4hmpcENXoMQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-vp15H+5NR6hubNgMluqqKza85HcGJgq7t6rMH7O3Y6ApiOWPkvW2AJfNojUQimfTp6OUrACUXfR4hmpcENXoMQ==, + } + engines: { node: '>=12' } cpu: [loong64] os: [linux] requiresBuild: true @@ -3306,24 +4122,33 @@ packages: optional: true /@esbuild/linux-loong64@0.18.20: - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==, + } + engines: { node: '>=12' } cpu: [loong64] os: [linux] requiresBuild: true optional: true /@esbuild/linux-loong64@0.19.3: - resolution: {integrity: sha512-qGTgjweER5xqweiWtUIDl9OKz338EQqCwbS9c2Bh5jgEH19xQ1yhgGPNesugmDFq+UUSDtWgZ264st26b3de8A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-qGTgjweER5xqweiWtUIDl9OKz338EQqCwbS9c2Bh5jgEH19xQ1yhgGPNesugmDFq+UUSDtWgZ264st26b3de8A==, + } + engines: { node: '>=12' } cpu: [loong64] os: [linux] requiresBuild: true optional: true /@esbuild/linux-mips64el@0.17.14: - resolution: {integrity: sha512-90TOdFV7N+fgi6c2+GO9ochEkmm9kBAKnuD5e08GQMgMINOdOFHuYLPQ91RYVrnWwQ5683sJKuLi9l4SsbJ7Hg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-90TOdFV7N+fgi6c2+GO9ochEkmm9kBAKnuD5e08GQMgMINOdOFHuYLPQ91RYVrnWwQ5683sJKuLi9l4SsbJ7Hg==, + } + engines: { node: '>=12' } cpu: [mips64el] os: [linux] requiresBuild: true @@ -3331,24 +4156,33 @@ packages: optional: true /@esbuild/linux-mips64el@0.18.20: - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==, + } + engines: { node: '>=12' } cpu: [mips64el] os: [linux] requiresBuild: true optional: true /@esbuild/linux-mips64el@0.19.3: - resolution: {integrity: sha512-gy1bFskwEyxVMFRNYSvBauDIWNggD6pyxUksc0MV9UOBD138dKTzr8XnM2R4mBsHwVzeuIH8X5JhmNs2Pzrx+A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-gy1bFskwEyxVMFRNYSvBauDIWNggD6pyxUksc0MV9UOBD138dKTzr8XnM2R4mBsHwVzeuIH8X5JhmNs2Pzrx+A==, + } + engines: { node: '>=12' } cpu: [mips64el] os: [linux] requiresBuild: true optional: true /@esbuild/linux-ppc64@0.17.14: - resolution: {integrity: sha512-NnBGeoqKkTugpBOBZZoktQQ1Yqb7aHKmHxsw43NddPB2YWLAlpb7THZIzsRsTr0Xw3nqiPxbA1H31ZMOG+VVPQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-NnBGeoqKkTugpBOBZZoktQQ1Yqb7aHKmHxsw43NddPB2YWLAlpb7THZIzsRsTr0Xw3nqiPxbA1H31ZMOG+VVPQ==, + } + engines: { node: '>=12' } cpu: [ppc64] os: [linux] requiresBuild: true @@ -3356,24 +4190,33 @@ packages: optional: true /@esbuild/linux-ppc64@0.18.20: - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==, + } + engines: { node: '>=12' } cpu: [ppc64] os: [linux] requiresBuild: true optional: true /@esbuild/linux-ppc64@0.19.3: - resolution: {integrity: sha512-UrYLFu62x1MmmIe85rpR3qou92wB9lEXluwMB/STDzPF9k8mi/9UvNsG07Tt9AqwPQXluMQ6bZbTzYt01+Ue5g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-UrYLFu62x1MmmIe85rpR3qou92wB9lEXluwMB/STDzPF9k8mi/9UvNsG07Tt9AqwPQXluMQ6bZbTzYt01+Ue5g==, + } + engines: { node: '>=12' } cpu: [ppc64] os: [linux] requiresBuild: true optional: true /@esbuild/linux-riscv64@0.17.14: - resolution: {integrity: sha512-0qdlKScLXA8MGVy21JUKvMzCYWovctuP8KKqhtE5A6IVPq4onxXhSuhwDd2g5sRCzNDlDjitc5sX31BzDoL5Fw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-0qdlKScLXA8MGVy21JUKvMzCYWovctuP8KKqhtE5A6IVPq4onxXhSuhwDd2g5sRCzNDlDjitc5sX31BzDoL5Fw==, + } + engines: { node: '>=12' } cpu: [riscv64] os: [linux] requiresBuild: true @@ -3381,24 +4224,33 @@ packages: optional: true /@esbuild/linux-riscv64@0.18.20: - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==, + } + engines: { node: '>=12' } cpu: [riscv64] os: [linux] requiresBuild: true optional: true /@esbuild/linux-riscv64@0.19.3: - resolution: {integrity: sha512-9E73TfyMCbE+1AwFOg3glnzZ5fBAFK4aawssvuMgCRqCYzE0ylVxxzjEfut8xjmKkR320BEoMui4o/t9KA96gA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-9E73TfyMCbE+1AwFOg3glnzZ5fBAFK4aawssvuMgCRqCYzE0ylVxxzjEfut8xjmKkR320BEoMui4o/t9KA96gA==, + } + engines: { node: '>=12' } cpu: [riscv64] os: [linux] requiresBuild: true optional: true /@esbuild/linux-s390x@0.17.14: - resolution: {integrity: sha512-Hdm2Jo1yaaOro4v3+6/zJk6ygCqIZuSDJHdHaf8nVH/tfOuoEX5Riv03Ka15LmQBYJObUTNS1UdyoMk0WUn9Ww==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Hdm2Jo1yaaOro4v3+6/zJk6ygCqIZuSDJHdHaf8nVH/tfOuoEX5Riv03Ka15LmQBYJObUTNS1UdyoMk0WUn9Ww==, + } + engines: { node: '>=12' } cpu: [s390x] os: [linux] requiresBuild: true @@ -3406,24 +4258,33 @@ packages: optional: true /@esbuild/linux-s390x@0.18.20: - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==, + } + engines: { node: '>=12' } cpu: [s390x] os: [linux] requiresBuild: true optional: true /@esbuild/linux-s390x@0.19.3: - resolution: {integrity: sha512-LlmsbuBdm1/D66TJ3HW6URY8wO6IlYHf+ChOUz8SUAjVTuaisfuwCOAgcxo3Zsu3BZGxmI7yt//yGOxV+lHcEA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-LlmsbuBdm1/D66TJ3HW6URY8wO6IlYHf+ChOUz8SUAjVTuaisfuwCOAgcxo3Zsu3BZGxmI7yt//yGOxV+lHcEA==, + } + engines: { node: '>=12' } cpu: [s390x] os: [linux] requiresBuild: true optional: true /@esbuild/linux-x64@0.17.14: - resolution: {integrity: sha512-8KHF17OstlK4DuzeF/KmSgzrTWQrkWj5boluiiq7kvJCiQVzUrmSkaBvcLB2UgHpKENO2i6BthPkmUhNDaJsVw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-8KHF17OstlK4DuzeF/KmSgzrTWQrkWj5boluiiq7kvJCiQVzUrmSkaBvcLB2UgHpKENO2i6BthPkmUhNDaJsVw==, + } + engines: { node: '>=12' } cpu: [x64] os: [linux] requiresBuild: true @@ -3431,24 +4292,33 @@ packages: optional: true /@esbuild/linux-x64@0.18.20: - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==, + } + engines: { node: '>=12' } cpu: [x64] os: [linux] requiresBuild: true optional: true /@esbuild/linux-x64@0.19.3: - resolution: {integrity: sha512-ogV0+GwEmvwg/8ZbsyfkYGaLACBQWDvO0Kkh8LKBGKj9Ru8VM39zssrnu9Sxn1wbapA2qNS6BiLdwJZGouyCwQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ogV0+GwEmvwg/8ZbsyfkYGaLACBQWDvO0Kkh8LKBGKj9Ru8VM39zssrnu9Sxn1wbapA2qNS6BiLdwJZGouyCwQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [linux] requiresBuild: true optional: true /@esbuild/netbsd-x64@0.17.14: - resolution: {integrity: sha512-nVwpqvb3yyXztxIT2+VsxJhB5GCgzPdk1n0HHSnchRAcxqKO6ghXwHhJnr0j/B+5FSyEqSxF4q03rbA2fKXtUQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nVwpqvb3yyXztxIT2+VsxJhB5GCgzPdk1n0HHSnchRAcxqKO6ghXwHhJnr0j/B+5FSyEqSxF4q03rbA2fKXtUQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [netbsd] requiresBuild: true @@ -3456,24 +4326,33 @@ packages: optional: true /@esbuild/netbsd-x64@0.18.20: - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==, + } + engines: { node: '>=12' } cpu: [x64] os: [netbsd] requiresBuild: true optional: true /@esbuild/netbsd-x64@0.19.3: - resolution: {integrity: sha512-o1jLNe4uzQv2DKXMlmEzf66Wd8MoIhLNO2nlQBHLtWyh2MitDG7sMpfCO3NTcoTMuqHjfufgUQDFRI5C+xsXQw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-o1jLNe4uzQv2DKXMlmEzf66Wd8MoIhLNO2nlQBHLtWyh2MitDG7sMpfCO3NTcoTMuqHjfufgUQDFRI5C+xsXQw==, + } + engines: { node: '>=12' } cpu: [x64] os: [netbsd] requiresBuild: true optional: true /@esbuild/openbsd-x64@0.17.14: - resolution: {integrity: sha512-1RZ7uQQ9zcy/GSAJL1xPdN7NDdOOtNEGiJalg/MOzeakZeTrgH/DoCkbq7TaPDiPhWqnDF+4bnydxRqQD7il6g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-1RZ7uQQ9zcy/GSAJL1xPdN7NDdOOtNEGiJalg/MOzeakZeTrgH/DoCkbq7TaPDiPhWqnDF+4bnydxRqQD7il6g==, + } + engines: { node: '>=12' } cpu: [x64] os: [openbsd] requiresBuild: true @@ -3481,24 +4360,33 @@ packages: optional: true /@esbuild/openbsd-x64@0.18.20: - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==, + } + engines: { node: '>=12' } cpu: [x64] os: [openbsd] requiresBuild: true optional: true /@esbuild/openbsd-x64@0.19.3: - resolution: {integrity: sha512-AZJCnr5CZgZOdhouLcfRdnk9Zv6HbaBxjcyhq0StNcvAdVZJSKIdOiPB9az2zc06ywl0ePYJz60CjdKsQacp5Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-AZJCnr5CZgZOdhouLcfRdnk9Zv6HbaBxjcyhq0StNcvAdVZJSKIdOiPB9az2zc06ywl0ePYJz60CjdKsQacp5Q==, + } + engines: { node: '>=12' } cpu: [x64] os: [openbsd] requiresBuild: true optional: true /@esbuild/sunos-x64@0.17.14: - resolution: {integrity: sha512-nqMjDsFwv7vp7msrwWRysnM38Sd44PKmW8EzV01YzDBTcTWUpczQg6mGao9VLicXSgW/iookNK6AxeogNVNDZA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nqMjDsFwv7vp7msrwWRysnM38Sd44PKmW8EzV01YzDBTcTWUpczQg6mGao9VLicXSgW/iookNK6AxeogNVNDZA==, + } + engines: { node: '>=12' } cpu: [x64] os: [sunos] requiresBuild: true @@ -3506,24 +4394,33 @@ packages: optional: true /@esbuild/sunos-x64@0.18.20: - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [sunos] requiresBuild: true optional: true /@esbuild/sunos-x64@0.19.3: - resolution: {integrity: sha512-Acsujgeqg9InR4glTRvLKGZ+1HMtDm94ehTIHKhJjFpgVzZG9/pIcWW/HA/DoMfEyXmANLDuDZ2sNrWcjq1lxw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Acsujgeqg9InR4glTRvLKGZ+1HMtDm94ehTIHKhJjFpgVzZG9/pIcWW/HA/DoMfEyXmANLDuDZ2sNrWcjq1lxw==, + } + engines: { node: '>=12' } cpu: [x64] os: [sunos] requiresBuild: true optional: true /@esbuild/win32-arm64@0.17.14: - resolution: {integrity: sha512-xrD0mccTKRBBIotrITV7WVQAwNJ5+1va6L0H9zN92v2yEdjfAN7864cUaZwJS7JPEs53bDTzKFbfqVlG2HhyKQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-xrD0mccTKRBBIotrITV7WVQAwNJ5+1va6L0H9zN92v2yEdjfAN7864cUaZwJS7JPEs53bDTzKFbfqVlG2HhyKQ==, + } + engines: { node: '>=12' } cpu: [arm64] os: [win32] requiresBuild: true @@ -3531,24 +4428,33 @@ packages: optional: true /@esbuild/win32-arm64@0.18.20: - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==, + } + engines: { node: '>=12' } cpu: [arm64] os: [win32] requiresBuild: true optional: true /@esbuild/win32-arm64@0.19.3: - resolution: {integrity: sha512-FSrAfjVVy7TifFgYgliiJOyYynhQmqgPj15pzLyJk8BUsnlWNwP/IAy6GAiB1LqtoivowRgidZsfpoYLZH586A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FSrAfjVVy7TifFgYgliiJOyYynhQmqgPj15pzLyJk8BUsnlWNwP/IAy6GAiB1LqtoivowRgidZsfpoYLZH586A==, + } + engines: { node: '>=12' } cpu: [arm64] os: [win32] requiresBuild: true optional: true /@esbuild/win32-ia32@0.17.14: - resolution: {integrity: sha512-nXpkz9bbJrLLyUTYtRotSS3t5b+FOuljg8LgLdINWFs3FfqZMtbnBCZFUmBzQPyxqU87F8Av+3Nco/M3hEcu1w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nXpkz9bbJrLLyUTYtRotSS3t5b+FOuljg8LgLdINWFs3FfqZMtbnBCZFUmBzQPyxqU87F8Av+3Nco/M3hEcu1w==, + } + engines: { node: '>=12' } cpu: [ia32] os: [win32] requiresBuild: true @@ -3556,24 +4462,33 @@ packages: optional: true /@esbuild/win32-ia32@0.18.20: - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==, + } + engines: { node: '>=12' } cpu: [ia32] os: [win32] requiresBuild: true optional: true /@esbuild/win32-ia32@0.19.3: - resolution: {integrity: sha512-xTScXYi12xLOWZ/sc5RBmMN99BcXp/eEf7scUC0oeiRoiT5Vvo9AycuqCp+xdpDyAU+LkrCqEpUS9fCSZF8J3Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-xTScXYi12xLOWZ/sc5RBmMN99BcXp/eEf7scUC0oeiRoiT5Vvo9AycuqCp+xdpDyAU+LkrCqEpUS9fCSZF8J3Q==, + } + engines: { node: '>=12' } cpu: [ia32] os: [win32] requiresBuild: true optional: true /@esbuild/win32-x64@0.17.14: - resolution: {integrity: sha512-gPQmsi2DKTaEgG14hc3CHXHp62k8g6qr0Pas+I4lUxRMugGSATh/Bi8Dgusoz9IQ0IfdrvLpco6kujEIBoaogA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-gPQmsi2DKTaEgG14hc3CHXHp62k8g6qr0Pas+I4lUxRMugGSATh/Bi8Dgusoz9IQ0IfdrvLpco6kujEIBoaogA==, + } + engines: { node: '>=12' } cpu: [x64] os: [win32] requiresBuild: true @@ -3581,24 +4496,33 @@ packages: optional: true /@esbuild/win32-x64@0.18.20: - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [win32] requiresBuild: true optional: true /@esbuild/win32-x64@0.19.3: - resolution: {integrity: sha512-FbUN+0ZRXsypPyWE2IwIkVjDkDnJoMJARWOcFZn4KPPli+QnKqF0z1anvfaYe3ev5HFCpRDLLBDHyOALLppWHw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FbUN+0ZRXsypPyWE2IwIkVjDkDnJoMJARWOcFZn4KPPli+QnKqF0z1anvfaYe3ev5HFCpRDLLBDHyOALLppWHw==, + } + engines: { node: '>=12' } cpu: [x64] os: [win32] requiresBuild: true optional: true /@eslint-community/eslint-utils@4.3.0(eslint@8.46.0): - resolution: {integrity: sha512-v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: @@ -3606,17 +4530,26 @@ packages: eslint-visitor-keys: 3.3.0 /@eslint-community/regexpp@4.4.1: - resolution: {integrity: sha512-BISJ6ZE4xQsuL/FmsyRaiffpq977bMlsKfGHTQrOGFErfByxIe6iZTxPf/00Zon9b9a7iUykfQwejN3s2ZW/Bw==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + resolution: + { + integrity: sha512-BISJ6ZE4xQsuL/FmsyRaiffpq977bMlsKfGHTQrOGFErfByxIe6iZTxPf/00Zon9b9a7iUykfQwejN3s2ZW/Bw==, + } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } dev: true /@eslint-community/regexpp@4.8.1: - resolution: {integrity: sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + resolution: + { + integrity: sha512-PWiOzLIUAjN/w5K17PoF4n6sKBw0gqLHPhywmYHP4t1VFQQVYeb1yWsJwnMVEMl3tUHME7X/SJPZLmtG7XBDxQ==, + } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } /@eslint/eslintrc@2.1.2: - resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: ajv: 6.12.6 debug: 4.3.4(supports-color@8.1.1) @@ -3631,21 +4564,33 @@ packages: - supports-color /@eslint/js@8.49.0: - resolution: {integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } /@floating-ui/core@1.0.2: - resolution: {integrity: sha512-Skfy0YS3NJ5nV9us0uuPN0HDk1Q4edljaOhRBJGDWs9EBa7ZVMYBHRFlhLvvmwEoaIM9BlH6QJFn9/uZg0bACg==} + resolution: + { + integrity: sha512-Skfy0YS3NJ5nV9us0uuPN0HDk1Q4edljaOhRBJGDWs9EBa7ZVMYBHRFlhLvvmwEoaIM9BlH6QJFn9/uZg0bACg==, + } dev: false /@floating-ui/dom@1.0.6: - resolution: {integrity: sha512-kt/tg1oip9OAH1xjCTcx1OpcUpu9rjDw3GKJ/rEhUqhO7QyJWfrHU0DpLTNsH67+JyFL5Kv9X1utsXwKFVtyEQ==} + resolution: + { + integrity: sha512-kt/tg1oip9OAH1xjCTcx1OpcUpu9rjDw3GKJ/rEhUqhO7QyJWfrHU0DpLTNsH67+JyFL5Kv9X1utsXwKFVtyEQ==, + } dependencies: '@floating-ui/core': 1.0.2 dev: false /@floating-ui/react-dom-interactions@0.10.3(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-UEHqdnzyoiWNU5az/tAljr9iXFzN18DcvpMqW+/cXz4FEhDEB1ogLtWldOWCujLerPBnSRocADALafelOReMpw==} + resolution: + { + integrity: sha512-UEHqdnzyoiWNU5az/tAljr9iXFzN18DcvpMqW+/cXz4FEhDEB1ogLtWldOWCujLerPBnSRocADALafelOReMpw==, + } peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -3659,7 +4604,10 @@ packages: dev: false /@floating-ui/react-dom@1.0.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-UW0t1Gi8ikbDRr8cQPVcqIDMBwUEENe5V4wlHWdrJ5egFnRQFBV9JirauTBFI6S8sM1qFUC1i+qa3g87E6CLTw==} + resolution: + { + integrity: sha512-UW0t1Gi8ikbDRr8cQPVcqIDMBwUEENe5V4wlHWdrJ5egFnRQFBV9JirauTBFI6S8sM1qFUC1i+qa3g87E6CLTw==, + } peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -3670,8 +4618,11 @@ packages: dev: false /@headlessui/react@1.7.13(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-9n+EQKRtD9266xIHXdY5MfiXPDfYwl7zBM7KOx2Ae3Gdgxy8QML1FkCMjq6AsOf0l6N9uvI4HcFtuFlenaldKg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-9n+EQKRtD9266xIHXdY5MfiXPDfYwl7zBM7KOx2Ae3Gdgxy8QML1FkCMjq6AsOf0l6N9uvI4HcFtuFlenaldKg==, + } + engines: { node: '>=10' } peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 @@ -3682,7 +4633,10 @@ packages: dev: false /@heroicons/react@2.0.16(react@18.2.0): - resolution: {integrity: sha512-x89rFxH3SRdYaA+JCXwfe+RkE1SFTo9GcOkZettHer71Y3T7V+ogKmfw5CjTazgS3d0ClJ7p1NA+SP7VQLQcLw==} + resolution: + { + integrity: sha512-x89rFxH3SRdYaA+JCXwfe+RkE1SFTo9GcOkZettHer71Y3T7V+ogKmfw5CjTazgS3d0ClJ7p1NA+SP7VQLQcLw==, + } peerDependencies: react: '>= 16' dependencies: @@ -3690,7 +4644,10 @@ packages: dev: false /@hokify/axios-rate-limit@2.0.5(axios@0.27.2): - resolution: {integrity: sha512-lVfXaO7GINqP5QikcIHvmdbbNpJobScb9jA4VMrzYhUMi6nHEtewG1kG8Gt+O/3filUPzQ6rOJRJ/yneM9vf1g==} + resolution: + { + integrity: sha512-lVfXaO7GINqP5QikcIHvmdbbNpJobScb9jA4VMrzYhUMi6nHEtewG1kG8Gt+O/3filUPzQ6rOJRJ/yneM9vf1g==, + } peerDependencies: axios: '*' dependencies: @@ -3698,7 +4655,10 @@ packages: dev: false /@hookform/resolvers@3.0.0(react-hook-form@7.43.7): - resolution: {integrity: sha512-SQPefakODpyq25b/phHXDKCdRrEfPcCXV7B4nAa139wE1DxufYbbNAjeo0T04ZXBokRxZ+wD8iA1kkVMa3QwjQ==} + resolution: + { + integrity: sha512-SQPefakODpyq25b/phHXDKCdRrEfPcCXV7B4nAa139wE1DxufYbbNAjeo0T04ZXBokRxZ+wD8iA1kkVMa3QwjQ==, + } peerDependencies: react-hook-form: ^7.0.0 dependencies: @@ -3706,8 +4666,11 @@ packages: dev: false /@humanwhocodes/config-array@0.11.11: - resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} - engines: {node: '>=10.10.0'} + resolution: + { + integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==, + } + engines: { node: '>=10.10.0' } dependencies: '@humanwhocodes/object-schema': 1.2.1 debug: 4.3.4(supports-color@8.1.1) @@ -3716,20 +4679,32 @@ packages: - supports-color /@humanwhocodes/module-importer@1.0.1: - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} + resolution: + { + integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, + } + engines: { node: '>=12.22' } /@humanwhocodes/object-schema@1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + resolution: + { + integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, + } /@hutson/parse-repository-url@3.0.2: - resolution: {integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==, + } + engines: { node: '>=6.9.0' } dev: true /@istanbuljs/load-nyc-config@1.1.0: - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, + } + engines: { node: '>=8' } dependencies: camelcase: 5.3.1 find-up: 4.1.0 @@ -3738,12 +4713,18 @@ packages: resolve-from: 5.0.0 /@istanbuljs/schema@0.1.3: - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, + } + engines: { node: '>=8' } /@jest/console@29.4.3: - resolution: {integrity: sha512-W/o/34+wQuXlgqlPYTansOSiBnuxrTv61dEVkA6HNmpcgHLUjfaUbdqt6oVvOzaawwo9IdW9QOtMgQ1ScSZC4A==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-W/o/34+wQuXlgqlPYTansOSiBnuxrTv61dEVkA6HNmpcgHLUjfaUbdqt6oVvOzaawwo9IdW9QOtMgQ1ScSZC4A==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.5.0 '@types/node': 18.15.11 @@ -3753,8 +4734,11 @@ packages: slash: 3.0.0 /@jest/core@29.4.3(ts-node@10.9.1): - resolution: {integrity: sha512-56QvBq60fS4SPZCuM7T+7scNrkGIe7Mr6PVIXUpu48ouvRaWOFqRPV91eifvFM0ay2HmfswXiGf97NGUN5KofQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-56QvBq60fS4SPZCuM7T+7scNrkGIe7Mr6PVIXUpu48ouvRaWOFqRPV91eifvFM0ay2HmfswXiGf97NGUN5KofQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -3795,15 +4779,21 @@ packages: dev: true /@jest/create-cache-key-function@27.5.1: - resolution: {integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dependencies: '@jest/types': 27.5.1 dev: true /@jest/environment@29.4.3: - resolution: {integrity: sha512-dq5S6408IxIa+lr54zeqce+QgI+CJT4nmmA+1yzFgtcsGK8c/EyiUb9XQOgz3BMKrRDfKseeOaxj2eO8LlD3lA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-dq5S6408IxIa+lr54zeqce+QgI+CJT4nmmA+1yzFgtcsGK8c/EyiUb9XQOgz3BMKrRDfKseeOaxj2eO8LlD3lA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/fake-timers': 29.4.3 '@jest/types': 29.4.3 @@ -3811,14 +4801,20 @@ packages: jest-mock: 29.4.3 /@jest/expect-utils@29.5.0: - resolution: {integrity: sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-fmKzsidoXQT2KwnrwE0SQq3uj8Z763vzR8LnLBwC2qYWEFpjX8daRsk6rHUM1QvNlEW/UJXNXm59ztmJJWs2Mg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: jest-get-type: 29.4.3 /@jest/expect@29.4.3: - resolution: {integrity: sha512-iktRU/YsxEtumI9zsPctYUk7ptpC+AVLLk1Ax3AsA4g1C+8OOnKDkIQBDHtD5hA/+VtgMd5AWI5gNlcAlt2vxQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-iktRU/YsxEtumI9zsPctYUk7ptpC+AVLLk1Ax3AsA4g1C+8OOnKDkIQBDHtD5hA/+VtgMd5AWI5gNlcAlt2vxQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: expect: 29.5.0 jest-snapshot: 29.4.3 @@ -3826,8 +4822,11 @@ packages: - supports-color /@jest/fake-timers@29.4.3: - resolution: {integrity: sha512-4Hote2MGcCTWSD2gwl0dwbCpBRHhE6olYEuTj8FMowdg3oQWNKr2YuxenPQYZ7+PfqPY1k98wKDU4Z+Hvd4Tiw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-4Hote2MGcCTWSD2gwl0dwbCpBRHhE6olYEuTj8FMowdg3oQWNKr2YuxenPQYZ7+PfqPY1k98wKDU4Z+Hvd4Tiw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.4.3 '@sinonjs/fake-timers': 10.0.2 @@ -3837,8 +4836,11 @@ packages: jest-util: 29.5.0 /@jest/globals@29.4.3: - resolution: {integrity: sha512-8BQ/5EzfOLG7AaMcDh7yFCbfRLtsc+09E1RQmRBI4D6QQk4m6NSK/MXo+3bJrBN0yU8A2/VIcqhvsOLFmziioA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-8BQ/5EzfOLG7AaMcDh7yFCbfRLtsc+09E1RQmRBI4D6QQk4m6NSK/MXo+3bJrBN0yU8A2/VIcqhvsOLFmziioA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/environment': 29.4.3 '@jest/expect': 29.4.3 @@ -3848,8 +4850,11 @@ packages: - supports-color /@jest/reporters@29.4.3: - resolution: {integrity: sha512-sr2I7BmOjJhyqj9ANC6CTLsL4emMoka7HkQpcoMRlhCbQJjz2zsRzw0BDPiPyEFDXAbxKgGFYuQZiSJ1Y6YoTg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-sr2I7BmOjJhyqj9ANC6CTLsL4emMoka7HkQpcoMRlhCbQJjz2zsRzw0BDPiPyEFDXAbxKgGFYuQZiSJ1Y6YoTg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -3884,22 +4889,31 @@ packages: - supports-color /@jest/schemas@29.4.3: - resolution: {integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@sinclair/typebox': 0.25.24 /@jest/source-map@29.4.3: - resolution: {integrity: sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-qyt/mb6rLyd9j1jUts4EQncvS6Yy3PM9HghnNv86QBlV+zdL2inCdK1tuVlL+J+lpiw2BI67qXOrX3UurBqQ1w==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jridgewell/trace-mapping': 0.3.18 callsites: 3.1.0 graceful-fs: 4.2.11 /@jest/test-result@29.4.3: - resolution: {integrity: sha512-Oi4u9NfBolMq9MASPwuWTlC5WvmNRwI4S8YrQg5R5Gi47DYlBe3sh7ILTqi/LGrK1XUE4XY9KZcQJTH1WJCLLA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-Oi4u9NfBolMq9MASPwuWTlC5WvmNRwI4S8YrQg5R5Gi47DYlBe3sh7ILTqi/LGrK1XUE4XY9KZcQJTH1WJCLLA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/console': 29.4.3 '@jest/types': 29.5.0 @@ -3907,8 +4921,11 @@ packages: collect-v8-coverage: 1.0.1 /@jest/test-sequencer@29.4.3: - resolution: {integrity: sha512-yi/t2nES4GB4G0mjLc0RInCq/cNr9dNwJxcGg8sslajua5Kb4kmozAc+qPLzplhBgfw1vLItbjyHzUN92UXicw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-yi/t2nES4GB4G0mjLc0RInCq/cNr9dNwJxcGg8sslajua5Kb4kmozAc+qPLzplhBgfw1vLItbjyHzUN92UXicw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/test-result': 29.4.3 graceful-fs: 4.2.11 @@ -3916,8 +4933,11 @@ packages: slash: 3.0.0 /@jest/transform@26.6.2: - resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==, + } + engines: { node: '>= 10.14.2' } dependencies: '@babel/core': 7.22.20 '@jest/types': 26.6.2 @@ -3939,8 +4959,11 @@ packages: dev: false /@jest/transform@29.4.3: - resolution: {integrity: sha512-8u0+fBGWolDshsFgPQJESkDa72da/EVwvL+II0trN2DR66wMwiQ9/CihaGfHdlLGFzbBZwMykFtxuwFdZqlKwg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-8u0+fBGWolDshsFgPQJESkDa72da/EVwvL+II0trN2DR66wMwiQ9/CihaGfHdlLGFzbBZwMykFtxuwFdZqlKwg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@babel/core': 7.20.5 '@jest/types': 29.4.3 @@ -3961,8 +4984,11 @@ packages: - supports-color /@jest/types@26.6.2: - resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==, + } + engines: { node: '>= 10.14.2' } dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 @@ -3972,8 +4998,11 @@ packages: dev: false /@jest/types@27.5.1: - resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 @@ -3983,8 +5012,11 @@ packages: dev: true /@jest/types@29.4.3: - resolution: {integrity: sha512-bPYfw8V65v17m2Od1cv44FH+SiKW7w2Xu7trhcdTLUmSv85rfKsP+qXSjO4KGJr4dtPSzl/gvslZBXctf1qGEA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-bPYfw8V65v17m2Od1cv44FH+SiKW7w2Xu7trhcdTLUmSv85rfKsP+qXSjO4KGJr4dtPSzl/gvslZBXctf1qGEA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/schemas': 29.4.3 '@types/istanbul-lib-coverage': 2.0.4 @@ -3994,8 +5026,11 @@ packages: chalk: 4.1.2 /@jest/types@29.5.0: - resolution: {integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/schemas': 29.4.3 '@types/istanbul-lib-coverage': 2.0.4 @@ -4005,70 +5040,106 @@ packages: chalk: 4.1.2 /@jridgewell/gen-mapping@0.1.1: - resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==, + } + engines: { node: '>=6.0.0' } dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 /@jridgewell/gen-mapping@0.3.2: - resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==, + } + engines: { node: '>=6.0.0' } dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 '@jridgewell/trace-mapping': 0.3.17 /@jridgewell/gen-mapping@0.3.3: - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, + } + engines: { node: '>=6.0.0' } dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.18 /@jridgewell/resolve-uri@3.1.0: - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, + } + engines: { node: '>=6.0.0' } /@jridgewell/set-array@1.1.2: - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, + } + engines: { node: '>=6.0.0' } /@jridgewell/source-map@0.3.3: - resolution: {integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==} + resolution: + { + integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg==, + } dependencies: '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.18 dev: true /@jridgewell/sourcemap-codec@1.4.14: - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + resolution: + { + integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, + } /@jridgewell/sourcemap-codec@1.4.15: - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + resolution: + { + integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, + } /@jridgewell/trace-mapping@0.3.17: - resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} + resolution: + { + integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==, + } dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 /@jridgewell/trace-mapping@0.3.18: - resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} + resolution: + { + integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==, + } dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 /@jridgewell/trace-mapping@0.3.9: - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + resolution: + { + integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, + } dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.15 /@jscutlery/semver@2.30.1(@nrwl/devkit@15.9.7): - resolution: {integrity: sha512-Adnlu/kEOaikxNJLi3Ll4UfgEW4VG0dvf5zm7Ere7vT/udHhPs6CTO6B7PCFLzKsLgM0vqSrVk/nKYFWri83Ww==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-Adnlu/kEOaikxNJLi3Ll4UfgEW4VG0dvf5zm7Ere7vT/udHhPs6CTO6B7PCFLzKsLgM0vqSrVk/nKYFWri83Ww==, + } + engines: { node: '>=12.0.0' } peerDependencies: '@nrwl/devkit': ^15.0.0 dependencies: @@ -4082,14 +5153,20 @@ packages: dev: true /@jsdoc/salty@0.2.4: - resolution: {integrity: sha512-HRBmslXHM6kpZOfGf0o41NUlGYGER0NoUBcT2Sik4rxzAN7f7+si7ad57SFSFpftvaMVnUaY7YlJuv3v5G80ZA==} - engines: {node: '>=v12.0.0'} + resolution: + { + integrity: sha512-HRBmslXHM6kpZOfGf0o41NUlGYGER0NoUBcT2Sik4rxzAN7f7+si7ad57SFSFpftvaMVnUaY7YlJuv3v5G80ZA==, + } + engines: { node: '>=v12.0.0' } dependencies: lodash: 4.17.21 dev: true /@mantine/core@5.8.0(@emotion/react@11.11.1)(@mantine/hooks@5.8.0)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-GGQJqVXI3cbY5OzFrg3S3bJUypPktJIFeb2hI65qskFJViL6F8dUynRuKZfi8B4GHteG86zqiZCUo0cUVRTiaQ==} + resolution: + { + integrity: sha512-GGQJqVXI3cbY5OzFrg3S3bJUypPktJIFeb2hI65qskFJViL6F8dUynRuKZfi8B4GHteG86zqiZCUo0cUVRTiaQ==, + } peerDependencies: '@mantine/hooks': 5.8.0 react: '>=16.8.0' @@ -4109,7 +5186,10 @@ packages: dev: false /@mantine/dates@5.8.0(@mantine/core@5.8.0)(@mantine/hooks@5.8.0)(dayjs@1.11.6)(react@18.2.0): - resolution: {integrity: sha512-w8pc/cCUXiITBnAi9hy3My8ML9/Y/ANDTHkJpPsiMLMSt+JbC1eqcytXMv3CGGLhWdkwRy5E43J7yv1rAs89fQ==} + resolution: + { + integrity: sha512-w8pc/cCUXiITBnAi9hy3My8ML9/Y/ANDTHkJpPsiMLMSt+JbC1eqcytXMv3CGGLhWdkwRy5E43J7yv1rAs89fQ==, + } peerDependencies: '@mantine/core': 5.8.0 '@mantine/hooks': 5.8.0 @@ -4124,7 +5204,10 @@ packages: dev: false /@mantine/dropzone@5.8.0(@mantine/core@5.8.0)(@mantine/hooks@5.8.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-PayHH94X+K36AHYOSEgMjsvwEO0CQ2I1hqJVRtq2iOTmjbBg488nifvqR6b2Bymz/c0OWXAqFJGiOWs7vwAnYQ==} + resolution: + { + integrity: sha512-PayHH94X+K36AHYOSEgMjsvwEO0CQ2I1hqJVRtq2iOTmjbBg488nifvqR6b2Bymz/c0OWXAqFJGiOWs7vwAnYQ==, + } peerDependencies: '@mantine/core': 5.8.0 '@mantine/hooks': 5.8.0 @@ -4140,7 +5223,10 @@ packages: dev: false /@mantine/form@5.9.2(react@18.2.0): - resolution: {integrity: sha512-FXIaKI91oRhgpBV0JNSo+b1e8NzzwXRhKeGGRMswddEOZO9C5htnsaq+5dfeEY2xgJup2nFpz9e6PYz2XrKcuw==} + resolution: + { + integrity: sha512-FXIaKI91oRhgpBV0JNSo+b1e8NzzwXRhKeGGRMswddEOZO9C5htnsaq+5dfeEY2xgJup2nFpz9e6PYz2XrKcuw==, + } peerDependencies: react: '>=16.8.0' dependencies: @@ -4150,7 +5236,10 @@ packages: dev: false /@mantine/hooks@5.8.0(react@18.2.0): - resolution: {integrity: sha512-838TKK0jTvU9sy7OcbDYc2P9fXyyca4HQxKRP2kRJnsnL6ZAHWFlFosGIcN97FiWh+8uQA7jCoD8jyrUjrFDXg==} + resolution: + { + integrity: sha512-838TKK0jTvU9sy7OcbDYc2P9fXyyca4HQxKRP2kRJnsnL6ZAHWFlFosGIcN97FiWh+8uQA7jCoD8jyrUjrFDXg==, + } peerDependencies: react: '>=16.8.0' dependencies: @@ -4158,7 +5247,10 @@ packages: dev: false /@mantine/modals@5.8.0(@mantine/core@5.8.0)(@mantine/hooks@5.8.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-AUug+6OS+baJVKaIop2oukC7E2AUv8dR9gpD9yi4c3bBKBP4GpSl91i/BVMWVpd3Zgt4H1PitZLh074fsh4fOA==} + resolution: + { + integrity: sha512-AUug+6OS+baJVKaIop2oukC7E2AUv8dR9gpD9yi4c3bBKBP4GpSl91i/BVMWVpd3Zgt4H1PitZLh074fsh4fOA==, + } peerDependencies: '@mantine/core': 5.8.0 '@mantine/hooks': 5.8.0 @@ -4173,7 +5265,10 @@ packages: dev: false /@mantine/notifications@5.8.0(@mantine/core@5.8.0)(@mantine/hooks@5.8.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-F5dDPwIgX/Uqt5zaI6VgBRAFeCs4dcxUPR2UkiMLmdcPHFw7y5GPO9MUmKDyLUxUyPRCWBYmKoObNBaAHKLfcw==} + resolution: + { + integrity: sha512-F5dDPwIgX/Uqt5zaI6VgBRAFeCs4dcxUPR2UkiMLmdcPHFw7y5GPO9MUmKDyLUxUyPRCWBYmKoObNBaAHKLfcw==, + } peerDependencies: '@mantine/core': 5.8.0 '@mantine/hooks': 5.8.0 @@ -4189,7 +5284,10 @@ packages: dev: false /@mantine/prism@5.8.3(@mantine/core@5.8.0)(@mantine/hooks@5.8.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-YiIqaOqMR89vLzINbt7HAvczWMeMjyqnQeJlSarbaHGtNeoSVV/SerSlVzPFqL43DrVkAmB6hDKWIo47Ksf8KA==} + resolution: + { + integrity: sha512-YiIqaOqMR89vLzINbt7HAvczWMeMjyqnQeJlSarbaHGtNeoSVV/SerSlVzPFqL43DrVkAmB6hDKWIo47Ksf8KA==, + } peerDependencies: '@mantine/core': 5.8.3 '@mantine/hooks': 5.8.3 @@ -4205,7 +5303,10 @@ packages: dev: false /@mantine/rte@5.8.0(@mantine/core@5.8.0)(@mantine/hooks@5.8.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-DvP8kXXWHVG17AS4gJHbzQlW+XV88kisPT/WjAr0FrS1FW9szQ6pmrFcELoj4Oc/lqf+oUxpbbamRQ8itHlMOw==} + resolution: + { + integrity: sha512-DvP8kXXWHVG17AS4gJHbzQlW+XV88kisPT/WjAr0FrS1FW9szQ6pmrFcELoj4Oc/lqf+oUxpbbamRQ8itHlMOw==, + } peerDependencies: '@mantine/core': 5.8.0 '@mantine/hooks': 5.8.0 @@ -4222,7 +5323,10 @@ packages: dev: false /@mantine/styles@5.8.0(@emotion/react@11.11.1)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-sCKPEJpiSF97ISrbJ6tr9GdYCLoX0vWA0aKWc5GGnpZLVTr5WlqMdqY7u0J00aAfjPHqeuN3hIrnEs7bn0qmVg==} + resolution: + { + integrity: sha512-sCKPEJpiSF97ISrbJ6tr9GdYCLoX0vWA0aKWc5GGnpZLVTr5WlqMdqY7u0J00aAfjPHqeuN3hIrnEs7bn0qmVg==, + } peerDependencies: '@emotion/react': '>=11.9.0' react: '>=16.8.0' @@ -4236,7 +5340,10 @@ packages: dev: false /@mantine/utils@5.8.0(react@18.2.0): - resolution: {integrity: sha512-gVE4U3apoE53MUWgKqst9H0iWgurzBccZNSSGRv3kD62vAFcI1JJhxxuW7X271bc9IMhKjgezEH14ApH1jlwCA==} + resolution: + { + integrity: sha512-gVE4U3apoE53MUWgKqst9H0iWgurzBccZNSSGRv3kD62vAFcI1JJhxxuW7X271bc9IMhKjgezEH14ApH1jlwCA==, + } peerDependencies: react: '>=16.8.0' dependencies: @@ -4244,7 +5351,10 @@ packages: dev: false /@mantine/utils@5.8.3(react@18.2.0): - resolution: {integrity: sha512-MprJbMh/z3TbC8yPF2PQftitRwl58w7hvhp7O9fT+9jrvJHKM8V7r15iHMwBw2jgX6zmlksstO7QfhENc0vMHQ==} + resolution: + { + integrity: sha512-MprJbMh/z3TbC8yPF2PQftitRwl58w7hvhp7O9fT+9jrvJHKM8V7r15iHMwBw2jgX6zmlksstO7QfhENc0vMHQ==, + } peerDependencies: react: '>=16.8.0' dependencies: @@ -4252,7 +5362,10 @@ packages: dev: false /@mapbox/node-pre-gyp@1.0.10: - resolution: {integrity: sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==} + resolution: + { + integrity: sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==, + } hasBin: true dependencies: detect-libc: 2.0.1 @@ -4270,8 +5383,11 @@ packages: dev: true /@mole-inc/bin-wrapper@8.0.1: - resolution: {integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: bin-check: 4.1.0 bin-version-check: 5.0.0 @@ -4284,107 +5400,152 @@ packages: dev: true /@next/env@13.3.0: - resolution: {integrity: sha512-AjppRV4uG3No7L1plinoTQETH+j2F10TEnrMfzbTUYwze5sBUPveeeBAPZPm8OkJZ1epq9OyYKhZrvbD6/9HCQ==} + resolution: + { + integrity: sha512-AjppRV4uG3No7L1plinoTQETH+j2F10TEnrMfzbTUYwze5sBUPveeeBAPZPm8OkJZ1epq9OyYKhZrvbD6/9HCQ==, + } /@next/eslint-plugin-next@13.2.4: - resolution: {integrity: sha512-ck1lI+7r1mMJpqLNa3LJ5pxCfOB1lfJncKmRJeJxcJqcngaFwylreLP7da6Rrjr6u2gVRTfmnkSkjc80IiQCwQ==} + resolution: + { + integrity: sha512-ck1lI+7r1mMJpqLNa3LJ5pxCfOB1lfJncKmRJeJxcJqcngaFwylreLP7da6Rrjr6u2gVRTfmnkSkjc80IiQCwQ==, + } dependencies: glob: 7.1.7 dev: true /@next/swc-darwin-arm64@13.3.0: - resolution: {integrity: sha512-DmIQCNq6JtccLPPBzf0dgh2vzMWt5wjxbP71pCi5EWpWYE3MsP6FcRXi4MlAmFNDQOfcFXR2r7kBeG1LpZUh1w==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-DmIQCNq6JtccLPPBzf0dgh2vzMWt5wjxbP71pCi5EWpWYE3MsP6FcRXi4MlAmFNDQOfcFXR2r7kBeG1LpZUh1w==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [darwin] requiresBuild: true optional: true /@next/swc-darwin-x64@13.3.0: - resolution: {integrity: sha512-oQoqFa88OGgwnYlnAGHVct618FRI/749se0N3S8t9Bzdv5CRbscnO0RcX901+YnNK4Q6yeiizfgO3b7kogtsZg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-oQoqFa88OGgwnYlnAGHVct618FRI/749se0N3S8t9Bzdv5CRbscnO0RcX901+YnNK4Q6yeiizfgO3b7kogtsZg==, + } + engines: { node: '>= 10' } cpu: [x64] os: [darwin] requiresBuild: true optional: true /@next/swc-linux-arm64-gnu@13.3.0: - resolution: {integrity: sha512-Wzz2p/WqAJUqTVoLo6H18WMeAXo3i+9DkPDae4oQG8LMloJ3if4NEZTnOnTUlro6cq+S/W4pTGa97nWTrOjbGw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-Wzz2p/WqAJUqTVoLo6H18WMeAXo3i+9DkPDae4oQG8LMloJ3if4NEZTnOnTUlro6cq+S/W4pTGa97nWTrOjbGw==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [linux] requiresBuild: true optional: true /@next/swc-linux-arm64-musl@13.3.0: - resolution: {integrity: sha512-xPVrIQOQo9WXJYgmoTlMnAD/HlR/1e1ZIWGbwIzEirXBVBqMARUulBEIKdC19zuvoJ477qZJgBDCKtKEykCpyQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-xPVrIQOQo9WXJYgmoTlMnAD/HlR/1e1ZIWGbwIzEirXBVBqMARUulBEIKdC19zuvoJ477qZJgBDCKtKEykCpyQ==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [linux] requiresBuild: true optional: true /@next/swc-linux-x64-gnu@13.3.0: - resolution: {integrity: sha512-jOFlpGuPD7W2tuXVJP4wt9a3cpNxWAPcloq5EfMJRiXsBBOjLVFZA7boXYxEBzSVgUiVVr1V9T0HFM7pULJ1qA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-jOFlpGuPD7W2tuXVJP4wt9a3cpNxWAPcloq5EfMJRiXsBBOjLVFZA7boXYxEBzSVgUiVVr1V9T0HFM7pULJ1qA==, + } + engines: { node: '>= 10' } cpu: [x64] os: [linux] requiresBuild: true optional: true /@next/swc-linux-x64-musl@13.3.0: - resolution: {integrity: sha512-2OwKlzaBgmuet9XYHc3KwsEilzb04F540rlRXkAcjMHL7eCxB7uZIGtsVvKOnQLvC/elrUegwSw1+5f7WmfyOw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-2OwKlzaBgmuet9XYHc3KwsEilzb04F540rlRXkAcjMHL7eCxB7uZIGtsVvKOnQLvC/elrUegwSw1+5f7WmfyOw==, + } + engines: { node: '>= 10' } cpu: [x64] os: [linux] requiresBuild: true optional: true /@next/swc-win32-arm64-msvc@13.3.0: - resolution: {integrity: sha512-OeHiA6YEvndxT46g+rzFK/MQTfftKxJmzslERMu9LDdC6Kez0bdrgEYed5eXFK2Z1viKZJCGRlhd06rBusyztA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-OeHiA6YEvndxT46g+rzFK/MQTfftKxJmzslERMu9LDdC6Kez0bdrgEYed5eXFK2Z1viKZJCGRlhd06rBusyztA==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [win32] requiresBuild: true optional: true /@next/swc-win32-ia32-msvc@13.3.0: - resolution: {integrity: sha512-4aB7K9mcVK1lYEzpOpqWrXHEZympU3oK65fnNcY1Qc4HLJFLJj8AViuqQd4jjjPNuV4sl8jAwTz3gN5VNGWB7w==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-4aB7K9mcVK1lYEzpOpqWrXHEZympU3oK65fnNcY1Qc4HLJFLJj8AViuqQd4jjjPNuV4sl8jAwTz3gN5VNGWB7w==, + } + engines: { node: '>= 10' } cpu: [ia32] os: [win32] requiresBuild: true optional: true /@next/swc-win32-x64-msvc@13.3.0: - resolution: {integrity: sha512-Reer6rkLLcoOvB0dd66+Y7WrWVFH7sEEkF/4bJCIfsSKnTStTYaHtwIJAwbqnt9I392Tqvku0KkoqZOryWV9LQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-Reer6rkLLcoOvB0dd66+Y7WrWVFH7sEEkF/4bJCIfsSKnTStTYaHtwIJAwbqnt9I392Tqvku0KkoqZOryWV9LQ==, + } + engines: { node: '>= 10' } cpu: [x64] os: [win32] requiresBuild: true optional: true /@nodelib/fs.scandir@2.1.5: - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, + } + engines: { node: '>= 8' } dependencies: '@nodelib/fs.stat': 2.0.5 run-parallel: 1.2.0 /@nodelib/fs.stat@2.0.5: - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, + } + engines: { node: '>= 8' } /@nodelib/fs.walk@1.2.8: - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, + } + engines: { node: '>= 8' } dependencies: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 /@notionhq/client@1.0.4: - resolution: {integrity: sha512-m7zZ5l3RUktayf1lRBV1XMb8HSKsmWTv/LZPqP7UGC1NMzOlc+bbTOPNQ4CP/c1P4cP61VWLb/zBq7a3c0nMaw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-m7zZ5l3RUktayf1lRBV1XMb8HSKsmWTv/LZPqP7UGC1NMzOlc+bbTOPNQ4CP/c1P4cP61VWLb/zBq7a3c0nMaw==, + } + engines: { node: '>=12' } dependencies: '@types/node-fetch': 2.6.2 node-fetch: 2.6.9 @@ -4393,8 +5554,11 @@ packages: dev: false /@notionhq/client@2.2.2: - resolution: {integrity: sha512-L7TB+UyhnWTSv1ek7xzGr9+mS9o76qMKnZ8Ag8H2q6QgvywAiPOFcE3ulWI/1AnMewGVRqwb30agPHMVRY/K/w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-L7TB+UyhnWTSv1ek7xzGr9+mS9o76qMKnZ8Ag8H2q6QgvywAiPOFcE3ulWI/1AnMewGVRqwb30agPHMVRY/K/w==, + } + engines: { node: '>=12' } dependencies: '@types/node-fetch': 2.6.2 node-fetch: 2.6.7 @@ -4403,7 +5567,10 @@ packages: dev: true /@nrwl/cli@15.9.7(@swc-node/register@1.6.2)(@swc/core@1.3.87): - resolution: {integrity: sha512-1jtHBDuJzA57My5nLzYiM372mJW0NY6rFKxlWt5a0RLsAZdPTHsd8lE3Gs9XinGC1jhXbruWmhhnKyYtZvX/zA==} + resolution: + { + integrity: sha512-1jtHBDuJzA57My5nLzYiM372mJW0NY6rFKxlWt5a0RLsAZdPTHsd8lE3Gs9XinGC1jhXbruWmhhnKyYtZvX/zA==, + } dependencies: nx: 15.9.7(@swc-node/register@1.6.2)(@swc/core@1.3.87) transitivePeerDependencies: @@ -4412,7 +5579,10 @@ packages: - debug /@nrwl/cypress@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(cypress@13.2.0)(eslint@8.46.0)(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-set8MUV6b1QpHCSqQ4It01BM9u6hf0e6s02DZdi/1OW3h/JYo5kqcLrYQra3AKCIimGByXdoHtCUjyFT0pMrdg==} + resolution: + { + integrity: sha512-set8MUV6b1QpHCSqQ4It01BM9u6hf0e6s02DZdi/1OW3h/JYo5kqcLrYQra3AKCIimGByXdoHtCUjyFT0pMrdg==, + } dependencies: '@nx/cypress': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(cypress@13.2.0)(eslint@8.46.0)(nx@16.8.1)(typescript@5.2.2) transitivePeerDependencies: @@ -4431,7 +5601,10 @@ packages: dev: true /@nrwl/devkit@14.7.17(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-flTV8BuC7oacWGHseoKsyOAYmWsMSP6iYGRjrCaV0MyRbDkNy0P07elXXFUW01er+l7x/awZYQR9/n/eNyqfXA==} + resolution: + { + integrity: sha512-flTV8BuC7oacWGHseoKsyOAYmWsMSP6iYGRjrCaV0MyRbDkNy0P07elXXFUW01er+l7x/awZYQR9/n/eNyqfXA==, + } peerDependencies: nx: '>= 13.10 <= 15' dependencies: @@ -4445,7 +5618,10 @@ packages: dev: true /@nrwl/devkit@15.8.5(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-NgpD1I1BfFb6wRxB5i5PGP4hMyRhPsArCyENWWvY4gCn8tylAc7yjpQyiDiy2QnymL2PjWM8QeAeCOy1eF2xgw==} + resolution: + { + integrity: sha512-NgpD1I1BfFb6wRxB5i5PGP4hMyRhPsArCyENWWvY4gCn8tylAc7yjpQyiDiy2QnymL2PjWM8QeAeCOy1eF2xgw==, + } peerDependencies: nx: '>= 14.1 <= 16' dependencies: @@ -4461,7 +5637,10 @@ packages: dev: false /@nrwl/devkit@15.9.7(nx@15.9.7): - resolution: {integrity: sha512-Sb7Am2TMT8AVq8e+vxOlk3AtOA2M0qCmhBzoM1OJbdHaPKc0g0UgSnWRml1kPGg5qfPk72tWclLoZJ5/ut0vTg==} + resolution: + { + integrity: sha512-Sb7Am2TMT8AVq8e+vxOlk3AtOA2M0qCmhBzoM1OJbdHaPKc0g0UgSnWRml1kPGg5qfPk72tWclLoZJ5/ut0vTg==, + } peerDependencies: nx: '>= 14.1 <= 16' dependencies: @@ -4473,7 +5652,10 @@ packages: tslib: 2.6.2 /@nrwl/devkit@15.9.7(nx@16.8.1): - resolution: {integrity: sha512-Sb7Am2TMT8AVq8e+vxOlk3AtOA2M0qCmhBzoM1OJbdHaPKc0g0UgSnWRml1kPGg5qfPk72tWclLoZJ5/ut0vTg==} + resolution: + { + integrity: sha512-Sb7Am2TMT8AVq8e+vxOlk3AtOA2M0qCmhBzoM1OJbdHaPKc0g0UgSnWRml1kPGg5qfPk72tWclLoZJ5/ut0vTg==, + } peerDependencies: nx: '>= 14.1 <= 16' dependencies: @@ -4485,14 +5667,20 @@ packages: tslib: 2.6.2 /@nrwl/devkit@16.8.1(nx@16.8.1): - resolution: {integrity: sha512-Y7yYDh62Hi4q99Q4+ipIQ3K9iLuAld3WcwjLv6vtl6Livu+TU3eqbraBEno7DQL8JuIuwgBT4lX7Bp3w3N9RDg==} + resolution: + { + integrity: sha512-Y7yYDh62Hi4q99Q4+ipIQ3K9iLuAld3WcwjLv6vtl6Livu+TU3eqbraBEno7DQL8JuIuwgBT4lX7Bp3w3N9RDg==, + } dependencies: '@nx/devkit': 16.8.1(nx@16.8.1) transitivePeerDependencies: - nx /@nrwl/esbuild@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(esbuild@0.19.3)(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-dzvnErSGawDDitrahiZdMkE+bSXDsMzxqpVsBP7ZwcARcnclV2rhWM+xAmXjGNPTItzfHo/knL5Fk/tFemSk6A==} + resolution: + { + integrity: sha512-dzvnErSGawDDitrahiZdMkE+bSXDsMzxqpVsBP7ZwcARcnclV2rhWM+xAmXjGNPTItzfHo/knL5Fk/tFemSk6A==, + } dependencies: '@nx/esbuild': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(esbuild@0.19.3)(nx@16.8.1)(typescript@5.2.2) transitivePeerDependencies: @@ -4510,7 +5698,10 @@ packages: dev: false /@nrwl/eslint-plugin-nx@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@8.8.0)(eslint@8.46.0)(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-Vdy+XGQAbDE76ovWis3Bg/bWlsozcfBXIXK8OiAEQfjyqceWXtH6B2EFTVU0GiHNDydpZR9ahcGJDAuoKDOo3A==} + resolution: + { + integrity: sha512-Vdy+XGQAbDE76ovWis3Bg/bWlsozcfBXIXK8OiAEQfjyqceWXtH6B2EFTVU0GiHNDydpZR9ahcGJDAuoKDOo3A==, + } dependencies: '@nx/eslint-plugin': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@8.8.0)(eslint@8.46.0)(nx@16.8.1)(typescript@5.2.2) transitivePeerDependencies: @@ -4530,7 +5721,10 @@ packages: dev: true /@nrwl/jest@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-shOjtGwGRktUzCUwIIxzW/z5QaoGsYaEF1ihCVA10zai3XsNLkkPPfyEO85RegAu/RGk78PRXTOXdZaJNbraTw==} + resolution: + { + integrity: sha512-shOjtGwGRktUzCUwIIxzW/z5QaoGsYaEF1ihCVA10zai3XsNLkkPPfyEO85RegAu/RGk78PRXTOXdZaJNbraTw==, + } dependencies: '@nx/jest': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2) transitivePeerDependencies: @@ -4548,7 +5742,10 @@ packages: - verdaccio /@nrwl/js@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.1.6): - resolution: {integrity: sha512-I5kCtk0TUvcvJXnD6fbOI1+L4EBHbSZCXVCkv3eXKOeAj0cJ6cOt2g6S7DpWPf2P7zTq22XOPNJy3C8u9tCbgQ==} + resolution: + { + integrity: sha512-I5kCtk0TUvcvJXnD6fbOI1+L4EBHbSZCXVCkv3eXKOeAj0cJ6cOt2g6S7DpWPf2P7zTq22XOPNJy3C8u9tCbgQ==, + } dependencies: '@nx/js': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.1.6) transitivePeerDependencies: @@ -4564,7 +5761,10 @@ packages: - verdaccio /@nrwl/js@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-I5kCtk0TUvcvJXnD6fbOI1+L4EBHbSZCXVCkv3eXKOeAj0cJ6cOt2g6S7DpWPf2P7zTq22XOPNJy3C8u9tCbgQ==} + resolution: + { + integrity: sha512-I5kCtk0TUvcvJXnD6fbOI1+L4EBHbSZCXVCkv3eXKOeAj0cJ6cOt2g6S7DpWPf2P7zTq22XOPNJy3C8u9tCbgQ==, + } dependencies: '@nx/js': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.2.2) transitivePeerDependencies: @@ -4580,7 +5780,10 @@ packages: - verdaccio /@nrwl/linter@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1): - resolution: {integrity: sha512-o7DhyvNk7qXG8qdhivEd4kYw1XGqOPlXHgDBJJHeL5ASN2HWl5EBclCvKJmoci1xIJGw/9q+mJxc1/mL8Zq3dQ==} + resolution: + { + integrity: sha512-o7DhyvNk7qXG8qdhivEd4kYw1XGqOPlXHgDBJJHeL5ASN2HWl5EBclCvKJmoci1xIJGw/9q+mJxc1/mL8Zq3dQ==, + } dependencies: '@nx/linter': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1) transitivePeerDependencies: @@ -4596,7 +5799,10 @@ packages: - verdaccio /@nrwl/next@16.8.1(@babel/core@7.20.5)(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(next@13.3.0)(nx@16.8.1)(typescript@5.2.2)(webpack@5.86.0): - resolution: {integrity: sha512-hnSnOmwzxaiDNHimTKsRU2c/Cw1AaOmMsKgiq5rj87ayPFwihIHengpG979Rnk9nnIeQMtYsojSv3QrFMZJrzA==} + resolution: + { + integrity: sha512-hnSnOmwzxaiDNHimTKsRU2c/Cw1AaOmMsKgiq5rj87ayPFwihIHengpG979Rnk9nnIeQMtYsojSv3QrFMZJrzA==, + } dependencies: '@nx/next': 16.8.1(@babel/core@7.20.5)(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(next@13.3.0)(nx@16.8.1)(typescript@5.2.2)(webpack@5.86.0) transitivePeerDependencies: @@ -4618,7 +5824,10 @@ packages: dev: true /@nrwl/node@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-d2L3pBkHqPHFsn13H7P/dNETTnTRGygLMoeYwcjC0+8C8Hwc1QCYIiKdPsZMEfwClj5K0evFRbpCLSPedwd5OQ==} + resolution: + { + integrity: sha512-d2L3pBkHqPHFsn13H7P/dNETTnTRGygLMoeYwcjC0+8C8Hwc1QCYIiKdPsZMEfwClj5K0evFRbpCLSPedwd5OQ==, + } dependencies: '@nx/node': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2) transitivePeerDependencies: @@ -4638,63 +5847,87 @@ packages: dev: true /@nrwl/nx-darwin-arm64@15.9.7: - resolution: {integrity: sha512-aBUgnhlkrgC0vu0fK6eb9Vob7eFnkuknrK+YzTjmLrrZwj7FGNAeyGXSlyo1dVokIzjVKjJg2saZZ0WQbfuCJw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-aBUgnhlkrgC0vu0fK6eb9Vob7eFnkuknrK+YzTjmLrrZwj7FGNAeyGXSlyo1dVokIzjVKjJg2saZZ0WQbfuCJw==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [darwin] requiresBuild: true optional: true /@nrwl/nx-darwin-x64@15.9.7: - resolution: {integrity: sha512-L+elVa34jhGf1cmn38Z0sotQatmLovxoASCIw5r1CBZZeJ5Tg7Y9nOwjRiDixZxNN56hPKXm6xl9EKlVHVeKlg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-L+elVa34jhGf1cmn38Z0sotQatmLovxoASCIw5r1CBZZeJ5Tg7Y9nOwjRiDixZxNN56hPKXm6xl9EKlVHVeKlg==, + } + engines: { node: '>= 10' } cpu: [x64] os: [darwin] requiresBuild: true optional: true /@nrwl/nx-linux-arm-gnueabihf@15.9.7: - resolution: {integrity: sha512-pqmfqqEUGFu6PmmHKyXyUw1Al0Ki8PSaR0+ndgCAb1qrekVDGDfznJfaqxN0JSLeolPD6+PFtLyXNr9ZyPFlFg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-pqmfqqEUGFu6PmmHKyXyUw1Al0Ki8PSaR0+ndgCAb1qrekVDGDfznJfaqxN0JSLeolPD6+PFtLyXNr9ZyPFlFg==, + } + engines: { node: '>= 10' } cpu: [arm] os: [linux] requiresBuild: true optional: true /@nrwl/nx-linux-arm64-gnu@15.9.7: - resolution: {integrity: sha512-NYOa/eRrqmM+In5g3M0rrPVIS9Z+q6fvwXJYf/KrjOHqqan/KL+2TOfroA30UhcBrwghZvib7O++7gZ2hzwOnA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-NYOa/eRrqmM+In5g3M0rrPVIS9Z+q6fvwXJYf/KrjOHqqan/KL+2TOfroA30UhcBrwghZvib7O++7gZ2hzwOnA==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [linux] requiresBuild: true optional: true /@nrwl/nx-linux-arm64-musl@15.9.7: - resolution: {integrity: sha512-zyStqjEcmbvLbejdTOrLUSEdhnxNtdQXlmOuymznCzYUEGRv+4f7OAepD3yRoR0a/57SSORZmmGQB7XHZoYZJA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-zyStqjEcmbvLbejdTOrLUSEdhnxNtdQXlmOuymznCzYUEGRv+4f7OAepD3yRoR0a/57SSORZmmGQB7XHZoYZJA==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [linux] requiresBuild: true optional: true /@nrwl/nx-linux-x64-gnu@15.9.7: - resolution: {integrity: sha512-saNK5i2A8pKO3Il+Ejk/KStTApUpWgCxjeUz9G+T8A+QHeDloZYH2c7pU/P3jA9QoNeKwjVO9wYQllPL9loeVg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-saNK5i2A8pKO3Il+Ejk/KStTApUpWgCxjeUz9G+T8A+QHeDloZYH2c7pU/P3jA9QoNeKwjVO9wYQllPL9loeVg==, + } + engines: { node: '>= 10' } cpu: [x64] os: [linux] requiresBuild: true optional: true /@nrwl/nx-linux-x64-musl@15.9.7: - resolution: {integrity: sha512-extIUThYN94m4Vj4iZggt6hhMZWQSukBCo8pp91JHnDcryBg7SnYmnikwtY1ZAFyyRiNFBLCKNIDFGkKkSrZ9Q==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-extIUThYN94m4Vj4iZggt6hhMZWQSukBCo8pp91JHnDcryBg7SnYmnikwtY1ZAFyyRiNFBLCKNIDFGkKkSrZ9Q==, + } + engines: { node: '>= 10' } cpu: [x64] os: [linux] requiresBuild: true optional: true /@nrwl/nx-plugin@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-LjYm1lwSFPKvZRABk3wWZV31SqbBCJE5cQ2wBgGjSgp4OQEzyVrI5AeNwWSN0c32tPP16luQnf2x+MOEDd2SZw==} + resolution: + { + integrity: sha512-LjYm1lwSFPKvZRABk3wWZV31SqbBCJE5cQ2wBgGjSgp4OQEzyVrI5AeNwWSN0c32tPP16luQnf2x+MOEDd2SZw==, + } dependencies: '@nx/plugin': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2) transitivePeerDependencies: @@ -4714,23 +5947,32 @@ packages: dev: false /@nrwl/nx-win32-arm64-msvc@15.9.7: - resolution: {integrity: sha512-GSQ54hJ5AAnKZb4KP4cmBnJ1oC4ILxnrG1mekxeM65c1RtWg9NpBwZ8E0gU3xNrTv8ZNsBeKi/9UhXBxhsIh8A==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-GSQ54hJ5AAnKZb4KP4cmBnJ1oC4ILxnrG1mekxeM65c1RtWg9NpBwZ8E0gU3xNrTv8ZNsBeKi/9UhXBxhsIh8A==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [win32] requiresBuild: true optional: true /@nrwl/nx-win32-x64-msvc@15.9.7: - resolution: {integrity: sha512-x6URof79RPd8AlapVbPefUD3ynJZpmah3tYaYZ9xZRMXojVtEHV8Qh5vysKXQ1rNYJiiB8Ah6evSKWLbAH60tw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-x6URof79RPd8AlapVbPefUD3ynJZpmah3tYaYZ9xZRMXojVtEHV8Qh5vysKXQ1rNYJiiB8Ah6evSKWLbAH60tw==, + } + engines: { node: '>= 10' } cpu: [x64] os: [win32] requiresBuild: true optional: true /@nrwl/react@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(typescript@5.2.2)(webpack@5.86.0): - resolution: {integrity: sha512-0Mhaa9WalF3DzvvIeLeiVZ1ykaUK/kVXCkMu+0982hDARB5uZAEkriVPv7YWXOTYiBP+mMt/oJmwhq/JDGC7yA==} + resolution: + { + integrity: sha512-0Mhaa9WalF3DzvvIeLeiVZ1ykaUK/kVXCkMu+0982hDARB5uZAEkriVPv7YWXOTYiBP+mMt/oJmwhq/JDGC7yA==, + } dependencies: '@nx/react': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(typescript@5.2.2)(webpack@5.86.0) transitivePeerDependencies: @@ -4749,7 +5991,10 @@ packages: dev: true /@nrwl/tao@15.9.7(@swc-node/register@1.6.2)(@swc/core@1.3.87): - resolution: {integrity: sha512-OBnHNvQf3vBH0qh9YnvBQQWyyFZ+PWguF6dJ8+1vyQYlrLVk/XZ8nJ4ukWFb+QfPv/O8VBmqaofaOI9aFC4yTw==} + resolution: + { + integrity: sha512-OBnHNvQf3vBH0qh9YnvBQQWyyFZ+PWguF6dJ8+1vyQYlrLVk/XZ8nJ4ukWFb+QfPv/O8VBmqaofaOI9aFC4yTw==, + } hasBin: true dependencies: nx: 15.9.7(@swc-node/register@1.6.2)(@swc/core@1.3.87) @@ -4759,7 +6004,10 @@ packages: - debug /@nrwl/tao@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87): - resolution: {integrity: sha512-hgGFLyEgONSofxnJsXN9NlUx4J8/YSLUkfZKdR8Qa97+JGZT8FEuk7NLFJOWdYYqROoCzXLHK0d+twFFNPS5BQ==} + resolution: + { + integrity: sha512-hgGFLyEgONSofxnJsXN9NlUx4J8/YSLUkfZKdR8Qa97+JGZT8FEuk7NLFJOWdYYqROoCzXLHK0d+twFFNPS5BQ==, + } hasBin: true dependencies: nx: 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87) @@ -4770,7 +6018,10 @@ packages: - debug /@nrwl/vite@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.2.2)(vite@4.4.9)(vitest@0.31.4): - resolution: {integrity: sha512-gc8LSzIPSWfhqHnlnQ0XiAs4twWdBVg0qidXOSo7PEVeWTuOiNy7SyFUs+M9fQNgjaEGq+lAXgJePEcXLveL6A==} + resolution: + { + integrity: sha512-gc8LSzIPSWfhqHnlnQ0XiAs4twWdBVg0qidXOSo7PEVeWTuOiNy7SyFUs+M9fQNgjaEGq+lAXgJePEcXLveL6A==, + } dependencies: '@nx/vite': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.2.2)(vite@4.4.9)(vitest@0.31.4) transitivePeerDependencies: @@ -4789,7 +6040,10 @@ packages: dev: true /@nrwl/web@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-GgpAt0OsnEzz+0rVtiPdO911AKvBtljP2hcVlhReQRohBeZ3F472uYVPq/OF/G+ELZU4toXgIuGr2Ggfd6XM8g==} + resolution: + { + integrity: sha512-GgpAt0OsnEzz+0rVtiPdO911AKvBtljP2hcVlhReQRohBeZ3F472uYVPq/OF/G+ELZU4toXgIuGr2Ggfd6XM8g==, + } dependencies: '@nx/web': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.2.2) transitivePeerDependencies: @@ -4806,7 +6060,10 @@ packages: dev: true /@nrwl/workspace@15.9.7(@swc-node/register@1.6.2)(@swc/core@1.3.87): - resolution: {integrity: sha512-tOYYReTgUtP66mtbl6rGfs83il6ywb99GIsyCGINWNBVuU3WE44Io0MCvfirDwlxwSIWouDr64qhGqqzTo3Z9g==} + resolution: + { + integrity: sha512-tOYYReTgUtP66mtbl6rGfs83il6ywb99GIsyCGINWNBVuU3WE44Io0MCvfirDwlxwSIWouDr64qhGqqzTo3Z9g==, + } dependencies: '@nrwl/devkit': 15.9.7(nx@15.9.7) '@parcel/watcher': 2.0.4 @@ -4834,7 +6091,10 @@ packages: - debug /@nrwl/workspace@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87): - resolution: {integrity: sha512-KFxcUoOfzCEc5Krq3h+EC6kOYHCwuSPyc2v1fWvTgP7a91uw5NPsMKGt4l0QXElkX3/qbBvjex6fJOcjf+odYQ==} + resolution: + { + integrity: sha512-KFxcUoOfzCEc5Krq3h+EC6kOYHCwuSPyc2v1fWvTgP7a91uw5NPsMKGt4l0QXElkX3/qbBvjex6fJOcjf+odYQ==, + } dependencies: '@nx/workspace': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87) transitivePeerDependencies: @@ -4843,7 +6103,10 @@ packages: - debug /@nx/cypress@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(cypress@13.2.0)(eslint@8.46.0)(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-Yao0YWb0PVyAKDWXKjHsLjwuULx7GPUsoAuz8qr990YeKDuhqFKOPmSPSv8a8VAOo7yltCWuBmzvL1X8xF2amQ==} + resolution: + { + integrity: sha512-Yao0YWb0PVyAKDWXKjHsLjwuULx7GPUsoAuz8qr990YeKDuhqFKOPmSPSv8a8VAOo7yltCWuBmzvL1X8xF2amQ==, + } peerDependencies: cypress: '>= 3 < 14' peerDependenciesMeta: @@ -4874,7 +6137,10 @@ packages: dev: true /@nx/devkit@16.8.1(nx@16.8.1): - resolution: {integrity: sha512-I+Cg+lXk0wRz6KC9FZbWFuJWQTXAt5O3bNl9ksISmzqmEyuy72Cv+/MBHvF7o54Sq80DNw+RKWB1re5HFOsqCA==} + resolution: + { + integrity: sha512-I+Cg+lXk0wRz6KC9FZbWFuJWQTXAt5O3bNl9ksISmzqmEyuy72Cv+/MBHvF7o54Sq80DNw+RKWB1re5HFOsqCA==, + } peerDependencies: nx: '>= 15 <= 17' dependencies: @@ -4888,7 +6154,10 @@ packages: tslib: 2.6.2 /@nx/esbuild@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(esbuild@0.19.3)(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-YFURge1u8v2iyXvED9oTJVTzx0iB016JGvuIgaGvicT4bQ+KHZ/d54EQ6vI2qzyh6zWBeJSKCEwIWlYxEW1jFA==} + resolution: + { + integrity: sha512-YFURge1u8v2iyXvED9oTJVTzx0iB016JGvuIgaGvicT4bQ+KHZ/d54EQ6vI2qzyh6zWBeJSKCEwIWlYxEW1jFA==, + } peerDependencies: esbuild: ~0.19.2 peerDependenciesMeta: @@ -4918,7 +6187,10 @@ packages: dev: false /@nx/eslint-plugin@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(@typescript-eslint/parser@5.62.0)(eslint-config-prettier@8.8.0)(eslint@8.46.0)(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-UhOtC1zeGytfMtsVSa3r3FbUIUtXLjtvBtZvr/vr8Ff1QSMVfTYwhVOqctYsBVYDpJonwyz3vm95SOHbBlSw6A==} + resolution: + { + integrity: sha512-UhOtC1zeGytfMtsVSa3r3FbUIUtXLjtvBtZvr/vr8Ff1QSMVfTYwhVOqctYsBVYDpJonwyz3vm95SOHbBlSw6A==, + } peerDependencies: '@typescript-eslint/parser': ^5.60.1 eslint-config-prettier: ^8.1.0 @@ -4953,7 +6225,10 @@ packages: dev: true /@nx/jest@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-/EoJehHiOnRDKTi96Q9mTKt+kIcQSzwMLmWdZYvhdvpTdCjK51ElwK8W3Lt4HdXp4C45gfihLE3jJlJ8q4/5aA==} + resolution: + { + integrity: sha512-/EoJehHiOnRDKTi96Q9mTKt+kIcQSzwMLmWdZYvhdvpTdCjK51ElwK8W3Lt4HdXp4C45gfihLE3jJlJ8q4/5aA==, + } dependencies: '@jest/reporters': 29.4.3 '@jest/test-result': 29.4.3 @@ -4983,7 +6258,10 @@ packages: - verdaccio /@nx/js@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.1.6): - resolution: {integrity: sha512-SznU6GH/yxj2ro1pgUWDSaoiSiP7UgxMvb2qlyhU1iRB9sdOBhduzVq6+yTgrje2sVSnAWSGbWiQaYkxFLaKWw==} + resolution: + { + integrity: sha512-SznU6GH/yxj2ro1pgUWDSaoiSiP7UgxMvb2qlyhU1iRB9sdOBhduzVq6+yTgrje2sVSnAWSGbWiQaYkxFLaKWw==, + } peerDependencies: verdaccio: ^5.0.4 peerDependenciesMeta: @@ -5028,7 +6306,10 @@ packages: - typescript /@nx/js@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-SznU6GH/yxj2ro1pgUWDSaoiSiP7UgxMvb2qlyhU1iRB9sdOBhduzVq6+yTgrje2sVSnAWSGbWiQaYkxFLaKWw==} + resolution: + { + integrity: sha512-SznU6GH/yxj2ro1pgUWDSaoiSiP7UgxMvb2qlyhU1iRB9sdOBhduzVq6+yTgrje2sVSnAWSGbWiQaYkxFLaKWw==, + } peerDependencies: verdaccio: ^5.0.4 peerDependenciesMeta: @@ -5073,7 +6354,10 @@ packages: - typescript /@nx/linter@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1): - resolution: {integrity: sha512-I4DVpLpolj9vpiKsU2Pe93tTBGd2efyPcyhX2sltITED9H6P/WuEqe9WR1sJomxVq7D6uQYhrUjARBMeMZWxtw==} + resolution: + { + integrity: sha512-I4DVpLpolj9vpiKsU2Pe93tTBGd2efyPcyhX2sltITED9H6P/WuEqe9WR1sJomxVq7D6uQYhrUjARBMeMZWxtw==, + } peerDependencies: eslint: ^8.0.0 peerDependenciesMeta: @@ -5100,7 +6384,10 @@ packages: - verdaccio /@nx/next@16.8.1(@babel/core@7.20.5)(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(next@13.3.0)(nx@16.8.1)(typescript@5.2.2)(webpack@5.86.0): - resolution: {integrity: sha512-Of9kI3A+s1NjfhYlmR0wMkeM/qxOIkJdHIb1fYDGeFNBtfH5fkCCs+YEwjUzdhY1xyLytKNUFeUUModRYss1og==} + resolution: + { + integrity: sha512-Of9kI3A+s1NjfhYlmR0wMkeM/qxOIkJdHIb1fYDGeFNBtfH5fkCCs+YEwjUzdhY1xyLytKNUFeUUModRYss1og==, + } peerDependencies: next: '>=13.0.0' dependencies: @@ -5140,7 +6427,10 @@ packages: dev: true /@nx/node@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-ZCUJ7iSxTuAhe4zNZa344u+xqet3UI2mseXk6+N60GNBxoBrW7qLFLAckwGYeMnv38dn/MBxVXiEPA1R7mXJ1w==} + resolution: + { + integrity: sha512-ZCUJ7iSxTuAhe4zNZa344u+xqet3UI2mseXk6+N60GNBxoBrW7qLFLAckwGYeMnv38dn/MBxVXiEPA1R7mXJ1w==, + } dependencies: '@nrwl/node': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2) '@nx/devkit': 16.8.1(nx@16.8.1) @@ -5166,87 +6456,120 @@ packages: dev: true /@nx/nx-darwin-arm64@16.8.1: - resolution: {integrity: sha512-xOflqyIVcyLPzdJOZcucI+5ClwnTgK8zIvpjbxHokrO9McJJglhfUyP0bbTHpEpWqzA+GaPA/6/Qdu0ATzqQBQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-xOflqyIVcyLPzdJOZcucI+5ClwnTgK8zIvpjbxHokrO9McJJglhfUyP0bbTHpEpWqzA+GaPA/6/Qdu0ATzqQBQ==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [darwin] requiresBuild: true optional: true /@nx/nx-darwin-x64@16.8.1: - resolution: {integrity: sha512-JJGrlOvEpDMWnM6YKaA1WOnzHgiw5vRKEowX9ba+jxhmCvtdjbLSxi228kv92JtQPPQ91zvtsNM+BFY0EbPOlA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-JJGrlOvEpDMWnM6YKaA1WOnzHgiw5vRKEowX9ba+jxhmCvtdjbLSxi228kv92JtQPPQ91zvtsNM+BFY0EbPOlA==, + } + engines: { node: '>= 10' } cpu: [x64] os: [darwin] requiresBuild: true optional: true /@nx/nx-freebsd-x64@16.8.1: - resolution: {integrity: sha512-aZdJQ7cIQfXOmfk4vRXvVYxuV68xz8YyhNZ0IvBfJ16uZQ+YNl4BpklRLEIdaloSbwz9M1NNewmL+AgklEBxlA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-aZdJQ7cIQfXOmfk4vRXvVYxuV68xz8YyhNZ0IvBfJ16uZQ+YNl4BpklRLEIdaloSbwz9M1NNewmL+AgklEBxlA==, + } + engines: { node: '>= 10' } cpu: [x64] os: [freebsd] requiresBuild: true optional: true /@nx/nx-linux-arm-gnueabihf@16.8.1: - resolution: {integrity: sha512-JzjrTf7FFgikoVUbRs0hKvwHRR6SyqT4yIdk/YyiCt2mWY9w4m5DWtHM/9kJzhckkH9MY66m+X/zG6+NKsEMvg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-JzjrTf7FFgikoVUbRs0hKvwHRR6SyqT4yIdk/YyiCt2mWY9w4m5DWtHM/9kJzhckkH9MY66m+X/zG6+NKsEMvg==, + } + engines: { node: '>= 10' } cpu: [arm] os: [linux] requiresBuild: true optional: true /@nx/nx-linux-arm64-gnu@16.8.1: - resolution: {integrity: sha512-CF0s981myBWusW7iW2+fKPa7ceYYe+NO5EdKe9l27fpHDkcA71KZU3q7U823QpO/7tYvVdBevJp3CCn2/GBURQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-CF0s981myBWusW7iW2+fKPa7ceYYe+NO5EdKe9l27fpHDkcA71KZU3q7U823QpO/7tYvVdBevJp3CCn2/GBURQ==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [linux] requiresBuild: true optional: true /@nx/nx-linux-arm64-musl@16.8.1: - resolution: {integrity: sha512-X4TobxRt1dALvoeKC3/t1CqZCMUqtEhGG+KQLT/51sG54HdxmTAWRFlvj8PvLH0QSBk4e+uRZAo45qpt3iSnBg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-X4TobxRt1dALvoeKC3/t1CqZCMUqtEhGG+KQLT/51sG54HdxmTAWRFlvj8PvLH0QSBk4e+uRZAo45qpt3iSnBg==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [linux] requiresBuild: true optional: true /@nx/nx-linux-x64-gnu@16.8.1: - resolution: {integrity: sha512-lHvv2FD14Lpxh7muMLStH2tC1opQOaepO4nXwb1LaaoIpMym7kBgCK8AQuI98/oNQiMDXMNDKWQZCjxnJGDIPw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-lHvv2FD14Lpxh7muMLStH2tC1opQOaepO4nXwb1LaaoIpMym7kBgCK8AQuI98/oNQiMDXMNDKWQZCjxnJGDIPw==, + } + engines: { node: '>= 10' } cpu: [x64] os: [linux] requiresBuild: true optional: true /@nx/nx-linux-x64-musl@16.8.1: - resolution: {integrity: sha512-c4gQvNgIjggD1A5sYhftQEC1PtAhV3sEnv60X00v9wmjl57Wj4Ty0TgyzpYglLysVRiko/B58S8NYS0jKvMmeA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-c4gQvNgIjggD1A5sYhftQEC1PtAhV3sEnv60X00v9wmjl57Wj4Ty0TgyzpYglLysVRiko/B58S8NYS0jKvMmeA==, + } + engines: { node: '>= 10' } cpu: [x64] os: [linux] requiresBuild: true optional: true /@nx/nx-win32-arm64-msvc@16.8.1: - resolution: {integrity: sha512-GKHPy/MyGFoV9cdKgcWLZZK2vDdxt5bQ53ss0k+BDKRP+YwLKm7tJl23eeM7JdB4GLCBntEQPC+dBqxOA8Ze/w==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-GKHPy/MyGFoV9cdKgcWLZZK2vDdxt5bQ53ss0k+BDKRP+YwLKm7tJl23eeM7JdB4GLCBntEQPC+dBqxOA8Ze/w==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [win32] requiresBuild: true optional: true /@nx/nx-win32-x64-msvc@16.8.1: - resolution: {integrity: sha512-yHZ5FAcx54rVc31R0yIpniepkHMPwaxG23l8E/ZYbL1iPwE/Wc1HeUzUvxUuSXtguRp7ihcRhaUEPkcSl2EAVw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-yHZ5FAcx54rVc31R0yIpniepkHMPwaxG23l8E/ZYbL1iPwE/Wc1HeUzUvxUuSXtguRp7ihcRhaUEPkcSl2EAVw==, + } + engines: { node: '>= 10' } cpu: [x64] os: [win32] requiresBuild: true optional: true /@nx/plugin@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-DBpQlJT595Thmk2b8wKIscjGmqIHhWNEn043XdVrT3oGY2pYrG0wugEvZD40bzQWGuhaY7jf664w6CSHLo4z3Q==} + resolution: + { + integrity: sha512-DBpQlJT595Thmk2b8wKIscjGmqIHhWNEn043XdVrT3oGY2pYrG0wugEvZD40bzQWGuhaY7jf664w6CSHLo4z3Q==, + } dependencies: '@nrwl/nx-plugin': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(ts-node@10.9.1)(typescript@5.2.2) '@nx/devkit': 16.8.1(nx@16.8.1) @@ -5273,7 +6596,10 @@ packages: dev: false /@nx/react@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(typescript@5.2.2)(webpack@5.86.0): - resolution: {integrity: sha512-oCrMT0A0vuC41M8j+k1200l7LCqt6cf0rESl9jPoD3JrFhAvAOdaAxhDKZF4p5cMwaIy2j1OjVKb+bPU6h83NQ==} + resolution: + { + integrity: sha512-oCrMT0A0vuC41M8j+k1200l7LCqt6cf0rESl9jPoD3JrFhAvAOdaAxhDKZF4p5cMwaIy2j1OjVKb+bPU6h83NQ==, + } dependencies: '@nrwl/react': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(eslint@8.46.0)(nx@16.8.1)(typescript@5.2.2)(webpack@5.86.0) '@nx/devkit': 16.8.1(nx@16.8.1) @@ -5302,7 +6628,10 @@ packages: dev: true /@nx/vite@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.2.2)(vite@4.4.9)(vitest@0.31.4): - resolution: {integrity: sha512-lQ8UicrWwj5fVMeslHh1T3QnGDGz4o9zY9m11ETStAyic006oNMnKPoFcXcShdAM6UojYLUFN1bSgskpSKEfaw==} + resolution: + { + integrity: sha512-lQ8UicrWwj5fVMeslHh1T3QnGDGz4o9zY9m11ETStAyic006oNMnKPoFcXcShdAM6UojYLUFN1bSgskpSKEfaw==, + } peerDependencies: vite: ^4.3.4 vitest: '>=0.31.0 <1.0.0' @@ -5330,7 +6659,10 @@ packages: dev: true /@nx/web@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-3dOOJk81lnqIiS8T6tRmQ8XFcQuYpi0416es/HhJ9F6z40RJhg5T0U6DYPC2DtqqYdsmmGYY/lsWYWH+Q9lT3w==} + resolution: + { + integrity: sha512-3dOOJk81lnqIiS8T6tRmQ8XFcQuYpi0416es/HhJ9F6z40RJhg5T0U6DYPC2DtqqYdsmmGYY/lsWYWH+Q9lT3w==, + } dependencies: '@nrwl/web': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87)(@types/node@18.15.11)(nx@16.8.1)(typescript@5.2.2) '@nx/devkit': 16.8.1(nx@16.8.1) @@ -5353,7 +6685,10 @@ packages: dev: true /@nx/workspace@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87): - resolution: {integrity: sha512-wz5AwqdmRU80slva/Q3UmJAqDRYiPluEcqoBJcr2qW8zhoKYX/uDsYuAdCqr4uP5RokZca3LcXqNdpkOfFJtXg==} + resolution: + { + integrity: sha512-wz5AwqdmRU80slva/Q3UmJAqDRYiPluEcqoBJcr2qW8zhoKYX/uDsYuAdCqr4uP5RokZca3LcXqNdpkOfFJtXg==, + } dependencies: '@nrwl/workspace': 16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87) '@nx/devkit': 16.8.1(nx@16.8.1) @@ -5370,7 +6705,10 @@ packages: - debug /@nxext/sveltekit@14.0.0-next.2(nx@16.8.1)(typescript@5.2.2): - resolution: {integrity: sha512-6+5RCKrN6j8EA4ozh7vt5BnHPynJF/vqX4+BpLpAqzDmCSo/hcTmfUzygnTaPFYwhbdBBgizFkzg1KyPtH2J5Q==} + resolution: + { + integrity: sha512-6+5RCKrN6j8EA4ozh7vt5BnHPynJF/vqX4+BpLpAqzDmCSo/hcTmfUzygnTaPFYwhbdBBgizFkzg1KyPtH2J5Q==, + } dependencies: '@nrwl/devkit': 14.7.17(nx@16.8.1)(typescript@5.2.2) transitivePeerDependencies: @@ -5379,19 +6717,28 @@ packages: dev: true /@panva/hkdf@1.0.4: - resolution: {integrity: sha512-003xWiCuvePbLaPHT+CRuaV4GlyCAVm6XYSbBZDHoWZGn1mNkVKFaDbGJjjxmEFvizUwlCoM6O18FCBMMky2zQ==} + resolution: + { + integrity: sha512-003xWiCuvePbLaPHT+CRuaV4GlyCAVm6XYSbBZDHoWZGn1mNkVKFaDbGJjjxmEFvizUwlCoM6O18FCBMMky2zQ==, + } dev: false /@parcel/watcher@2.0.4: - resolution: {integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg==, + } + engines: { node: '>= 10.0.0' } requiresBuild: true dependencies: node-addon-api: 3.2.1 node-gyp-build: 4.6.0 /@phenomnomnominal/tsquery@4.1.1(typescript@5.2.2): - resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} + resolution: + { + integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==, + } peerDependencies: typescript: ^3 || ^4 dependencies: @@ -5399,7 +6746,10 @@ packages: typescript: 5.2.2 /@phenomnomnominal/tsquery@5.0.1(typescript@5.1.6): - resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} + resolution: + { + integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==, + } peerDependencies: typescript: ^3 || ^4 || ^5 dependencies: @@ -5407,7 +6757,10 @@ packages: typescript: 5.1.6 /@phenomnomnominal/tsquery@5.0.1(typescript@5.2.2): - resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} + resolution: + { + integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==, + } peerDependencies: typescript: ^3 || ^4 || ^5 dependencies: @@ -5415,8 +6768,11 @@ packages: typescript: 5.2.2 /@pkgr/utils@2.3.1: - resolution: {integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==, + } + engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } dependencies: cross-spawn: 7.0.3 is-glob: 4.0.3 @@ -5427,22 +6783,34 @@ packages: dev: true /@polka/url@1.0.0-next.21: - resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} + resolution: + { + integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==, + } /@radix-ui/number@1.0.0: - resolution: {integrity: sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==} + resolution: + { + integrity: sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==, + } dependencies: '@babel/runtime': 7.22.15 dev: false /@radix-ui/primitive@1.0.0: - resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} + resolution: + { + integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==, + } dependencies: '@babel/runtime': 7.22.15 dev: false /@radix-ui/react-compose-refs@1.0.0(react@18.2.0): - resolution: {integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==} + resolution: + { + integrity: sha512-0KaSv6sx787/hK3eF53iOkiSLwAGlFMx5lotrqD2pTjB18KbybKoEIgkNZTKC60YECDQTKGTRcDBILwZVqVKvA==, + } peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: @@ -5451,7 +6819,10 @@ packages: dev: false /@radix-ui/react-context@1.0.0(react@18.2.0): - resolution: {integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==} + resolution: + { + integrity: sha512-1pVM9RfOQ+n/N5PJK33kRSKsr1glNxomxONs5c49MliinBY6Yw2Q995qfBUUo0/Mbg05B/sGA0gkgPI7kmSHBg==, + } peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: @@ -5460,7 +6831,10 @@ packages: dev: false /@radix-ui/react-direction@1.0.0(react@18.2.0): - resolution: {integrity: sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==} + resolution: + { + integrity: sha512-2HV05lGUgYcA6xgLQ4BKPDmtL+QbIZYH5fCOTAOOcJ5O0QbWS3i9lKaurLzliYUDhORI2Qr3pyjhJh44lKA3rQ==, + } peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: @@ -5469,7 +6843,10 @@ packages: dev: false /@radix-ui/react-presence@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==} + resolution: + { + integrity: sha512-A+6XEvN01NfVWiKu38ybawfHsBjWum42MRPnEuqPsBZ4eV7e/7K321B5VgYMPv3Xx5An6o1/l9ZuDBgmcmWK3w==, + } peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -5482,7 +6859,10 @@ packages: dev: false /@radix-ui/react-primitive@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-EyXe6mnRlHZ8b6f4ilTDrXmkLShICIuOTTj0GX4w1rp+wSxf3+TD05u1UOITC8VsJ2a9nwHvdXtOXEOl0Cw/zQ==} + resolution: + { + integrity: sha512-EyXe6mnRlHZ8b6f4ilTDrXmkLShICIuOTTj0GX4w1rp+wSxf3+TD05u1UOITC8VsJ2a9nwHvdXtOXEOl0Cw/zQ==, + } peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -5494,7 +6874,10 @@ packages: dev: false /@radix-ui/react-scroll-area@1.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-3SNFukAjS5remgtpAVR9m3Zgo23ZojBZ8V3TCyR3A+56x2mtVqKlPV4+e8rScZUFMuvtbjIdQCmsJBFBazKZig==} + resolution: + { + integrity: sha512-3SNFukAjS5remgtpAVR9m3Zgo23ZojBZ8V3TCyR3A+56x2mtVqKlPV4+e8rScZUFMuvtbjIdQCmsJBFBazKZig==, + } peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -5514,7 +6897,10 @@ packages: dev: false /@radix-ui/react-slot@1.0.0(react@18.2.0): - resolution: {integrity: sha512-3mrKauI/tWXo1Ll+gN5dHcxDPdm/Df1ufcDLCecn+pnCIVcdWE7CujXo8QaXOWRJyZyQWWbpB8eFwHzWXlv5mQ==} + resolution: + { + integrity: sha512-3mrKauI/tWXo1Ll+gN5dHcxDPdm/Df1ufcDLCecn+pnCIVcdWE7CujXo8QaXOWRJyZyQWWbpB8eFwHzWXlv5mQ==, + } peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: @@ -5524,7 +6910,10 @@ packages: dev: false /@radix-ui/react-use-callback-ref@1.0.0(react@18.2.0): - resolution: {integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==} + resolution: + { + integrity: sha512-GZtyzoHz95Rhs6S63D2t/eqvdFCm7I+yHMLVQheKM7nBD8mbZIt+ct1jz4536MDnaOGKIxynJ8eHTkVGVVkoTg==, + } peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: @@ -5533,7 +6922,10 @@ packages: dev: false /@radix-ui/react-use-layout-effect@1.0.0(react@18.2.0): - resolution: {integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==} + resolution: + { + integrity: sha512-6Tpkq+R6LOlmQb1R5NNETLG0B4YP0wc+klfXafpUCj6JGyaUc8il7/kUZ7m59rGbXGczE9Bs+iz2qloqsZBduQ==, + } peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: @@ -5542,11 +6934,17 @@ packages: dev: false /@react-pdf/fns@2.0.0: - resolution: {integrity: sha512-PMFQVjlxA4wwrKd5eiQiAcVi1fllv8qTPcLLvY0kzJeHQBKLP0ZzDRLbLptPY3LR5yjpLhdf2MfJbb4Bd9mmjA==} + resolution: + { + integrity: sha512-PMFQVjlxA4wwrKd5eiQiAcVi1fllv8qTPcLLvY0kzJeHQBKLP0ZzDRLbLptPY3LR5yjpLhdf2MfJbb4Bd9mmjA==, + } dev: false /@react-pdf/font@2.3.0: - resolution: {integrity: sha512-+O1TR0gYnlJe3BUMVcT+5skAq7CwxgbiCPQneXmZbITeQMdqAVxPhVskIC7t3f7hg0YgZKG5e2L+11TD7uHbKQ==} + resolution: + { + integrity: sha512-+O1TR0gYnlJe3BUMVcT+5skAq7CwxgbiCPQneXmZbITeQMdqAVxPhVskIC7t3f7hg0YgZKG5e2L+11TD7uHbKQ==, + } dependencies: '@babel/runtime': 7.22.15 '@react-pdf/types': 2.1.0 @@ -5559,7 +6957,10 @@ packages: dev: false /@react-pdf/fontkit@2.1.2: - resolution: {integrity: sha512-BsFNhNoWLddj/DcznIjoz4+4KB3kmRRWP38KNXHp/DuHSI4B6Dw6A3fLps+10bOPltP350iszI0b1ljeMum/Bw==} + resolution: + { + integrity: sha512-BsFNhNoWLddj/DcznIjoz4+4KB3kmRRWP38KNXHp/DuHSI4B6Dw6A3fLps+10bOPltP350iszI0b1ljeMum/Bw==, + } dependencies: '@babel/runtime': 7.22.15 brotli: 1.3.3 @@ -5573,7 +6974,10 @@ packages: dev: false /@react-pdf/image@2.2.0: - resolution: {integrity: sha512-BZBbyj32qF+C/T9HfIc7yBlYfy69D6dLC4U9RYrzrb47uSfaiCzNco2OjDeVYjAUYFmJ/Z+Sa+ijrWlVzjUVWw==} + resolution: + { + integrity: sha512-BZBbyj32qF+C/T9HfIc7yBlYfy69D6dLC4U9RYrzrb47uSfaiCzNco2OjDeVYjAUYFmJ/Z+Sa+ijrWlVzjUVWw==, + } dependencies: '@babel/runtime': 7.22.15 '@react-pdf/png-js': 2.2.0 @@ -5583,7 +6987,10 @@ packages: dev: false /@react-pdf/layout@3.2.0: - resolution: {integrity: sha512-kw/WEdh8+GMDndRaGbJ8jg/tED+RvnN3KofK6YSJDq0a+sqejKqcvdIvzdUnZKJD9/R2ubhdd7YIvHiRtPnSCQ==} + resolution: + { + integrity: sha512-kw/WEdh8+GMDndRaGbJ8jg/tED+RvnN3KofK6YSJDq0a+sqejKqcvdIvzdUnZKJD9/R2ubhdd7YIvHiRtPnSCQ==, + } dependencies: '@babel/runtime': 7.22.15 '@react-pdf/fns': 2.0.0 @@ -5602,7 +7009,10 @@ packages: dev: false /@react-pdf/pdfkit@2.4.0: - resolution: {integrity: sha512-a8ad/o1CIPpL1oppwSk2d1QCjSAJau0s4SqQNew0U7jlP5Knx4Yck5iK6zLfezvCmSCGq+U8eBTvzLN00jbffg==} + resolution: + { + integrity: sha512-a8ad/o1CIPpL1oppwSk2d1QCjSAJau0s4SqQNew0U7jlP5Knx4Yck5iK6zLfezvCmSCGq+U8eBTvzLN00jbffg==, + } dependencies: '@babel/runtime': 7.22.15 '@react-pdf/fontkit': 2.1.2 @@ -5611,7 +7021,10 @@ packages: dev: false /@react-pdf/pdfkit@3.0.0: - resolution: {integrity: sha512-IzMW5KLVaJSkFapl2j77rTZnP0RPk1HWZRbHsVYW0WRtfSSUP1szrGLQXgIogpvVLBFW2CCYXsdshghTEGP2ZA==} + resolution: + { + integrity: sha512-IzMW5KLVaJSkFapl2j77rTZnP0RPk1HWZRbHsVYW0WRtfSSUP1szrGLQXgIogpvVLBFW2CCYXsdshghTEGP2ZA==, + } dependencies: '@babel/runtime': 7.22.15 '@react-pdf/png-js': 2.2.0 @@ -5622,17 +7035,26 @@ packages: dev: false /@react-pdf/png-js@2.2.0: - resolution: {integrity: sha512-csZU5lfNW73tq7s7zB/1rWXGro+Z9cQhxtsXwxS418TSszHUiM6PwddouiKJxdGhbVLjRIcuuFVa0aR5cDOC6w==} + resolution: + { + integrity: sha512-csZU5lfNW73tq7s7zB/1rWXGro+Z9cQhxtsXwxS418TSszHUiM6PwddouiKJxdGhbVLjRIcuuFVa0aR5cDOC6w==, + } dependencies: browserify-zlib: 0.2.0 dev: false /@react-pdf/primitives@3.0.1: - resolution: {integrity: sha512-0HGcknrLNwyhxe+SZCBL29JY4M85mXKdvTZE9uhjNbADGgTc8wVnkc5+e4S/lDvugbVISXyuIhZnYwtK9eDnyQ==} + resolution: + { + integrity: sha512-0HGcknrLNwyhxe+SZCBL29JY4M85mXKdvTZE9uhjNbADGgTc8wVnkc5+e4S/lDvugbVISXyuIhZnYwtK9eDnyQ==, + } dev: false /@react-pdf/render@3.2.1: - resolution: {integrity: sha512-eNIrdZzBuL9bcyaQt00kMqLymkLLdjUYkZBj2JU6+q33UyXXtVwceSqeoqFGvMd1svZ72Sk9r8xUKUvvoXqtKg==} + resolution: + { + integrity: sha512-eNIrdZzBuL9bcyaQt00kMqLymkLLdjUYkZBj2JU6+q33UyXXtVwceSqeoqFGvMd1svZ72Sk9r8xUKUvvoXqtKg==, + } dependencies: '@babel/runtime': 7.22.15 '@react-pdf/fns': 2.0.0 @@ -5647,7 +7069,10 @@ packages: dev: false /@react-pdf/renderer@2.3.0(react@18.2.0): - resolution: {integrity: sha512-JrKgQL6MwANRdsqo3eH8+SD2rNwhXBSy99NBsL4FrdndnuZrDe6/KQOTstaBpxKtn6CEZVrd3hkqgCh9/Oa9mQ==} + resolution: + { + integrity: sha512-JrKgQL6MwANRdsqo3eH8+SD2rNwhXBSy99NBsL4FrdndnuZrDe6/KQOTstaBpxKtn6CEZVrd3hkqgCh9/Oa9mQ==, + } peerDependencies: react: ^16.8.6 || ^17.0.0 dependencies: @@ -5668,7 +7093,10 @@ packages: dev: false /@react-pdf/stylesheet@4.0.0: - resolution: {integrity: sha512-R+17y/HpSmOBeFPaqH7P8R0Y7AbjM3izVZWYgM5BhQ52PdyTroIkVRMPEPTDSGXPGmsCS3lvyXFnjKOi+LdSgw==} + resolution: + { + integrity: sha512-R+17y/HpSmOBeFPaqH7P8R0Y7AbjM3izVZWYgM5BhQ52PdyTroIkVRMPEPTDSGXPGmsCS3lvyXFnjKOi+LdSgw==, + } dependencies: '@babel/runtime': 7.22.15 '@react-pdf/fns': 2.0.0 @@ -5680,7 +7108,10 @@ packages: dev: false /@react-pdf/textkit@4.1.0: - resolution: {integrity: sha512-B6HxLKu0JLcbwT46P75CGmvEGBggPrsiyWrPzRh1rW2V7EzQFRagsZCZJCnASOGR4kZKV7x47kJp289KD4XH2Q==} + resolution: + { + integrity: sha512-B6HxLKu0JLcbwT46P75CGmvEGBggPrsiyWrPzRh1rW2V7EzQFRagsZCZJCnASOGR4kZKV7x47kJp289KD4XH2Q==, + } dependencies: '@babel/runtime': 7.22.15 '@react-pdf/fns': 2.0.0 @@ -5689,23 +7120,35 @@ packages: dev: false /@react-pdf/types@2.1.0: - resolution: {integrity: sha512-PmmcPFlehRmLEE7p5bhapNya1NS3lV77dRNs9YEf1wNVbKsf10cF4yXDq813cNwm2YYIhCIgaU98O5GBBxMZaQ==} + resolution: + { + integrity: sha512-PmmcPFlehRmLEE7p5bhapNya1NS3lV77dRNs9YEf1wNVbKsf10cF4yXDq813cNwm2YYIhCIgaU98O5GBBxMZaQ==, + } dev: false /@react-pdf/yoga@3.0.0: - resolution: {integrity: sha512-vGgvriAIH1Tk1RO6xtQeHc3iPM1pAz+Vz1WZ9wRlsXsuBAk7ZhtbHxrf9F7O3sFPORcMryihdtqpBeq2ZzMtNQ==} + resolution: + { + integrity: sha512-vGgvriAIH1Tk1RO6xtQeHc3iPM1pAz+Vz1WZ9wRlsXsuBAk7ZhtbHxrf9F7O3sFPORcMryihdtqpBeq2ZzMtNQ==, + } dependencies: '@types/yoga-layout': 1.9.4 dev: false /@rgrove/parse-xml@4.1.0: - resolution: {integrity: sha512-pBiltENdy8SfI0AeR1e5TRpS9/9Gl0eiOEt6ful2jQfzsgvZYWqsKiBWaOCLdocQuk0wS7KOHI37n0C1pnKqTw==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-pBiltENdy8SfI0AeR1e5TRpS9/9Gl0eiOEt6ful2jQfzsgvZYWqsKiBWaOCLdocQuk0wS7KOHI37n0C1pnKqTw==, + } + engines: { node: '>=14.0.0' } dev: false /@rollup/plugin-commonjs@24.0.1(rollup@3.29.2): - resolution: {integrity: sha512-15LsiWRZk4eOGqvrJyu3z3DaBu5BhXIMeWnijSRvd8irrrg9SHpQ1pH+BUK4H6Z9wL9yOxZJMTLU+Au86XHxow==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-15LsiWRZk4eOGqvrJyu3z3DaBu5BhXIMeWnijSRvd8irrrg9SHpQ1pH+BUK4H6Z9wL9yOxZJMTLU+Au86XHxow==, + } + engines: { node: '>=14.0.0' } peerDependencies: rollup: ^2.68.0||^3.0.0 peerDependenciesMeta: @@ -5722,8 +7165,11 @@ packages: dev: true /@rollup/plugin-json@6.0.0(rollup@3.29.2): - resolution: {integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-i/4C5Jrdr1XUarRhVu27EEwjt4GObltD7c+MkCIpO2QIbojw8MUs+CCTqOphQi3Qtg1FLmYt+l+6YeoIf51J7w==, + } + engines: { node: '>=14.0.0' } peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0 peerDependenciesMeta: @@ -5735,8 +7181,11 @@ packages: dev: true /@rollup/plugin-node-resolve@15.0.1(rollup@3.29.2): - resolution: {integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==, + } + engines: { node: '>=14.0.0' } peerDependencies: rollup: ^2.78.0||^3.0.0 peerDependenciesMeta: @@ -5753,16 +7202,22 @@ packages: dev: true /@rollup/pluginutils@4.2.1: - resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} - engines: {node: '>= 8.0.0'} + resolution: + { + integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==, + } + engines: { node: '>= 8.0.0' } dependencies: estree-walker: 2.0.2 picomatch: 2.3.1 dev: true /@rollup/pluginutils@5.0.2(rollup@3.29.2): - resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==, + } + engines: { node: '>=14.0.0' } peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0 peerDependenciesMeta: @@ -5776,34 +7231,55 @@ packages: dev: true /@rushstack/eslint-patch@1.2.0: - resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} + resolution: + { + integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==, + } dev: true /@sinclair/typebox@0.25.24: - resolution: {integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==} + resolution: + { + integrity: sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==, + } /@sindresorhus/is@0.14.0: - resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==, + } + engines: { node: '>=6' } dev: true /@sindresorhus/is@4.6.0: - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==, + } + engines: { node: '>=10' } dev: true /@sinonjs/commons@2.0.0: - resolution: {integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==} + resolution: + { + integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==, + } dependencies: type-detect: 4.0.8 /@sinonjs/fake-timers@10.0.2: - resolution: {integrity: sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==} + resolution: + { + integrity: sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==, + } dependencies: '@sinonjs/commons': 2.0.0 /@sveltejs/adapter-auto@2.0.0(@sveltejs/kit@1.13.0): - resolution: {integrity: sha512-b+gkHFZgD771kgV3aO4avHFd7y1zhmMYy9i6xOK7m/rwmwaRO8gnF5zBc0Rgca80B2PMU1bKNxyBTHA14OzUAQ==} + resolution: + { + integrity: sha512-b+gkHFZgD771kgV3aO4avHFd7y1zhmMYy9i6xOK7m/rwmwaRO8gnF5zBc0Rgca80B2PMU1bKNxyBTHA14OzUAQ==, + } peerDependencies: '@sveltejs/kit': ^1.0.0 dependencies: @@ -5812,7 +7288,10 @@ packages: dev: false /@sveltejs/adapter-node@1.2.3(@sveltejs/kit@1.13.0): - resolution: {integrity: sha512-Fv6NyVpVWYA63KRaV6dDjcU8ytcWFiUr0siJOoHl+oWy5WHNEuRiJOUdiZzYbZo8MmvFaCoxHkTgPrVQhpqaRA==} + resolution: + { + integrity: sha512-Fv6NyVpVWYA63KRaV6dDjcU8ytcWFiUr0siJOoHl+oWy5WHNEuRiJOUdiZzYbZo8MmvFaCoxHkTgPrVQhpqaRA==, + } peerDependencies: '@sveltejs/kit': ^1.0.0 dependencies: @@ -5824,8 +7303,11 @@ packages: dev: true /@sveltejs/kit@1.13.0(svelte@3.57.0)(vite@4.4.9): - resolution: {integrity: sha512-t44xqlSTn/k+BridiJFTD8dCRPNd9msCSSPLZT+/3P9deNp/al6ed396MSpsskK7r2kevYmmxywK16qtn6Rvjw==} - engines: {node: ^16.14 || >=18} + resolution: + { + integrity: sha512-t44xqlSTn/k+BridiJFTD8dCRPNd9msCSSPLZT+/3P9deNp/al6ed396MSpsskK7r2kevYmmxywK16qtn6Rvjw==, + } + engines: { node: ^16.14 || >=18 } hasBin: true requiresBuild: true peerDependencies: @@ -5851,8 +7333,11 @@ packages: - supports-color /@sveltejs/vite-plugin-svelte@2.0.3(svelte@3.57.0)(vite@4.4.9): - resolution: {integrity: sha512-o+cguBFdwIGtRbNkYOyqTM7KvRUffxh5bfK4oJsWKG2obu+v/cbpT03tJrGl58C7tRXo/aEC0/axN5FVHBj0nA==} - engines: {node: ^14.18.0 || >= 16} + resolution: + { + integrity: sha512-o+cguBFdwIGtRbNkYOyqTM7KvRUffxh5bfK4oJsWKG2obu+v/cbpT03tJrGl58C7tRXo/aEC0/axN5FVHBj0nA==, + } + engines: { node: ^14.18.0 || >= 16 } peerDependencies: svelte: ^3.54.0 vite: ^4.0.0 @@ -5869,8 +7354,11 @@ packages: - supports-color /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.22.20): - resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==, + } + engines: { node: '>=14' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -5878,8 +7366,11 @@ packages: dev: true /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.22.20): - resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==, + } + engines: { node: '>=14' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -5887,8 +7378,11 @@ packages: dev: true /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.22.20): - resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==, + } + engines: { node: '>=14' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -5896,8 +7390,11 @@ packages: dev: true /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.22.20): - resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==, + } + engines: { node: '>=14' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -5905,8 +7402,11 @@ packages: dev: true /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.22.20): - resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==, + } + engines: { node: '>=14' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -5914,8 +7414,11 @@ packages: dev: true /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.22.20): - resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==, + } + engines: { node: '>=14' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -5923,8 +7426,11 @@ packages: dev: true /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.22.20): - resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==, + } + engines: { node: '>=14' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -5932,8 +7438,11 @@ packages: dev: true /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.22.20): - resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==, + } + engines: { node: '>=12' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -5941,8 +7450,11 @@ packages: dev: true /@svgr/babel-preset@8.1.0(@babel/core@7.22.20): - resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==, + } + engines: { node: '>=14' } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -5958,8 +7470,11 @@ packages: dev: true /@svgr/core@8.1.0: - resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==, + } + engines: { node: '>=14' } dependencies: '@babel/core': 7.22.20 '@svgr/babel-preset': 8.1.0(@babel/core@7.22.20) @@ -5971,16 +7486,22 @@ packages: dev: true /@svgr/hast-util-to-babel-ast@8.0.0: - resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==, + } + engines: { node: '>=14' } dependencies: '@babel/types': 7.22.19 entities: 4.5.0 dev: true /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0): - resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==, + } + engines: { node: '>=14' } peerDependencies: '@svgr/core': '*' dependencies: @@ -5994,8 +7515,11 @@ packages: dev: true /@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0): - resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==, + } + engines: { node: '>=14' } peerDependencies: '@svgr/core': '*' dependencies: @@ -6006,8 +7530,11 @@ packages: dev: true /@svgr/webpack@8.1.0: - resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==, + } + engines: { node: '>=14' } dependencies: '@babel/core': 7.22.20 '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.22.20) @@ -6022,15 +7549,21 @@ packages: dev: true /@swc-node/core@1.10.1(@swc/core@1.3.87): - resolution: {integrity: sha512-4aiqLb5Uz+zDt7oIMAtH69+l1BvKV3k7fMYNNLjgdSM7qmFwrpHwu+Ss9nOYPTCFlbKCUMP/70aD5Gt2skmJaw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-4aiqLb5Uz+zDt7oIMAtH69+l1BvKV3k7fMYNNLjgdSM7qmFwrpHwu+Ss9nOYPTCFlbKCUMP/70aD5Gt2skmJaw==, + } + engines: { node: '>= 10' } peerDependencies: '@swc/core': '>= 1.3' dependencies: '@swc/core': 1.3.87(@swc/helpers@0.5.2) /@swc-node/register@1.6.2(@swc/core@1.3.87)(typescript@5.2.2): - resolution: {integrity: sha512-7kzUOrw5RhSW23VU9RtEOlH71MQZ4cfUPgu245f3tKjYIu1CkxNJVX48FAiGJ6+3QgJMXLr1anT9FeeCmX12xw==} + resolution: + { + integrity: sha512-7kzUOrw5RhSW23VU9RtEOlH71MQZ4cfUPgu245f3tKjYIu1CkxNJVX48FAiGJ6+3QgJMXLr1anT9FeeCmX12xw==, + } peerDependencies: '@swc/core': '>= 1.3' typescript: '>= 4.3' @@ -6047,14 +7580,20 @@ packages: - supports-color /@swc-node/sourcemap-support@0.3.0: - resolution: {integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==} + resolution: + { + integrity: sha512-gqBJSmJMWomZFxlppaKea7NeAqFrDrrS0RMt24No92M3nJWcyI9YKGEQKl+EyJqZ5gh6w1s0cTklMHMzRwA1NA==, + } dependencies: source-map-support: 0.5.21 tslib: 2.6.2 /@swc/cli@0.1.62(@swc/core@1.3.87)(chokidar@3.5.3): - resolution: {integrity: sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==} - engines: {node: '>= 12.13'} + resolution: + { + integrity: sha512-kOFLjKY3XH1DWLfXL1/B5MizeNorHR8wHKEi92S/Zi9Md/AK17KSqR8MgyRJ6C1fhKHvbBCl8wboyKAFXStkYw==, + } + engines: { node: '>= 12.13' } hasBin: true peerDependencies: '@swc/core': ^1.2.66 @@ -6074,88 +7613,121 @@ packages: dev: true /@swc/core-darwin-arm64@1.3.87: - resolution: {integrity: sha512-/LxLjPat1LA9CXS7Cn2M4MIqwNOoDF4KjcikPkO08H54rd6WubhaJnr0sLDjms3adRr+pmcCL0yfsUBTX//85A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-/LxLjPat1LA9CXS7Cn2M4MIqwNOoDF4KjcikPkO08H54rd6WubhaJnr0sLDjms3adRr+pmcCL0yfsUBTX//85A==, + } + engines: { node: '>=10' } cpu: [arm64] os: [darwin] requiresBuild: true optional: true /@swc/core-darwin-x64@1.3.87: - resolution: {integrity: sha512-hjSQNcW9BN8gEz3UQZ7Ye80ymbkFHLkUDeEek4lorRyq6S+uxvbL1f1mJAZnFPBpove7AXusykIalWMPvyOR2A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-hjSQNcW9BN8gEz3UQZ7Ye80ymbkFHLkUDeEek4lorRyq6S+uxvbL1f1mJAZnFPBpove7AXusykIalWMPvyOR2A==, + } + engines: { node: '>=10' } cpu: [x64] os: [darwin] requiresBuild: true optional: true /@swc/core-linux-arm-gnueabihf@1.3.87: - resolution: {integrity: sha512-JVyNIO3tGLPSQ59rJXeKaykTpPhRNozB+7PtYMvMcxpUbYGpEzWxTPkFAX2KKPvl0ejBdA0GW5OXeuPMvTwE0w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-JVyNIO3tGLPSQ59rJXeKaykTpPhRNozB+7PtYMvMcxpUbYGpEzWxTPkFAX2KKPvl0ejBdA0GW5OXeuPMvTwE0w==, + } + engines: { node: '>=10' } cpu: [arm] os: [linux] requiresBuild: true optional: true /@swc/core-linux-arm64-gnu@1.3.87: - resolution: {integrity: sha512-gLdZKIoql5vjrNjrwwsiS7d3vOAIzYUWqN97iGCSscQOg0MgYbfUnSTO4UEvH4BYlwRNlHepfTZ7ALoG8areUQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-gLdZKIoql5vjrNjrwwsiS7d3vOAIzYUWqN97iGCSscQOg0MgYbfUnSTO4UEvH4BYlwRNlHepfTZ7ALoG8areUQ==, + } + engines: { node: '>=10' } cpu: [arm64] os: [linux] requiresBuild: true optional: true /@swc/core-linux-arm64-musl@1.3.87: - resolution: {integrity: sha512-WQ5tirVBiU8lUODQ25dt8JRCZHyRDInBe4fkGuxzImMa017zYPWa2WxrKK8LdDF7DzrAITlGl9VeoeE/l0WJbw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-WQ5tirVBiU8lUODQ25dt8JRCZHyRDInBe4fkGuxzImMa017zYPWa2WxrKK8LdDF7DzrAITlGl9VeoeE/l0WJbw==, + } + engines: { node: '>=10' } cpu: [arm64] os: [linux] requiresBuild: true optional: true /@swc/core-linux-x64-gnu@1.3.87: - resolution: {integrity: sha512-/vQSH7ZKOuT1It9GzpJ9UFnsOP/dQr1VLUrKQFBlHp9owIWNb2oUrZdNla+KhljCIIahh0JfQ08sycKeycCNzQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-/vQSH7ZKOuT1It9GzpJ9UFnsOP/dQr1VLUrKQFBlHp9owIWNb2oUrZdNla+KhljCIIahh0JfQ08sycKeycCNzQ==, + } + engines: { node: '>=10' } cpu: [x64] os: [linux] requiresBuild: true optional: true /@swc/core-linux-x64-musl@1.3.87: - resolution: {integrity: sha512-C1NUeISJDyMlIk4919bjcpHvjyjzbkjW7v53gUdN41Y4BPlEk7UKcLez7UHMjdMGA/o9721SLqYVp4/NrQErUw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-C1NUeISJDyMlIk4919bjcpHvjyjzbkjW7v53gUdN41Y4BPlEk7UKcLez7UHMjdMGA/o9721SLqYVp4/NrQErUw==, + } + engines: { node: '>=10' } cpu: [x64] os: [linux] requiresBuild: true optional: true /@swc/core-win32-arm64-msvc@1.3.87: - resolution: {integrity: sha512-AE7JKDJ0OsV9LsYGFfYKMTkGNfsy1au4RT5jT1rxr5MTOsmMD7P2mgiRF8drgc1WX3uOJbTHQfgdVTYroAGfdA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-AE7JKDJ0OsV9LsYGFfYKMTkGNfsy1au4RT5jT1rxr5MTOsmMD7P2mgiRF8drgc1WX3uOJbTHQfgdVTYroAGfdA==, + } + engines: { node: '>=10' } cpu: [arm64] os: [win32] requiresBuild: true optional: true /@swc/core-win32-ia32-msvc@1.3.87: - resolution: {integrity: sha512-2V+5uvisaTPXd5lvTujNLNlEC2LPo07gEUQVGdKGsbhtLAYAggVXBnHjxU1TkuyA6NlciMS59tPKW+L2u2KpTw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-2V+5uvisaTPXd5lvTujNLNlEC2LPo07gEUQVGdKGsbhtLAYAggVXBnHjxU1TkuyA6NlciMS59tPKW+L2u2KpTw==, + } + engines: { node: '>=10' } cpu: [ia32] os: [win32] requiresBuild: true optional: true /@swc/core-win32-x64-msvc@1.3.87: - resolution: {integrity: sha512-2Xak7TidlRuNQamLZC3fEOdUCmMiBzD2BW8+Dnn29f4odzamgAFfeYJ/PnqN7jdTWOINLn95tex4JBm3Pm11HQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-2Xak7TidlRuNQamLZC3fEOdUCmMiBzD2BW8+Dnn29f4odzamgAFfeYJ/PnqN7jdTWOINLn95tex4JBm3Pm11HQ==, + } + engines: { node: '>=10' } cpu: [x64] os: [win32] requiresBuild: true optional: true /@swc/core@1.3.87(@swc/helpers@0.5.2): - resolution: {integrity: sha512-u33Mi/EBvb+g/xpYKyxODB5XvKYqISmy81J+lhFS/Oahja0PbJWZdKEGwSQEFvBecp6E+PfaTOLPOoF1EWcRrw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-u33Mi/EBvb+g/xpYKyxODB5XvKYqISmy81J+lhFS/Oahja0PbJWZdKEGwSQEFvBecp6E+PfaTOLPOoF1EWcRrw==, + } + engines: { node: '>=10' } requiresBuild: true peerDependencies: '@swc/helpers': ^0.5.0 @@ -6178,18 +7750,27 @@ packages: '@swc/core-win32-x64-msvc': 1.3.87 /@swc/helpers@0.4.14: - resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} + resolution: + { + integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==, + } dependencies: tslib: 2.6.2 /@swc/helpers@0.5.2: - resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} + resolution: + { + integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==, + } dependencies: tslib: 2.5.0 /@swc/jest@0.2.24(@swc/core@1.3.87): - resolution: {integrity: sha512-fwgxQbM1wXzyKzl1+IW0aGrRvAA8k0Y3NxFhKigbPjOJ4mCKnWEcNX9HQS3gshflcxq8YKhadabGUVfdwjCr6Q==} - engines: {npm: '>= 7.0.0'} + resolution: + { + integrity: sha512-fwgxQbM1wXzyKzl1+IW0aGrRvAA8k0Y3NxFhKigbPjOJ4mCKnWEcNX9HQS3gshflcxq8YKhadabGUVfdwjCr6Q==, + } + engines: { npm: '>= 7.0.0' } peerDependencies: '@swc/core': '*' dependencies: @@ -6199,24 +7780,36 @@ packages: dev: true /@swc/types@0.1.5: - resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==} + resolution: + { + integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==, + } /@szmarczak/http-timer@1.1.2: - resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==, + } + engines: { node: '>=6' } dependencies: defer-to-connect: 1.1.3 dev: true /@szmarczak/http-timer@4.0.6: - resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==, + } + engines: { node: '>=10' } dependencies: defer-to-connect: 2.0.1 dev: true /@tabler/icons@1.111.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-TZWYiMT5ccqfHxRE0Qtgvl+sGsMbNkrv7cJMt/tm8TN9l/CDXx/o7d8uAwUN+3PAlSFfF5e/rD1bi1WJs2xNIA==} + resolution: + { + integrity: sha512-TZWYiMT5ccqfHxRE0Qtgvl+sGsMbNkrv7cJMt/tm8TN9l/CDXx/o7d8uAwUN+3PAlSFfF5e/rD1bi1WJs2xNIA==, + } peerDependencies: react: ^16.x || 17.x || 18.x react-dom: ^16.x || 17.x || 18.x @@ -6231,7 +7824,10 @@ packages: dev: false /@tailwindcss/forms@0.5.3(tailwindcss@3.2.7): - resolution: {integrity: sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==} + resolution: + { + integrity: sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==, + } peerDependencies: tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1' dependencies: @@ -6240,7 +7836,10 @@ packages: dev: true /@tailwindcss/typography@0.5.9(tailwindcss@3.2.7): - resolution: {integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==} + resolution: + { + integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==, + } peerDependencies: tailwindcss: '>=3.0.0 || insiders' dependencies: @@ -6252,8 +7851,11 @@ packages: dev: true /@testing-library/dom@9.0.1: - resolution: {integrity: sha512-fTOVsMY9QLFCCXRHG3Ese6cMH5qIWwSbgxZsgeF5TNsy81HKaZ4kgehnSF8FsR3OF+numlIV2YcU79MzbnhSig==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-fTOVsMY9QLFCCXRHG3Ese6cMH5qIWwSbgxZsgeF5TNsy81HKaZ4kgehnSF8FsR3OF+numlIV2YcU79MzbnhSig==, + } + engines: { node: '>=14' } dependencies: '@babel/code-frame': 7.18.6 '@babel/runtime': 7.21.0 @@ -6266,8 +7868,11 @@ packages: dev: true /@testing-library/react@14.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-S04gSNJbYE30TlIMLTzv6QCTzt9AqIF5y6s6SzVFILNcNvbV/jU96GeiTPillGQo+Ny64M/5PV7klNYYgv5Dfg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-S04gSNJbYE30TlIMLTzv6QCTzt9AqIF5y6s6SzVFILNcNvbV/jU96GeiTPillGQo+Ny64M/5PV7klNYYgv5Dfg==, + } + engines: { node: '>=14' } peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 @@ -6280,16 +7885,25 @@ packages: dev: true /@tokenizer/token@0.3.0: - resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==} + resolution: + { + integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==, + } dev: true /@tootallnate/once@2.0.0: - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==, + } + engines: { node: '>= 10' } dev: true /@trumbitta/nx-plugin-unused-deps@1.12.1(@nrwl/workspace@15.9.7): - resolution: {integrity: sha512-TmSp/rl0wvJ95CEQNxe/lBTYua9G4oCYVKcHdnTbhKbJWMWUuL6H3Tc5GiP9GMav9fb/BJUK33mfXlR+zjxHrQ==} + resolution: + { + integrity: sha512-TmSp/rl0wvJ95CEQNxe/lBTYua9G4oCYVKcHdnTbhKbJWMWUuL6H3Tc5GiP9GMav9fb/BJUK33mfXlR+zjxHrQ==, + } requiresBuild: true peerDependencies: '@nrwl/workspace': '>=13.0.0' @@ -6298,8 +7912,11 @@ packages: dev: true /@tryfabric/martian@1.2.4: - resolution: {integrity: sha512-g7SP7beaxrjxLnW//vskra07a1jsJowqp07KMouxh4gCwaF+ItHbRZN8O+1dhJivBi3VdasT71BPyk+8wzEreQ==} - engines: {node: '>=15'} + resolution: + { + integrity: sha512-g7SP7beaxrjxLnW//vskra07a1jsJowqp07KMouxh4gCwaF+ItHbRZN8O+1dhJivBi3VdasT71BPyk+8wzEreQ==, + } + engines: { node: '>=15' } dependencies: '@notionhq/client': 1.0.4 remark-gfm: 1.0.0 @@ -6312,12 +7929,18 @@ packages: dev: false /@trysound/sax@0.2.0: - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==, + } + engines: { node: '>=10.13.0' } dev: true /@ts-morph/common@0.11.1: - resolution: {integrity: sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==} + resolution: + { + integrity: sha512-7hWZS0NRpEsNV8vWJzg7FEz6V8MaLNeJOmwmghqUXTpzk16V1LLZhdo+4QvE/+zv4cVci0OviuJFnqhEfoV3+g==, + } dependencies: fast-glob: 3.2.12 minimatch: 3.1.2 @@ -6326,29 +7949,50 @@ packages: dev: true /@tsconfig/node10@1.0.9: - resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} + resolution: + { + integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==, + } /@tsconfig/node12@1.0.11: - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + resolution: + { + integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==, + } /@tsconfig/node14@1.0.3: - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + resolution: + { + integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, + } /@tsconfig/node16@1.0.3: - resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} + resolution: + { + integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==, + } /@types/adm-zip@0.5.0: - resolution: {integrity: sha512-FCJBJq9ODsQZUNURo5ILAQueuA8WJhRvuihS3ke2iI25mJlfV2LK8jG2Qj2z2AWg8U0FtWWqBHVRetceLskSaw==} + resolution: + { + integrity: sha512-FCJBJq9ODsQZUNURo5ILAQueuA8WJhRvuihS3ke2iI25mJlfV2LK8jG2Qj2z2AWg8U0FtWWqBHVRetceLskSaw==, + } dependencies: '@types/node': 18.15.11 dev: false /@types/aria-query@5.0.1: - resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} + resolution: + { + integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==, + } dev: true /@types/babel__core@7.1.19: - resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} + resolution: + { + integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==, + } dependencies: '@babel/parser': 7.21.2 '@babel/types': 7.21.2 @@ -6357,7 +8001,10 @@ packages: '@types/babel__traverse': 7.18.2 /@types/babel__core@7.20.0: - resolution: {integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==} + resolution: + { + integrity: sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==, + } dependencies: '@babel/parser': 7.21.2 '@babel/types': 7.22.19 @@ -6366,35 +8013,53 @@ packages: '@types/babel__traverse': 7.18.3 /@types/babel__generator@7.6.4: - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} + resolution: + { + integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==, + } dependencies: '@babel/types': 7.22.19 /@types/babel__template@7.4.1: - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} + resolution: + { + integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==, + } dependencies: '@babel/parser': 7.21.2 '@babel/types': 7.22.19 /@types/babel__traverse@7.18.2: - resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==} + resolution: + { + integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==, + } dependencies: '@babel/types': 7.22.19 /@types/babel__traverse@7.18.3: - resolution: {integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==} + resolution: + { + integrity: sha512-1kbcJ40lLB7MHsj39U4Sh1uTd2E7rLEa79kmDpI6cy+XiXsteB3POdQomoq4FxszMrO3ZYchkhYJw7A2862b3w==, + } dependencies: '@babel/types': 7.22.19 /@types/body-parser@1.19.2: - resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} + resolution: + { + integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==, + } dependencies: '@types/connect': 3.4.35 '@types/node': 18.15.11 dev: true /@types/cacheable-request@6.0.3: - resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + resolution: + { + integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==, + } dependencies: '@types/http-cache-semantics': 4.0.1 '@types/keyv': 3.1.4 @@ -6403,53 +8068,83 @@ packages: dev: true /@types/chai-subset@1.3.3: - resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} + resolution: + { + integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==, + } dependencies: '@types/chai': 4.3.6 dev: true /@types/chai@4.3.6: - resolution: {integrity: sha512-VOVRLM1mBxIRxydiViqPcKn6MIxZytrbMpd6RJLIWKxUNr3zux8no0Oc7kJx0WAPIitgZ0gkrDS+btlqQpubpw==} + resolution: + { + integrity: sha512-VOVRLM1mBxIRxydiViqPcKn6MIxZytrbMpd6RJLIWKxUNr3zux8no0Oc7kJx0WAPIitgZ0gkrDS+btlqQpubpw==, + } dev: true /@types/connect@3.4.35: - resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} + resolution: + { + integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==, + } dependencies: '@types/node': 18.15.11 dev: true /@types/cookie@0.5.1: - resolution: {integrity: sha512-COUnqfB2+ckwXXSFInsFdOAWQzCCx+a5hq2ruyj+Vjund94RJQd4LG2u9hnvJrTgunKAaax7ancBYlDrNYxA0g==} + resolution: + { + integrity: sha512-COUnqfB2+ckwXXSFInsFdOAWQzCCx+a5hq2ruyj+Vjund94RJQd4LG2u9hnvJrTgunKAaax7ancBYlDrNYxA0g==, + } /@types/debug@4.1.8: - resolution: {integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==} + resolution: + { + integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==, + } dependencies: '@types/ms': 0.7.31 /@types/eslint-scope@3.7.4: - resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} + resolution: + { + integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==, + } dependencies: '@types/eslint': 8.21.1 '@types/estree': 1.0.1 dev: true /@types/eslint@8.21.1: - resolution: {integrity: sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==} + resolution: + { + integrity: sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==, + } dependencies: '@types/estree': 1.0.1 '@types/json-schema': 7.0.11 dev: true /@types/estree@1.0.1: - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} + resolution: + { + integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==, + } dev: true /@types/eventsource@1.1.11: - resolution: {integrity: sha512-L7wLDZlWm5mROzv87W0ofIYeQP5K2UhoFnnUyEWLKM6UBb0ZNRgAqp98qE5DkgfBXdWfc2kYmw9KZm4NLjRbsw==} + resolution: + { + integrity: sha512-L7wLDZlWm5mROzv87W0ofIYeQP5K2UhoFnnUyEWLKM6UBb0ZNRgAqp98qE5DkgfBXdWfc2kYmw9KZm4NLjRbsw==, + } dev: false /@types/express-serve-static-core@4.17.31: - resolution: {integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==} + resolution: + { + integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==, + } dependencies: '@types/node': 18.15.11 '@types/qs': 6.9.7 @@ -6457,7 +8152,10 @@ packages: dev: true /@types/express@4.17.14: - resolution: {integrity: sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==} + resolution: + { + integrity: sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==, + } dependencies: '@types/body-parser': 1.19.2 '@types/express-serve-static-core': 4.17.31 @@ -6466,60 +8164,96 @@ packages: dev: true /@types/extend@3.0.1: - resolution: {integrity: sha512-R1g/VyKFFI2HLC1QGAeTtCBWCo6n75l41OnsVYNbmKG+kempOESaodf6BeJyUM3Q0rKa/NQcTHbB2+66lNnxLw==} + resolution: + { + integrity: sha512-R1g/VyKFFI2HLC1QGAeTtCBWCo6n75l41OnsVYNbmKG+kempOESaodf6BeJyUM3Q0rKa/NQcTHbB2+66lNnxLw==, + } /@types/fs-extra@11.0.1: - resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==} + resolution: + { + integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==, + } dependencies: '@types/jsonfile': 6.1.1 '@types/node': 18.15.11 dev: true /@types/github-slugger@1.3.0: - resolution: {integrity: sha512-J/rMZa7RqiH/rT29TEVZO4nBoDP9XJOjnbbIofg7GQKs4JIduEO3WLpte+6WeUz/TcrXKlY+bM7FYrp8yFB+3g==} + resolution: + { + integrity: sha512-J/rMZa7RqiH/rT29TEVZO4nBoDP9XJOjnbbIofg7GQKs4JIduEO3WLpte+6WeUz/TcrXKlY+bM7FYrp8yFB+3g==, + } dev: true /@types/graceful-fs@4.1.6: - resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} + resolution: + { + integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==, + } dependencies: '@types/node': 18.15.11 /@types/hast@2.3.4: - resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==} + resolution: + { + integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==, + } dependencies: '@types/unist': 2.0.6 dev: false /@types/http-cache-semantics@4.0.1: - resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==} + resolution: + { + integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==, + } dev: true /@types/istanbul-lib-coverage@2.0.4: - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + resolution: + { + integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==, + } /@types/istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} + resolution: + { + integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==, + } dependencies: '@types/istanbul-lib-coverage': 2.0.4 /@types/istanbul-reports@3.0.1: - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} + resolution: + { + integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==, + } dependencies: '@types/istanbul-lib-report': 3.0.0 /@types/jest@29.5.0: - resolution: {integrity: sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==} + resolution: + { + integrity: sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==, + } dependencies: expect: 29.5.0 pretty-format: 29.5.0 dev: true /@types/js-yaml@4.0.5: - resolution: {integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==} + resolution: + { + integrity: sha512-FhpRzf927MNQdRZP0J5DLIdTXhjLYzeUTmLAu69mnVksLH9CJY3IuSeEgbKUki7GQZm0WqDkGzyxju2EZGD2wA==, + } dev: true /@types/jsdom@20.0.1: - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + resolution: + { + integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==, + } dependencies: '@types/node': 18.15.11 '@types/tough-cookie': 4.0.2 @@ -6527,263 +8261,431 @@ packages: dev: true /@types/json-schema@7.0.11: - resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + resolution: + { + integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==, + } dev: true /@types/json-schema@7.0.12: - resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} + resolution: + { + integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==, + } dev: true /@types/json5@0.0.29: - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + resolution: + { + integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, + } dev: true /@types/jsonfile@6.1.1: - resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==} + resolution: + { + integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==, + } dependencies: '@types/node': 18.15.11 dev: true /@types/katex@0.11.1: - resolution: {integrity: sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg==} + resolution: + { + integrity: sha512-DUlIj2nk0YnJdlWgsFuVKcX27MLW0KbKmGVoUHmFr+74FYYNUDAaj9ZqTADvsbE8rfxuVmSFc7KczYn5Y09ozg==, + } dev: false /@types/keyv@3.1.4: - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + resolution: + { + integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, + } dependencies: '@types/node': 18.15.11 dev: true /@types/linkify-it@3.0.2: - resolution: {integrity: sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==} + resolution: + { + integrity: sha512-HZQYqbiFVWufzCwexrvh694SOim8z2d+xJl5UNamcvQFejLY/2YUtzXHYi3cHdI7PMlS8ejH2slRAOJQ32aNbA==, + } dev: true /@types/markdown-it@12.2.3: - resolution: {integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==} + resolution: + { + integrity: sha512-GKMHFfv3458yYy+v/N8gjufHO6MSZKCOXpZc5GXIWWy8uldwfmPn98vp81gZ5f9SVw8YYBctgfJ22a2d7AOMeQ==, + } dependencies: '@types/linkify-it': 3.0.2 '@types/mdurl': 1.0.2 dev: true /@types/mdast@3.0.11: - resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==} + resolution: + { + integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==, + } dependencies: '@types/unist': 2.0.6 /@types/mdurl@1.0.2: - resolution: {integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==} + resolution: + { + integrity: sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==, + } dev: true /@types/mime@3.0.1: - resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} + resolution: + { + integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==, + } dev: true /@types/minimist@1.2.2: - resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + resolution: + { + integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==, + } dev: true /@types/moo@0.5.5: - resolution: {integrity: sha512-eXQpwnkI4Ntw5uJg6i2PINdRFWLr55dqjuYQaLHNjvqTzF14QdNWbCbml9sza0byyXNA0hZlHtcdN+VNDcgVHA==} + resolution: + { + integrity: sha512-eXQpwnkI4Ntw5uJg6i2PINdRFWLr55dqjuYQaLHNjvqTzF14QdNWbCbml9sza0byyXNA0hZlHtcdN+VNDcgVHA==, + } dev: true /@types/ms@0.7.31: - resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} + resolution: + { + integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==, + } /@types/nearley@2.11.2: - resolution: {integrity: sha512-jeyIDNBxxyWyEk6HemDC+t32b4fxthVsgWDxf88qD2WpX0QpOyY8JvA80AElPTBGRUsO0EKnr6OeVOjK3ZDdnA==} + resolution: + { + integrity: sha512-jeyIDNBxxyWyEk6HemDC+t32b4fxthVsgWDxf88qD2WpX0QpOyY8JvA80AElPTBGRUsO0EKnr6OeVOjK3ZDdnA==, + } dev: true /@types/nlcst@1.0.0: - resolution: {integrity: sha512-3TGCfOcy8R8mMQ4CNSNOe3PG66HttvjcLzCoOpvXvDtfWOTi+uT/rxeOKm/qEwbM4SNe1O/PjdiBK2YcTjU4OQ==} + resolution: + { + integrity: sha512-3TGCfOcy8R8mMQ4CNSNOe3PG66HttvjcLzCoOpvXvDtfWOTi+uT/rxeOKm/qEwbM4SNe1O/PjdiBK2YcTjU4OQ==, + } dependencies: '@types/unist': 2.0.6 /@types/node-fetch@2.6.2: - resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} + resolution: + { + integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==, + } dependencies: '@types/node': 18.15.11 form-data: 3.0.1 /@types/node@18.15.11: - resolution: {integrity: sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==} + resolution: + { + integrity: sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==, + } /@types/node@18.17.18: - resolution: {integrity: sha512-/4QOuy3ZpV7Ya1GTRz5CYSz3DgkKpyUptXuQ5PPce7uuyJAOR7r9FhkmxJfvcNUXyklbC63a+YvB3jxy7s9ngw==} + resolution: + { + integrity: sha512-/4QOuy3ZpV7Ya1GTRz5CYSz3DgkKpyUptXuQ5PPce7uuyJAOR7r9FhkmxJfvcNUXyklbC63a+YvB3jxy7s9ngw==, + } dev: true /@types/normalize-package-data@2.4.1: - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + resolution: + { + integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==, + } dev: true /@types/parse-json@4.0.0: - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} + resolution: + { + integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, + } /@types/parse5@6.0.3: - resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} + resolution: + { + integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==, + } dev: false /@types/prettier@2.7.1: - resolution: {integrity: sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==} + resolution: + { + integrity: sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==, + } /@types/prop-types@15.7.5: - resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} + resolution: + { + integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, + } /@types/pug@2.0.6: - resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==} + resolution: + { + integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==, + } dev: true /@types/qs@6.9.7: - resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} + resolution: + { + integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==, + } dev: true /@types/quill@1.3.10: - resolution: {integrity: sha512-IhW3fPW+bkt9MLNlycw8u8fWb7oO7W5URC9MfZYHBlA24rex9rs23D5DETChu1zvgVdc5ka64ICjJOgQMr6Shw==} + resolution: + { + integrity: sha512-IhW3fPW+bkt9MLNlycw8u8fWb7oO7W5URC9MfZYHBlA24rex9rs23D5DETChu1zvgVdc5ka64ICjJOgQMr6Shw==, + } dependencies: parchment: 1.1.4 dev: false /@types/range-parser@1.2.4: - resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} + resolution: + { + integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==, + } dev: true /@types/react-dom@18.2.6: - resolution: {integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==} + resolution: + { + integrity: sha512-2et4PDvg6PVCyS7fuTc4gPoksV58bW0RwSxWKcPRcHZf0PRUGq03TKcD/rUHe3azfV6/5/biUBJw+HhCQjaP0A==, + } dependencies: '@types/react': 18.2.14 dev: true /@types/react-file-icon@1.0.1: - resolution: {integrity: sha512-QTdYCkYXzh/PfKEIwcPxRdaPQkii5R4Ke7fcO+KB++IDPbYAG1jj+ulEcTA7pRf0gZ5jAvjWcTXBJJRtfYHjlw==} + resolution: + { + integrity: sha512-QTdYCkYXzh/PfKEIwcPxRdaPQkii5R4Ke7fcO+KB++IDPbYAG1jj+ulEcTA7pRf0gZ5jAvjWcTXBJJRtfYHjlw==, + } dependencies: '@types/react': 18.2.14 dev: true /@types/react-syntax-highlighter@15.5.6: - resolution: {integrity: sha512-i7wFuLbIAFlabTeD2I1cLjEOrG/xdMa/rpx2zwzAoGHuXJDhSqp9BSfDlMHSh9JSuNfxHk9eEmMX6D55GiyjGg==} + resolution: + { + integrity: sha512-i7wFuLbIAFlabTeD2I1cLjEOrG/xdMa/rpx2zwzAoGHuXJDhSqp9BSfDlMHSh9JSuNfxHk9eEmMX6D55GiyjGg==, + } dependencies: '@types/react': 18.2.14 dev: true /@types/react@18.2.14: - resolution: {integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==} + resolution: + { + integrity: sha512-A0zjq+QN/O0Kpe30hA1GidzyFjatVvrpIvWLxD+xv67Vt91TWWgco9IvrJBkeyHm1trGaFS/FSGqPlhyeZRm0g==, + } dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.3 csstype: 3.1.1 /@types/resolve@1.20.2: - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + resolution: + { + integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==, + } dev: true /@types/responselike@1.0.0: - resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} + resolution: + { + integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==, + } dependencies: '@types/node': 18.15.11 dev: true /@types/scheduler@0.16.3: - resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} + resolution: + { + integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==, + } /@types/semver@7.3.13: - resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} + resolution: + { + integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==, + } dev: true /@types/serve-static@1.15.0: - resolution: {integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==} + resolution: + { + integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==, + } dependencies: '@types/mime': 3.0.1 '@types/node': 18.15.11 dev: true /@types/similarity@1.2.1: - resolution: {integrity: sha512-cScvZE56xfvAUZQGdZorwRsxr7FP/bmP08VLm5fJfxwhTBQ3zNojqFvrMFrGEUygZ9ZvfWyG6BiRB0hENwKGDg==} + resolution: + { + integrity: sha512-cScvZE56xfvAUZQGdZorwRsxr7FP/bmP08VLm5fJfxwhTBQ3zNojqFvrMFrGEUygZ9ZvfWyG6BiRB0hENwKGDg==, + } dev: true /@types/sinonjs__fake-timers@8.1.1: - resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + resolution: + { + integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==, + } dev: true /@types/sizzle@2.3.3: - resolution: {integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==} + resolution: + { + integrity: sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==, + } dev: true /@types/stack-utils@2.0.1: - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + resolution: + { + integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==, + } /@types/stream-buffers@3.0.4: - resolution: {integrity: sha512-qU/K1tb2yUdhXkLIATzsIPwbtX6BpZk0l3dPW6xqWyhfzzM1ECaQ/8faEnu3CNraLiQ9LHyQQPBGp7N9Fbs25w==} + resolution: + { + integrity: sha512-qU/K1tb2yUdhXkLIATzsIPwbtX6BpZk0l3dPW6xqWyhfzzM1ECaQ/8faEnu3CNraLiQ9LHyQQPBGp7N9Fbs25w==, + } dependencies: '@types/node': 18.15.11 dev: true /@types/supports-color@8.1.1: - resolution: {integrity: sha512-dPWnWsf+kzIG140B8z2w3fr5D03TLWbOAFQl45xUpI3vcizeXriNR5VYkWZ+WTMsUHqZ9Xlt3hrxGNANFyNQfw==} + resolution: + { + integrity: sha512-dPWnWsf+kzIG140B8z2w3fr5D03TLWbOAFQl45xUpI3vcizeXriNR5VYkWZ+WTMsUHqZ9Xlt3hrxGNANFyNQfw==, + } dev: false /@types/tar-stream@2.2.2: - resolution: {integrity: sha512-1AX+Yt3icFuU6kxwmPakaiGrJUwG44MpuiqPg4dSolRFk6jmvs4b3IbUol9wKDLIgU76gevn3EwE8y/DkSJCZQ==} + resolution: + { + integrity: sha512-1AX+Yt3icFuU6kxwmPakaiGrJUwG44MpuiqPg4dSolRFk6jmvs4b3IbUol9wKDLIgU76gevn3EwE8y/DkSJCZQ==, + } dependencies: '@types/node': 18.15.11 dev: true /@types/tar@6.1.4: - resolution: {integrity: sha512-Cp4oxpfIzWt7mr2pbhHT2OTXGMAL0szYCzuf8lRWyIMCgsx6/Hfc3ubztuhvzXHXgraTQxyOCmmg7TDGIMIJJQ==} + resolution: + { + integrity: sha512-Cp4oxpfIzWt7mr2pbhHT2OTXGMAL0szYCzuf8lRWyIMCgsx6/Hfc3ubztuhvzXHXgraTQxyOCmmg7TDGIMIJJQ==, + } dependencies: '@types/node': 18.15.11 minipass: 4.2.5 dev: true /@types/tmp@0.2.3: - resolution: {integrity: sha512-dDZH/tXzwjutnuk4UacGgFRwV+JSLaXL1ikvidfJprkb7L9Nx1njcRHHmi3Dsvt7pgqqTEeucQuOrWHPFgzVHA==} + resolution: + { + integrity: sha512-dDZH/tXzwjutnuk4UacGgFRwV+JSLaXL1ikvidfJprkb7L9Nx1njcRHHmi3Dsvt7pgqqTEeucQuOrWHPFgzVHA==, + } dev: true /@types/tough-cookie@4.0.2: - resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==} + resolution: + { + integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==, + } dev: true /@types/unist@2.0.6: - resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} + resolution: + { + integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==, + } /@types/xast@1.0.2: - resolution: {integrity: sha512-eIuX49CmWaXTh0hDEQTFH5MbTV+NPm0FM5gB36nDcr9x8n75t9o7wy2guS1lakkQxtUwfVDYiokqvHk3x0CC4Q==} + resolution: + { + integrity: sha512-eIuX49CmWaXTh0hDEQTFH5MbTV+NPm0FM5gB36nDcr9x8n75t9o7wy2guS1lakkQxtUwfVDYiokqvHk3x0CC4Q==, + } dependencies: '@types/unist': 2.0.6 dev: false /@types/yargs-parser@21.0.0: - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + resolution: + { + integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==, + } /@types/yargs@15.0.15: - resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==} + resolution: + { + integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==, + } dependencies: '@types/yargs-parser': 21.0.0 dev: false /@types/yargs@16.0.5: - resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==} + resolution: + { + integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==, + } dependencies: '@types/yargs-parser': 21.0.0 dev: true /@types/yargs@17.0.24: - resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==} + resolution: + { + integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==, + } dependencies: '@types/yargs-parser': 21.0.0 /@types/yauzl@2.10.0: - resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} + resolution: + { + integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==, + } requiresBuild: true dependencies: '@types/node': 18.15.11 dev: true /@types/yoga-layout@1.9.4: - resolution: {integrity: sha512-RRHc1+8Hc5mf/2lZKnom6kCnqcNS07s8keahniWTOva0KELF6RgDJmaEcvGEKUUJgN4UgessmEsWuidaOycIOw==} + resolution: + { + integrity: sha512-RRHc1+8Hc5mf/2lZKnom6kCnqcNS07s8keahniWTOva0KELF6RgDJmaEcvGEKUUJgN4UgessmEsWuidaOycIOw==, + } dev: false /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.46.0)(typescript@5.2.2): - resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: '@typescript-eslint/parser': ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -6810,8 +8712,11 @@ packages: dev: true /@typescript-eslint/parser@5.62.0(eslint@8.46.0)(typescript@5.2.2): - resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 typescript: '*' @@ -6830,16 +8735,22 @@ packages: dev: true /@typescript-eslint/scope-manager@5.62.0: - resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 dev: true /@typescript-eslint/type-utils@5.62.0(eslint@8.46.0)(typescript@5.2.2): - resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: '*' typescript: '*' @@ -6858,13 +8769,19 @@ packages: dev: true /@typescript-eslint/types@5.62.0: - resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true /@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2): - resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: typescript: '*' peerDependenciesMeta: @@ -6884,8 +8801,11 @@ packages: dev: true /@typescript-eslint/utils@5.62.0(eslint@8.46.0)(typescript@5.2.2): - resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: @@ -6904,15 +8824,21 @@ packages: dev: true /@typescript-eslint/visitor-keys@5.62.0: - resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 dev: true /@typescript/analyze-trace@0.9.1: - resolution: {integrity: sha512-HIWrYxz106aoJJauaCb08fK2XjH17KpuELEfWlgq72hYucEo3Hwtr0bCKE6EM2t2uUNEBvPG1tuYRU2yiF/qlg==} + resolution: + { + integrity: sha512-HIWrYxz106aoJJauaCb08fK2XjH17KpuELEfWlgq72hYucEo3Hwtr0bCKE6EM2t2uUNEBvPG1tuYRU2yiF/qlg==, + } hasBin: true dependencies: chalk: 4.1.2 @@ -6926,13 +8852,19 @@ packages: dev: true /@unified-latex/unified-latex-builder@1.3.1: - resolution: {integrity: sha512-X2nUVgrdGz5QwCFtQGheI3cw0DmyPKVHY6XZkOy316UVLZVGYKhvsFpdIguXGfcrlz7McyXa6NoFew3N/EP/lQ==} + resolution: + { + integrity: sha512-X2nUVgrdGz5QwCFtQGheI3cw0DmyPKVHY6XZkOy316UVLZVGYKhvsFpdIguXGfcrlz7McyXa6NoFew3N/EP/lQ==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 dev: false /@unified-latex/unified-latex-ctan@1.3.1: - resolution: {integrity: sha512-H9YonJiGiRhOYstrCX9TCsrXiZHKIoBXxT7E4XNa6TC86Zx9Lck4dH65JkW8Eb0BOO8zsFHjVuRIYVrt8MZiMQ==} + resolution: + { + integrity: sha512-H9YonJiGiRhOYstrCX9TCsrXiZHKIoBXxT7E4XNa6TC86Zx9Lck4dH65JkW8Eb0BOO8zsFHjVuRIYVrt8MZiMQ==, + } dependencies: '@unified-latex/unified-latex-builder': 1.3.1 '@unified-latex/unified-latex-types': 1.3.1 @@ -6952,7 +8884,10 @@ packages: dev: false /@unified-latex/unified-latex-prettier@1.3.1: - resolution: {integrity: sha512-P234E5Crn3ulNor+k3CDlFo99wJvW0uCxwHvdGd4so2aMilVwmZbzQMMc2BseC5VWT5wPLlZo7ow5mQctVTf+g==} + resolution: + { + integrity: sha512-P234E5Crn3ulNor+k3CDlFo99wJvW0uCxwHvdGd4so2aMilVwmZbzQMMc2BseC5VWT5wPLlZo7ow5mQctVTf+g==, + } dependencies: '@unified-latex/unified-latex-ctan': 1.3.1 '@unified-latex/unified-latex-types': 1.3.1 @@ -6968,11 +8903,17 @@ packages: dev: false /@unified-latex/unified-latex-types@1.3.1: - resolution: {integrity: sha512-697Wc68b6HC4pG9+Gpt9hvZYJUeKQzNGY3ONTVERN3Sqfngd64i2p1Yh1dcqMxspckXaXwIn72XHRBSofITxSw==} + resolution: + { + integrity: sha512-697Wc68b6HC4pG9+Gpt9hvZYJUeKQzNGY3ONTVERN3Sqfngd64i2p1Yh1dcqMxspckXaXwIn72XHRBSofITxSw==, + } dev: false /@unified-latex/unified-latex-util-align@1.3.1: - resolution: {integrity: sha512-Ym3Xhf7sNkIqLlETkEqC5eFotvkTyXB+Ee9Y7bo1O11qZ+AhwpkyG7E2Crcjw0oToURe3xDQzjMvkNTbFL/OOQ==} + resolution: + { + integrity: sha512-Ym3Xhf7sNkIqLlETkEqC5eFotvkTyXB+Ee9Y7bo1O11qZ+AhwpkyG7E2Crcjw0oToURe3xDQzjMvkNTbFL/OOQ==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-match': 1.3.1 @@ -6980,13 +8921,19 @@ packages: dev: false /@unified-latex/unified-latex-util-argspec@1.3.1: - resolution: {integrity: sha512-nKFq2ziVxJpRt6oE08HnpGMOugfgRHDsf9ydO7mzhOpVxDbVbr7y0T71CnJOwFZz6lFJJIsFv/J2yiKNtYD1TA==} + resolution: + { + integrity: sha512-nKFq2ziVxJpRt6oE08HnpGMOugfgRHDsf9ydO7mzhOpVxDbVbr7y0T71CnJOwFZz6lFJJIsFv/J2yiKNtYD1TA==, + } dependencies: '@unified-latex/unified-latex-util-pegjs': 1.3.1 dev: false /@unified-latex/unified-latex-util-arguments@1.3.1: - resolution: {integrity: sha512-mOz6QVHE4nBEQypqN+f0PY/17HVBZ8cCjNopGKCS1o1ZEFXHvrjOPYVrJlKHpKFqmoSs6Nk4uiGISA1d9u51Aw==} + resolution: + { + integrity: sha512-mOz6QVHE4nBEQypqN+f0PY/17HVBZ8cCjNopGKCS1o1ZEFXHvrjOPYVrJlKHpKFqmoSs6Nk4uiGISA1d9u51Aw==, + } dependencies: '@unified-latex/unified-latex-builder': 1.3.1 '@unified-latex/unified-latex-types': 1.3.1 @@ -6999,7 +8946,10 @@ packages: dev: false /@unified-latex/unified-latex-util-catcode@1.3.1: - resolution: {integrity: sha512-Vr++2ahMIUri1WcFND616hIjRejQRWcMH4P81zbwCY2w47OIl6oQkEffc6HTcmvlsC8dedGQp5C/xRq9EztRSQ==} + resolution: + { + integrity: sha512-Vr++2ahMIUri1WcFND616hIjRejQRWcMH4P81zbwCY2w47OIl6oQkEffc6HTcmvlsC8dedGQp5C/xRq9EztRSQ==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-match': 1.3.1 @@ -7007,7 +8957,10 @@ packages: dev: false /@unified-latex/unified-latex-util-comments@1.3.1: - resolution: {integrity: sha512-y6ZqhhpGK+nxC19ANHWHo77GE440HjRmTvy1+p6wB3GNbILKAvwrpwLMp/tcOEs2A/p2i2BYmxBc5239trhS3Q==} + resolution: + { + integrity: sha512-y6ZqhhpGK+nxC19ANHWHo77GE440HjRmTvy1+p6wB3GNbILKAvwrpwLMp/tcOEs2A/p2i2BYmxBc5239trhS3Q==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-match': 1.3.1 @@ -7015,7 +8968,10 @@ packages: dev: false /@unified-latex/unified-latex-util-environments@1.3.1: - resolution: {integrity: sha512-YsZiZBKLxLKv/WX+CMQLCmhR2HeAC0ZtjgXj/aNqAP0uXN7UTC2N6SA2WodPtd7j2kMn+rv852DQCxffOU1Mfw==} + resolution: + { + integrity: sha512-YsZiZBKLxLKv/WX+CMQLCmhR2HeAC0ZtjgXj/aNqAP0uXN7UTC2N6SA2WodPtd7j2kMn+rv852DQCxffOU1Mfw==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-arguments': 1.3.1 @@ -7027,14 +8983,20 @@ packages: dev: false /@unified-latex/unified-latex-util-match@1.3.1: - resolution: {integrity: sha512-tFgcbL8bMOVvOt9+ADzaiPZTN+P6bECu1sUNNdS/uVK+MXhr/1iJDfOkaJEoKGYEScyivS3i2gtVsJW4VM+QIQ==} + resolution: + { + integrity: sha512-tFgcbL8bMOVvOt9+ADzaiPZTN+P6bECu1sUNNdS/uVK+MXhr/1iJDfOkaJEoKGYEScyivS3i2gtVsJW4VM+QIQ==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-print-raw': 1.3.1 dev: false /@unified-latex/unified-latex-util-parse@1.3.1: - resolution: {integrity: sha512-QstGPhdZhHbRG3uafrvm5SrCYmc8WRdp3Rn67XgzVh20NHHDJ2mGbS5dQEhw4MfYcZYK5Z+JUMOEzxpm65welQ==} + resolution: + { + integrity: sha512-QstGPhdZhHbRG3uafrvm5SrCYmc8WRdp3Rn67XgzVh20NHHDJ2mGbS5dQEhw4MfYcZYK5Z+JUMOEzxpm65welQ==, + } dependencies: '@unified-latex/unified-latex-ctan': 1.3.1 '@unified-latex/unified-latex-types': 1.3.1 @@ -7050,14 +9012,20 @@ packages: dev: false /@unified-latex/unified-latex-util-pegjs@1.3.1: - resolution: {integrity: sha512-iRM3gteoqbVG7qr8h4byJavJOfnNlqkGcleWRG40242NxQfavVlaRtCNcBi0agyqgQ5kCgFHSvqDI8V7FvPflg==} + resolution: + { + integrity: sha512-iRM3gteoqbVG7qr8h4byJavJOfnNlqkGcleWRG40242NxQfavVlaRtCNcBi0agyqgQ5kCgFHSvqDI8V7FvPflg==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-match': 1.3.1 dev: false /@unified-latex/unified-latex-util-pgfkeys@1.3.1: - resolution: {integrity: sha512-1UpBO8VtBvs6TwcH5TPLv8TpwJlCg1UOxLeQnJ/Yzzb2r+2oU4oZP+q81d0RTe7hXYg541i0jcTBhaWKilAWiA==} + resolution: + { + integrity: sha512-1UpBO8VtBvs6TwcH5TPLv8TpwJlCg1UOxLeQnJ/Yzzb2r+2oU4oZP+q81d0RTe7hXYg541i0jcTBhaWKilAWiA==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-match': 1.3.1 @@ -7066,20 +9034,29 @@ packages: dev: false /@unified-latex/unified-latex-util-print-raw@1.3.1: - resolution: {integrity: sha512-c2LiNMdr4UBR9r+lzW3EdW7wlpcCpaeHIR5vO8vpD7KRF2sajshgeBD7ZhJ++t0axr6HTKTKy4JN12zV2UIotQ==} + resolution: + { + integrity: sha512-c2LiNMdr4UBR9r+lzW3EdW7wlpcCpaeHIR5vO8vpD7KRF2sajshgeBD7ZhJ++t0axr6HTKTKy4JN12zV2UIotQ==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 dev: false /@unified-latex/unified-latex-util-render-info@1.3.1: - resolution: {integrity: sha512-9eVQw0iIDiycJo+UkSF5BnjEgWCZLzTxtRwFQ3djNXSoJnrGLBKsb3Q5/ZhgkCvFgXKFgvynzRApg12sT6R99g==} + resolution: + { + integrity: sha512-9eVQw0iIDiycJo+UkSF5BnjEgWCZLzTxtRwFQ3djNXSoJnrGLBKsb3Q5/ZhgkCvFgXKFgvynzRApg12sT6R99g==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-visit': 1.3.1 dev: false /@unified-latex/unified-latex-util-replace@1.3.1: - resolution: {integrity: sha512-hqYJ8eTp2ZLO13ZBT8IGCSP+EkC0UR2d3ds9xycEy+kzL1bnIno0E5g5MfIKk4A1zptPh28msbPy/8gsD/S5jg==} + resolution: + { + integrity: sha512-hqYJ8eTp2ZLO13ZBT8IGCSP+EkC0UR2d3ds9xycEy+kzL1bnIno0E5g5MfIKk4A1zptPh28msbPy/8gsD/S5jg==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-match': 1.3.1 @@ -7090,7 +9067,10 @@ packages: dev: false /@unified-latex/unified-latex-util-scan@1.3.1: - resolution: {integrity: sha512-mMG0wRKcUlz0oryeo7eKhsFEYs9W2FLPNuT4pPUgJNkVOrWMRfgnBXlY+3MeGFSM5GWa90BK3loLcMwtR0FmSw==} + resolution: + { + integrity: sha512-mMG0wRKcUlz0oryeo7eKhsFEYs9W2FLPNuT4pPUgJNkVOrWMRfgnBXlY+3MeGFSM5GWa90BK3loLcMwtR0FmSw==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-match': 1.3.1 @@ -7099,14 +9079,20 @@ packages: dev: false /@unified-latex/unified-latex-util-split@1.3.1: - resolution: {integrity: sha512-OCeRB2tbp7P1yzAP0tCrSBm4D3LS0angf6UH4rX7PzhxalKNyo6K4oIHsp5zavaoBtxJ7LvdNnc9hXrxhBSnIg==} + resolution: + { + integrity: sha512-OCeRB2tbp7P1yzAP0tCrSBm4D3LS0angf6UH4rX7PzhxalKNyo6K4oIHsp5zavaoBtxJ7LvdNnc9hXrxhBSnIg==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-match': 1.3.1 dev: false /@unified-latex/unified-latex-util-to-string@1.3.1: - resolution: {integrity: sha512-E+Xc+DuZcLnWNysNiZT4N/AkhvyMaw80QBBUQ7z9bp5ZETnVRNgLmjA7IfajvNijvQ2cP1iX4cgxwUG5UpAeGg==} + resolution: + { + integrity: sha512-E+Xc+DuZcLnWNysNiZT4N/AkhvyMaw80QBBUQ7z9bp5ZETnVRNgLmjA7IfajvNijvQ2cP1iX4cgxwUG5UpAeGg==, + } dependencies: '@unified-latex/unified-latex-prettier': 1.3.1 '@unified-latex/unified-latex-types': 1.3.1 @@ -7116,7 +9102,10 @@ packages: dev: false /@unified-latex/unified-latex-util-trim@1.3.1: - resolution: {integrity: sha512-spCHOJ5fl2qqVthTnFe2jG8Tii3j/YLgN2n7ajj+BGc23o8Dv89sQNfUDOnCgvToaLdA5KeQFMixta6ewxxV0Q==} + resolution: + { + integrity: sha512-spCHOJ5fl2qqVthTnFe2jG8Tii3j/YLgN2n7ajj+BGc23o8Dv89sQNfUDOnCgvToaLdA5KeQFMixta6ewxxV0Q==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-match': 1.3.1 @@ -7126,14 +9115,20 @@ packages: dev: false /@unified-latex/unified-latex-util-visit@1.3.1: - resolution: {integrity: sha512-bBAA23VpPQZ6b1kDdfcTVsZqd82V3YX3nRHAIThH6cZ6802gn2cNW2DnmYV738gegcbA74LgPREPv3mkUWe+HA==} + resolution: + { + integrity: sha512-bBAA23VpPQZ6b1kDdfcTVsZqd82V3YX3nRHAIThH6cZ6802gn2cNW2DnmYV738gegcbA74LgPREPv3mkUWe+HA==, + } dependencies: '@unified-latex/unified-latex-types': 1.3.1 '@unified-latex/unified-latex-util-match': 1.3.1 dev: false /@vercel/analytics@0.1.11(react@18.2.0): - resolution: {integrity: sha512-mj5CPR02y0BRs1tN3oZcBNAX9a8NxsIUl9vElDPcqxnMfP0RbRc9fI9Ud7+QDg/1Izvt5uMumsr+6YsmVHcyuw==} + resolution: + { + integrity: sha512-mj5CPR02y0BRs1tN3oZcBNAX9a8NxsIUl9vElDPcqxnMfP0RbRc9fI9Ud7+QDg/1Izvt5uMumsr+6YsmVHcyuw==, + } peerDependencies: react: ^16.8||^17||^18 dependencies: @@ -7141,23 +9136,38 @@ packages: dev: false /@vercel/build-utils@5.3.0: - resolution: {integrity: sha512-l6FWKyayVN1W8RlKMn42vWdqqcF84O8i8hArGg+O4RUqW2bNjis/cO5OU/UE9rUTp9R9oMyeMoUep+6xmT/7JQ==} + resolution: + { + integrity: sha512-l6FWKyayVN1W8RlKMn42vWdqqcF84O8i8hArGg+O4RUqW2bNjis/cO5OU/UE9rUTp9R9oMyeMoUep+6xmT/7JQ==, + } dev: true /@vercel/go@2.1.0: - resolution: {integrity: sha512-poCg/0wZffB7fdVxiMnNJR7Cq6mVYBLmlv0PWtBTE7IigYoiIgEVWlpaotOX7GQNGvPRZ8oEdCOYZhDDuYkVng==} + resolution: + { + integrity: sha512-poCg/0wZffB7fdVxiMnNJR7Cq6mVYBLmlv0PWtBTE7IigYoiIgEVWlpaotOX7GQNGvPRZ8oEdCOYZhDDuYkVng==, + } dev: true /@vercel/hydrogen@0.0.13: - resolution: {integrity: sha512-PeiP8CszcaOoxDh4/zdZPJ5YKeiKQA8RR9WC/BUDxg15suHP8lOfbpHZUgRX2WF872YgsCs7y3nCOkGZq0YY0Q==} + resolution: + { + integrity: sha512-PeiP8CszcaOoxDh4/zdZPJ5YKeiKQA8RR9WC/BUDxg15suHP8lOfbpHZUgRX2WF872YgsCs7y3nCOkGZq0YY0Q==, + } dev: true /@vercel/next@3.1.17: - resolution: {integrity: sha512-CWmWZZ8OItNBtAEw2cfzkzbIxoHldO5LGkJmiISbNPqNBSSy19lzfA8gHwcUO7wjj42aGYdkvtApFDUcp3nqPg==} + resolution: + { + integrity: sha512-CWmWZZ8OItNBtAEw2cfzkzbIxoHldO5LGkJmiISbNPqNBSSy19lzfA8gHwcUO7wjj42aGYdkvtApFDUcp3nqPg==, + } dev: true /@vercel/nft@0.21.0: - resolution: {integrity: sha512-hFCAETfI5cG8l5iAiLhMC2bReC5K7SIybzrxGorv+eGspIbIFsVw7Vg85GovXm/LxA08pIDrAlrhR6GN36XB/Q==} + resolution: + { + integrity: sha512-hFCAETfI5cG8l5iAiLhMC2bReC5K7SIybzrxGorv+eGspIbIFsVw7Vg85GovXm/LxA08pIDrAlrhR6GN36XB/Q==, + } hasBin: true dependencies: '@mapbox/node-pre-gyp': 1.0.10 @@ -7177,11 +9187,17 @@ packages: dev: true /@vercel/node-bridge@3.0.0: - resolution: {integrity: sha512-TNQK6cufwrhd8ASDk5YHHenH8Xhp9sY8xUjOTKnQQI37KLk+Sw2HlHhT5rzUFN23ahosUlkY8InwtYUmSNb9kw==} + resolution: + { + integrity: sha512-TNQK6cufwrhd8ASDk5YHHenH8Xhp9sY8xUjOTKnQQI37KLk+Sw2HlHhT5rzUFN23ahosUlkY8InwtYUmSNb9kw==, + } dev: true /@vercel/node@2.5.7: - resolution: {integrity: sha512-VI5dhbRV/y1dPEDMiU5hafksaPQeiaNWXTQfHk93QhnlcQ23ntcVZi8RgfRHwiZ25ImnNQ9x9KrbQsGeKFYrfA==} + resolution: + { + integrity: sha512-VI5dhbRV/y1dPEDMiU5hafksaPQeiaNWXTQfHk93QhnlcQ23ntcVZi8RgfRHwiZ25ImnNQ9x9KrbQsGeKFYrfA==, + } dependencies: '@edge-runtime/vm': 1.1.0-beta.23 '@types/node': 18.15.11 @@ -7199,11 +9215,17 @@ packages: dev: true /@vercel/python@3.1.8: - resolution: {integrity: sha512-mu1U6lPbSbAaMHpIgGHN9NxXUZdgVbD3fu4diWSqqRyMEGwHWB9WnwG5764s1B5CPkcUXnAho7pmSHYha8Nd+w==} + resolution: + { + integrity: sha512-mu1U6lPbSbAaMHpIgGHN9NxXUZdgVbD3fu4diWSqqRyMEGwHWB9WnwG5764s1B5CPkcUXnAho7pmSHYha8Nd+w==, + } dev: true /@vercel/redwood@1.0.17: - resolution: {integrity: sha512-vgFKExRM70CkEurIM7N7bi6SF0wHnTQSOdzz4bAd1m7lHuc6+NWmneoNSTwwV/OjW4ZDYYCEkpSrhYx+CWMnrQ==} + resolution: + { + integrity: sha512-vgFKExRM70CkEurIM7N7bi6SF0wHnTQSOdzz4bAd1m7lHuc6+NWmneoNSTwwV/OjW4ZDYYCEkpSrhYx+CWMnrQ==, + } dependencies: '@vercel/nft': 0.21.0 '@vercel/routing-utils': 2.0.2 @@ -7214,7 +9236,10 @@ packages: dev: true /@vercel/remix@1.0.18: - resolution: {integrity: sha512-63dcx9HiVFtYNnMouXH+crDMKoubUWCGTXRtRxEJJt8xMTZOyMxUIVyRG6YUnJnJO75gcASqlWoABEyD+ksDQQ==} + resolution: + { + integrity: sha512-63dcx9HiVFtYNnMouXH+crDMKoubUWCGTXRtRxEJJt8xMTZOyMxUIVyRG6YUnJnJO75gcASqlWoABEyD+ksDQQ==, + } dependencies: '@vercel/nft': 0.21.0 transitivePeerDependencies: @@ -7223,7 +9248,10 @@ packages: dev: true /@vercel/remote-nx@1.1.1(@nx/workspace@16.8.1): - resolution: {integrity: sha512-7Wtw89FRIqgZo1YV1aLZVv6fv/BSUueYWStTZ/KktymAtm+ekfhAB19OxazcgFLLZQsu0Dgov2BApVDd6B7IBw==} + resolution: + { + integrity: sha512-7Wtw89FRIqgZo1YV1aLZVv6fv/BSUueYWStTZ/KktymAtm+ekfhAB19OxazcgFLLZQsu0Dgov2BApVDd6B7IBw==, + } dependencies: '@vercel/remote': 1.0.1 chalk: 4.1.2 @@ -7234,7 +9262,10 @@ packages: dev: true /@vercel/remote@1.0.1: - resolution: {integrity: sha512-5iUXUO/DBsNPFPq1tuIndhq+x14Nec1lyj0F2IelWm/cVFl7q8dnXsAPtMnr1129RD8hbOTqI2XgXKo8orAlpA==} + resolution: + { + integrity: sha512-5iUXUO/DBsNPFPq1tuIndhq+x14Nec1lyj0F2IelWm/cVFl7q8dnXsAPtMnr1129RD8hbOTqI2XgXKo8orAlpA==, + } dependencies: ci-info: 3.8.0 concat-stream: 2.0.0 @@ -7245,7 +9276,10 @@ packages: dev: true /@vercel/routing-utils@2.0.2: - resolution: {integrity: sha512-Ach23n7fjhVVRplBVDmSlJ0E1rJTOxuQdqJfyuC6yGQl5ykmfarCXfjrLFCgeujqmQwAU9q0PR3K6HVOaAmbfg==} + resolution: + { + integrity: sha512-Ach23n7fjhVVRplBVDmSlJ0E1rJTOxuQdqJfyuC6yGQl5ykmfarCXfjrLFCgeujqmQwAU9q0PR3K6HVOaAmbfg==, + } dependencies: path-to-regexp: 6.1.0 optionalDependencies: @@ -7253,15 +9287,24 @@ packages: dev: true /@vercel/ruby@1.3.24: - resolution: {integrity: sha512-0DTn815ghIIXXeZMKj1InDzpA+uYYv6XdVP+x8B2lPNOpiZ57jS5136vdBo2xWqXMU7N7COqWegWbcJWSuAagw==} + resolution: + { + integrity: sha512-0DTn815ghIIXXeZMKj1InDzpA+uYYv6XdVP+x8B2lPNOpiZ57jS5136vdBo2xWqXMU7N7COqWegWbcJWSuAagw==, + } dev: true /@vercel/static-build@1.0.17: - resolution: {integrity: sha512-YzFSzyJMZw7HOiMeSk2L8m0EjYd98Hvf8bNgYmgm8qLoTS2na8kUJaPj67wNFKKm77c7YX43dde0v24OuftFsg==} + resolution: + { + integrity: sha512-YzFSzyJMZw7HOiMeSk2L8m0EjYd98Hvf8bNgYmgm8qLoTS2na8kUJaPj67wNFKKm77c7YX43dde0v24OuftFsg==, + } dev: true /@vercel/static-config@2.0.3: - resolution: {integrity: sha512-XfP0z81SigmxvUzzhN6pbURJns86HKYjrLYgetLbBp1d8NUv4O8dqhNkRGpNGYdljTkjBQOfqG0HVT6dSnqvOw==} + resolution: + { + integrity: sha512-XfP0z81SigmxvUzzhN6pbURJns86HKYjrLYgetLbBp1d8NUv4O8dqhNkRGpNGYdljTkjBQOfqG0HVT6dSnqvOw==, + } dependencies: ajv: 8.6.3 json-schema-to-ts: 1.6.4 @@ -7269,7 +9312,10 @@ packages: dev: true /@vitest/coverage-c8@0.31.4(vitest@0.31.4): - resolution: {integrity: sha512-VPx368m4DTcpA/P0v3YdVxl4QOSh1DbUcXURLRvDShrIB5KxOgfzw4Bn2R8AhAe/GyiWW/FIsJ/OJdYXCCiC1w==} + resolution: + { + integrity: sha512-VPx368m4DTcpA/P0v3YdVxl4QOSh1DbUcXURLRvDShrIB5KxOgfzw4Bn2R8AhAe/GyiWW/FIsJ/OJdYXCCiC1w==, + } deprecated: v8 coverage is moved to @vitest/coverage-v8 package peerDependencies: vitest: '>=0.30.0 <1' @@ -7283,7 +9329,10 @@ packages: dev: true /@vitest/expect@0.31.4: - resolution: {integrity: sha512-tibyx8o7GUyGHZGyPgzwiaPaLDQ9MMuCOrc03BYT0nryUuhLbL7NV2r/q98iv5STlwMgaKuFJkgBW/8iPKwlSg==} + resolution: + { + integrity: sha512-tibyx8o7GUyGHZGyPgzwiaPaLDQ9MMuCOrc03BYT0nryUuhLbL7NV2r/q98iv5STlwMgaKuFJkgBW/8iPKwlSg==, + } dependencies: '@vitest/spy': 0.31.4 '@vitest/utils': 0.31.4 @@ -7291,7 +9340,10 @@ packages: dev: true /@vitest/runner@0.31.4: - resolution: {integrity: sha512-Wgm6UER+gwq6zkyrm5/wbpXGF+g+UBB78asJlFkIOwyse0pz8lZoiC6SW5i4gPnls/zUcPLWS7Zog0LVepXnpg==} + resolution: + { + integrity: sha512-Wgm6UER+gwq6zkyrm5/wbpXGF+g+UBB78asJlFkIOwyse0pz8lZoiC6SW5i4gPnls/zUcPLWS7Zog0LVepXnpg==, + } dependencies: '@vitest/utils': 0.31.4 concordance: 5.0.4 @@ -7300,7 +9352,10 @@ packages: dev: true /@vitest/snapshot@0.31.4: - resolution: {integrity: sha512-LemvNumL3NdWSmfVAMpXILGyaXPkZbG5tyl6+RQSdcHnTj6hvA49UAI8jzez9oQyE/FWLKRSNqTGzsHuk89LRA==} + resolution: + { + integrity: sha512-LemvNumL3NdWSmfVAMpXILGyaXPkZbG5tyl6+RQSdcHnTj6hvA49UAI8jzez9oQyE/FWLKRSNqTGzsHuk89LRA==, + } dependencies: magic-string: 0.30.0 pathe: 1.1.0 @@ -7308,13 +9363,19 @@ packages: dev: true /@vitest/spy@0.31.4: - resolution: {integrity: sha512-3ei5ZH1s3aqbEyftPAzSuunGICRuhE+IXOmpURFdkm5ybUADk+viyQfejNk6q8M5QGX8/EVKw+QWMEP3DTJDag==} + resolution: + { + integrity: sha512-3ei5ZH1s3aqbEyftPAzSuunGICRuhE+IXOmpURFdkm5ybUADk+viyQfejNk6q8M5QGX8/EVKw+QWMEP3DTJDag==, + } dependencies: tinyspy: 2.1.1 dev: true /@vitest/ui@0.31.4(vitest@0.31.4): - resolution: {integrity: sha512-sKM16ITX6HrNFF+lNZ2AQAen4/6Bx2i6KlBfIvkUjcTgc5YII/j2ltcX14oCUv4EA0OTWGQuGhO3zDoAsTENGA==} + resolution: + { + integrity: sha512-sKM16ITX6HrNFF+lNZ2AQAen4/6Bx2i6KlBfIvkUjcTgc5YII/j2ltcX14oCUv4EA0OTWGQuGhO3zDoAsTENGA==, + } peerDependencies: vitest: '>=0.30.1 <1' dependencies: @@ -7329,7 +9390,10 @@ packages: dev: true /@vitest/utils@0.31.4: - resolution: {integrity: sha512-DobZbHacWznoGUfYU8XDPY78UubJxXfMNY1+SUdOp1NsI34eopSA6aZMeaGu10waSOeYwE8lxrd/pLfT0RMxjQ==} + resolution: + { + integrity: sha512-DobZbHacWznoGUfYU8XDPY78UubJxXfMNY1+SUdOp1NsI34eopSA6aZMeaGu10waSOeYwE8lxrd/pLfT0RMxjQ==, + } dependencies: concordance: 5.0.4 loupe: 2.3.6 @@ -7337,7 +9401,10 @@ packages: dev: true /@vscode/ripgrep@1.15.5: - resolution: {integrity: sha512-PVvKNEmtnlek3i4MJMaB910dz46CKQqcIY2gKR3PSlfz/ZPlSYuSuyQMS7iK20KL4hGUdSbWt964B5S5EIojqw==} + resolution: + { + integrity: sha512-PVvKNEmtnlek3i4MJMaB910dz46CKQqcIY2gKR3PSlfz/ZPlSYuSuyQMS7iK20KL4hGUdSbWt964B5S5EIojqw==, + } requiresBuild: true dependencies: https-proxy-agent: 5.0.1 @@ -7347,26 +9414,41 @@ packages: dev: true /@webassemblyjs/ast@1.11.6: - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} + resolution: + { + integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==, + } dependencies: '@webassemblyjs/helper-numbers': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 dev: true /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + resolution: + { + integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==, + } dev: true /@webassemblyjs/helper-api-error@1.11.6: - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + resolution: + { + integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==, + } dev: true /@webassemblyjs/helper-buffer@1.11.6: - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} + resolution: + { + integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==, + } dev: true /@webassemblyjs/helper-numbers@1.11.6: - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + resolution: + { + integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==, + } dependencies: '@webassemblyjs/floating-point-hex-parser': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 @@ -7374,11 +9456,17 @@ packages: dev: true /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + resolution: + { + integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==, + } dev: true /@webassemblyjs/helper-wasm-section@1.11.6: - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} + resolution: + { + integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==, + } dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-buffer': 1.11.6 @@ -7387,23 +9475,35 @@ packages: dev: true /@webassemblyjs/ieee754@1.11.6: - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + resolution: + { + integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==, + } dependencies: '@xtuc/ieee754': 1.2.0 dev: true /@webassemblyjs/leb128@1.11.6: - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + resolution: + { + integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==, + } dependencies: '@xtuc/long': 4.2.2 dev: true /@webassemblyjs/utf8@1.11.6: - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + resolution: + { + integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==, + } dev: true /@webassemblyjs/wasm-edit@1.11.6: - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} + resolution: + { + integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==, + } dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-buffer': 1.11.6 @@ -7416,7 +9516,10 @@ packages: dev: true /@webassemblyjs/wasm-gen@1.11.6: - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} + resolution: + { + integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==, + } dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-wasm-bytecode': 1.11.6 @@ -7426,7 +9529,10 @@ packages: dev: true /@webassemblyjs/wasm-opt@1.11.6: - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} + resolution: + { + integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==, + } dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-buffer': 1.11.6 @@ -7435,7 +9541,10 @@ packages: dev: true /@webassemblyjs/wasm-parser@1.11.6: - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} + resolution: + { + integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==, + } dependencies: '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/helper-api-error': 1.11.6 @@ -7446,43 +9555,67 @@ packages: dev: true /@webassemblyjs/wast-printer@1.11.6: - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} + resolution: + { + integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==, + } dependencies: '@webassemblyjs/ast': 1.11.6 '@xtuc/long': 4.2.2 dev: true /@xtuc/ieee754@1.2.0: - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + resolution: + { + integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==, + } dev: true /@xtuc/long@4.2.2: - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + resolution: + { + integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, + } dev: true /@yarnpkg/lockfile@1.1.0: - resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} + resolution: + { + integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==, + } /@yarnpkg/parsers@3.0.0-rc.46: - resolution: {integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==} - engines: {node: '>=14.15.0'} + resolution: + { + integrity: sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==, + } + engines: { node: '>=14.15.0' } dependencies: js-yaml: 3.14.1 tslib: 2.6.2 /@zip.js/zip.js@2.6.83: - resolution: {integrity: sha512-+DNoawyQwwqMY1HjQ3/YO5zWqEKbG1onJZDlhKGuH39Q4KmGvLYzX4UqtQX7u0rUDKaVGdDpcN3/H+rc3Spg4g==} - engines: {deno: '>=1.0.0', node: '>=16.5.0'} + resolution: + { + integrity: sha512-+DNoawyQwwqMY1HjQ3/YO5zWqEKbG1onJZDlhKGuH39Q4KmGvLYzX4UqtQX7u0rUDKaVGdDpcN3/H+rc3Spg4g==, + } + engines: { deno: '>=1.0.0', node: '>=16.5.0' } dev: false /@zkochan/js-yaml@0.0.6: - resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} + resolution: + { + integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==, + } hasBin: true dependencies: argparse: 2.0.1 /JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + resolution: + { + integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==, + } hasBin: true dependencies: jsonparse: 1.3.1 @@ -7490,26 +9623,41 @@ packages: dev: true /abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + resolution: + { + integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==, + } dev: true /abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + resolution: + { + integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==, + } dev: true /abs-svg-path@0.1.1: - resolution: {integrity: sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA==} + resolution: + { + integrity: sha512-d8XPSGjfyzlXC3Xx891DJRyZfqk5JU0BJrDQcsWomFIV1/BIzPW5HDH5iDdWpqWaav0YVIEzT1RHTwWr0FFshA==, + } dev: false /acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + resolution: + { + integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==, + } dependencies: acorn: 8.8.2 acorn-walk: 8.2.0 dev: true /acorn-import-assertions@1.9.0(acorn@8.10.0): - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + resolution: + { + integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==, + } peerDependencies: acorn: ^8 dependencies: @@ -7517,14 +9665,20 @@ packages: dev: true /acorn-jsx@5.3.2(acorn@8.10.0): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, + } peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.10.0 /acorn-jsx@5.3.2(acorn@8.8.2): - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, + } peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: @@ -7532,7 +9686,10 @@ packages: dev: true /acorn-node@1.8.2: - resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} + resolution: + { + integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==, + } dependencies: acorn: 7.4.1 acorn-walk: 7.2.0 @@ -7540,52 +9697,82 @@ packages: dev: true /acorn-walk@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, + } + engines: { node: '>=0.4.0' } dev: true /acorn-walk@8.2.0: - resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==, + } + engines: { node: '>=0.4.0' } /acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, + } + engines: { node: '>=0.4.0' } hasBin: true dev: true /acorn@8.10.0: - resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, + } + engines: { node: '>=0.4.0' } hasBin: true /acorn@8.8.0: - resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==, + } + engines: { node: '>=0.4.0' } hasBin: true /acorn@8.8.2: - resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==, + } + engines: { node: '>=0.4.0' } hasBin: true dev: true /add-stream@1.0.0: - resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} + resolution: + { + integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==, + } dev: true /address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==, + } + engines: { node: '>= 10.0.0' } /adm-zip@0.5.10: - resolution: {integrity: sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==, + } + engines: { node: '>=6.0' } dev: false /agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, + } + engines: { node: '>= 6.0.0' } dependencies: debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: @@ -7593,15 +9780,21 @@ packages: dev: true /aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, + } + engines: { node: '>=8' } dependencies: clean-stack: 2.2.0 indent-string: 4.0.0 dev: true /ajv-formats@2.1.1(ajv@8.12.0): - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + resolution: + { + integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, + } peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -7612,7 +9805,10 @@ packages: dev: true /ajv-formats@2.1.1(ajv@8.9.0): - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + resolution: + { + integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, + } peerDependencies: ajv: ^8.0.0 peerDependenciesMeta: @@ -7623,7 +9819,10 @@ packages: dev: true /ajv-keywords@3.5.2(ajv@6.12.6): - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + resolution: + { + integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==, + } peerDependencies: ajv: ^6.9.1 dependencies: @@ -7631,7 +9830,10 @@ packages: dev: true /ajv-keywords@5.1.0(ajv@8.12.0): - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + resolution: + { + integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==, + } peerDependencies: ajv: ^8.8.2 dependencies: @@ -7640,7 +9842,10 @@ packages: dev: true /ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + resolution: + { + integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, + } dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 @@ -7648,7 +9853,10 @@ packages: uri-js: 4.4.1 /ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + resolution: + { + integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==, + } dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -7657,7 +9865,10 @@ packages: dev: true /ajv@8.6.3: - resolution: {integrity: sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==} + resolution: + { + integrity: sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==, + } dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -7666,7 +9877,10 @@ packages: dev: true /ajv@8.9.0: - resolution: {integrity: sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==} + resolution: + { + integrity: sha512-qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ==, + } dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -7675,58 +9889,91 @@ packages: dev: true /amdefine@1.0.1: - resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==} - engines: {node: '>=0.4.2'} + resolution: + { + integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==, + } + engines: { node: '>=0.4.2' } requiresBuild: true dev: false optional: true /ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + resolution: + { + integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==, + } dependencies: string-width: 4.2.3 dev: true /ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, + } + engines: { node: '>=6' } /ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, + } + engines: { node: '>=8' } dependencies: type-fest: 0.21.3 /ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: '>=8' } /ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, + } + engines: { node: '>=12' } dev: false /ansi-sequence-parser@1.1.0: - resolution: {integrity: sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ==} + resolution: + { + integrity: sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ==, + } /ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, + } + engines: { node: '>=4' } dependencies: color-convert: 1.9.3 /ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, + } + engines: { node: '>=8' } dependencies: color-convert: 2.0.1 /ansi-styles@5.2.0: - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, + } + engines: { node: '>=10' } /anymatch@2.0.0: - resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} + resolution: + { + integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==, + } dependencies: micromatch: 3.1.10 normalize-path: 2.1.1 @@ -7735,46 +9982,73 @@ packages: dev: false /anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, + } + engines: { node: '>= 8' } dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 /aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} + resolution: + { + integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==, + } dev: true /arch@2.2.0: - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + resolution: + { + integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==, + } dev: true /are-we-there-yet@2.0.0: - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==, + } + engines: { node: '>=10' } dependencies: delegates: 1.0.0 readable-stream: 3.6.2 dev: true /arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + resolution: + { + integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, + } /arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + resolution: + { + integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==, + } dev: true /argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + resolution: + { + integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, + } dependencies: sprintf-js: 1.0.3 /argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } /aria-hidden@1.2.2(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-6y/ogyDTk/7YAe91T3E2PR1ALVKyM2QbTio5HwM+N1Q6CMlCKhvClyIjkckBswa0f2xJhjsfzIGa1yVSe1UMVA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-6y/ogyDTk/7YAe91T3E2PR1ALVKyM2QbTio5HwM+N1Q6CMlCKhvClyIjkckBswa0f2xJhjsfzIGa1yVSe1UMVA==, + } + engines: { node: '>=10' } peerDependencies: '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.9.0 || ^17.0.0 || ^18.0.0 @@ -7788,40 +10062,61 @@ packages: dev: false /aria-query@5.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + resolution: + { + integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==, + } dependencies: deep-equal: 2.2.0 dev: true /arr-diff@4.0.0: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==, + } + engines: { node: '>=0.10.0' } dev: false /arr-flatten@1.1.0: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==, + } + engines: { node: '>=0.10.0' } dev: false /arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==, + } + engines: { node: '>=0.10.0' } dev: false /array-buffer-byte-length@1.0.0: - resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} + resolution: + { + integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, + } dependencies: call-bind: 1.0.2 is-array-buffer: 3.0.2 dev: true /array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + resolution: + { + integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==, + } dev: true /array-includes@3.1.6: - resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -7831,31 +10126,49 @@ packages: dev: true /array-iterate@1.1.4: - resolution: {integrity: sha512-sNRaPGh9nnmdC8Zf+pT3UqP8rnWj5Hf9wiFGsX3wUQ2yVSIhO2ShFwCoceIPpB41QF6i2OEmrHmCo36xronCVA==} + resolution: + { + integrity: sha512-sNRaPGh9nnmdC8Zf+pT3UqP8rnWj5Hf9wiFGsX3wUQ2yVSIhO2ShFwCoceIPpB41QF6i2OEmrHmCo36xronCVA==, + } dev: false /array-iterate@2.0.1: - resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} + resolution: + { + integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==, + } dev: false /array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, + } + engines: { node: '>=8' } dev: true /array-union@3.0.1: - resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==, + } + engines: { node: '>=12' } dev: true /array-unique@0.3.2: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==, + } + engines: { node: '>=0.10.0' } dev: false /array.prototype.flat@1.3.1: - resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -7864,8 +10177,11 @@ packages: dev: true /array.prototype.flatmap@1.3.1: - resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -7874,7 +10190,10 @@ packages: dev: true /array.prototype.tosorted@1.1.1: - resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} + resolution: + { + integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==, + } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -7884,32 +10203,50 @@ packages: dev: true /arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, + } + engines: { node: '>=0.10.0' } dev: true /asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + resolution: + { + integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==, + } dependencies: safer-buffer: 2.1.2 dev: true /assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==, + } + engines: { node: '>=0.8' } dev: true /assertion-error@1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + resolution: + { + integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, + } dev: true /assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==, + } + engines: { node: '>=0.10.0' } dev: false /ast-transform@0.0.0: - resolution: {integrity: sha512-e/JfLiSoakfmL4wmTGPjv0HpTICVmxwXgYOB8x+mzozHL8v+dSfCbrJ8J8hJ0YBP0XcYu1aLZ6b/3TnxNK3P2A==} + resolution: + { + integrity: sha512-e/JfLiSoakfmL4wmTGPjv0HpTICVmxwXgYOB8x+mzozHL8v+dSfCbrJ8J8hJ0YBP0XcYu1aLZ6b/3TnxNK3P2A==, + } dependencies: escodegen: 1.2.0 esprima: 1.0.4 @@ -7917,59 +10254,95 @@ packages: dev: false /ast-types-flow@0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + resolution: + { + integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==, + } dev: true /ast-types@0.7.8: - resolution: {integrity: sha512-RIOpVnVlltB6PcBJ5BMLx+H+6JJ/zjDGU0t7f0L6c2M1dqcK92VQopLBlPQ9R80AVXelfqYgjcPLtHtDbNFg0Q==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-RIOpVnVlltB6PcBJ5BMLx+H+6JJ/zjDGU0t7f0L6c2M1dqcK92VQopLBlPQ9R80AVXelfqYgjcPLtHtDbNFg0Q==, + } + engines: { node: '>= 0.6' } dev: false /astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==, + } + engines: { node: '>=8' } dev: true /async-sema@3.1.1: - resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} + resolution: + { + integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==, + } dev: true /async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + resolution: + { + integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==, + } dependencies: lodash: 4.17.21 dev: true /async@3.2.4: - resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} + resolution: + { + integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==, + } /asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + resolution: + { + integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, + } /at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==, + } + engines: { node: '>= 4.0.0' } dev: true /atob@2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} - engines: {node: '>= 4.5.0'} + resolution: + { + integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==, + } + engines: { node: '>= 4.5.0' } hasBin: true dev: false /attr-accept@2.2.2: - resolution: {integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==, + } + engines: { node: '>=4' } dev: false /author-regex@1.0.0: - resolution: {integrity: sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-KbWgR8wOYRAPekEmMXrYYdc7BRyhn2Ftk7KWfMUnQ43hFdojWEFRxhhRUm3/OFEdPa1r0KAvTTg9YQK57xTe0g==, + } + engines: { node: '>=0.8' } dev: true /autoprefixer@10.4.13(postcss@8.4.19): - resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==, + } + engines: { node: ^10 || ^12 || >=14 } hasBin: true peerDependencies: postcss: ^8.1.0 @@ -7984,25 +10357,40 @@ packages: dev: true /available-typed-arrays@1.0.5: - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, + } + engines: { node: '>= 0.4' } dev: true /aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + resolution: + { + integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==, + } dev: true /aws4@1.11.0: - resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==} + resolution: + { + integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==, + } dev: true /axe-core@4.6.3: - resolution: {integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==, + } + engines: { node: '>=4' } dev: true /axios@0.26.1: - resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} + resolution: + { + integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==, + } dependencies: follow-redirects: 1.15.2 transitivePeerDependencies: @@ -8010,7 +10398,10 @@ packages: dev: false /axios@0.27.2: - resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} + resolution: + { + integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==, + } dependencies: follow-redirects: 1.15.2 form-data: 4.0.0 @@ -8019,7 +10410,10 @@ packages: dev: false /axios@1.3.4: - resolution: {integrity: sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==} + resolution: + { + integrity: sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==, + } dependencies: follow-redirects: 1.15.2 form-data: 4.0.0 @@ -8028,14 +10422,20 @@ packages: - debug /axobject-query@3.1.1: - resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} + resolution: + { + integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==, + } dependencies: deep-equal: 2.2.0 dev: true /babel-jest@26.6.3(@babel/core@7.20.5): - resolution: {integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==, + } + engines: { node: '>= 10.14.2' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -8053,8 +10453,11 @@ packages: dev: false /babel-jest@29.4.3(@babel/core@7.20.5): - resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: '@babel/core': ^7.8.0 dependencies: @@ -8071,8 +10474,11 @@ packages: dev: true /babel-jest@29.4.3(@babel/core@7.22.20): - resolution: {integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-o45Wyn32svZE+LnMVWv/Z4x0SwtLbh4FyGcYtR20kIWd+rdrDZ9Fzq8Ml3MYLD+mZvEdzCjZsCnYZ2jpJyQ+Nw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: '@babel/core': ^7.8.0 dependencies: @@ -8088,7 +10494,10 @@ packages: - supports-color /babel-plugin-const-enum@1.2.0(@babel/core@7.22.20): - resolution: {integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==} + resolution: + { + integrity: sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==, + } peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -8100,8 +10509,11 @@ packages: - supports-color /babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, + } + engines: { node: '>=8' } dependencies: '@babel/helper-plugin-utils': 7.20.2 '@istanbuljs/load-nyc-config': 1.1.0 @@ -8112,8 +10524,11 @@ packages: - supports-color /babel-plugin-jest-hoist@26.6.2: - resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==, + } + engines: { node: '>= 10.14.2' } dependencies: '@babel/template': 7.20.7 '@babel/types': 7.22.19 @@ -8122,8 +10537,11 @@ packages: dev: false /babel-plugin-jest-hoist@29.4.3: - resolution: {integrity: sha512-mB6q2q3oahKphy5V7CpnNqZOCkxxZ9aokf1eh82Dy3jQmg4xvM1tGrh5y6BQUJh4a3Pj9+eLfwvAZ7VNKg7H8Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-mB6q2q3oahKphy5V7CpnNqZOCkxxZ9aokf1eh82Dy3jQmg4xvM1tGrh5y6BQUJh4a3Pj9+eLfwvAZ7VNKg7H8Q==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@babel/template': 7.20.7 '@babel/types': 7.22.19 @@ -8131,15 +10549,21 @@ packages: '@types/babel__traverse': 7.18.2 /babel-plugin-macros@2.8.0: - resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} + resolution: + { + integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==, + } dependencies: '@babel/runtime': 7.22.15 cosmiconfig: 6.0.0 resolve: 1.22.1 /babel-plugin-macros@3.1.0: - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} - engines: {node: '>=10', npm: '>=6'} + resolution: + { + integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==, + } + engines: { node: '>=10', npm: '>=6' } dependencies: '@babel/runtime': 7.22.15 cosmiconfig: 7.1.0 @@ -8147,7 +10571,10 @@ packages: dev: false /babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.22.20): - resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==} + resolution: + { + integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==, + } peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -8159,7 +10586,10 @@ packages: - supports-color /babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.22.20): - resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==} + resolution: + { + integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==, + } peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -8170,7 +10600,10 @@ packages: - supports-color /babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.20): - resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} + resolution: + { + integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==, + } peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: @@ -8180,7 +10613,10 @@ packages: - supports-color /babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.22.20): - resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==} + resolution: + { + integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==, + } peerDependencies: '@babel/core': ^7 '@babel/traverse': ^7 @@ -8192,7 +10628,10 @@ packages: '@babel/helper-plugin-utils': 7.22.5 /babel-preset-current-node-syntax@1.0.1(@babel/core@7.20.5): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + resolution: + { + integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, + } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -8211,7 +10650,10 @@ packages: '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.20.5) /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.20): - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + resolution: + { + integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, + } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -8230,8 +10672,11 @@ packages: '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.20) /babel-preset-jest@26.6.2(@babel/core@7.20.5): - resolution: {integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==, + } + engines: { node: '>= 10.14.2' } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -8241,8 +10686,11 @@ packages: dev: false /babel-preset-jest@29.4.3(@babel/core@7.20.5): - resolution: {integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -8252,8 +10700,11 @@ packages: dev: true /babel-preset-jest@29.4.3(@babel/core@7.22.20): - resolution: {integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-gWx6COtSuma6n9bw+8/F+2PCXrIgxV/D1TJFnp6OyBK2cxPWg0K9p/sriNYeifKjpUkMViWQ09DSWtzJQRETsw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: '@babel/core': ^7.0.0 dependencies: @@ -8262,25 +10713,43 @@ packages: babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.20) /bail@1.0.5: - resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} + resolution: + { + integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==, + } dev: false /bail@2.0.2: - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + resolution: + { + integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, + } /balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } /base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + resolution: + { + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, + } /base64-to-uint8array@1.0.0: - resolution: {integrity: sha512-drjWQcees55+XQSVHYxiUF05Fj6ko3XJUoxykZEXbm0BMmNz2ieWiZGJ+6TFWnjN2saucG6pI13LS92O4kaiAg==} + resolution: + { + integrity: sha512-drjWQcees55+XQSVHYxiUF05Fj6ko3XJUoxykZEXbm0BMmNz2ieWiZGJ+6TFWnjN2saucG6pI13LS92O4kaiAg==, + } dev: false /base@0.11.2: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==, + } + engines: { node: '>=0.10.0' } dependencies: cache-base: 1.0.1 class-utils: 0.3.6 @@ -8292,37 +10761,55 @@ packages: dev: false /basic-auth@2.0.1: - resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==, + } + engines: { node: '>= 0.8' } dependencies: safe-buffer: 5.1.2 dev: true /bcp-47-match@2.0.2: - resolution: {integrity: sha512-zy5swVXwQ25ttElhoN9Dgnqm6VFlMkeDNljvHSGqGNr4zClUosdFzxD+fQHJVmx3g3KY+r//wV/fmBHsa1ErnA==} + resolution: + { + integrity: sha512-zy5swVXwQ25ttElhoN9Dgnqm6VFlMkeDNljvHSGqGNr4zClUosdFzxD+fQHJVmx3g3KY+r//wV/fmBHsa1ErnA==, + } dev: false /bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + resolution: + { + integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==, + } dependencies: tweetnacl: 0.14.5 dev: true /big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + resolution: + { + integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==, + } dev: true /bin-check@4.1.0: - resolution: {integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==, + } + engines: { node: '>=4' } dependencies: execa: 0.7.0 executable: 4.1.1 dev: true /bin-version-check@5.0.0: - resolution: {integrity: sha512-Q3FMQnS5eZmrBGqmDXLs4dbAn/f+52voP6ykJYmweSA60t6DyH4UTSwZhtbK5UH+LBoWvDljILUQMLRUtsynsA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Q3FMQnS5eZmrBGqmDXLs4dbAn/f+52voP6ykJYmweSA60t6DyH4UTSwZhtbK5UH+LBoWvDljILUQMLRUtsynsA==, + } + engines: { node: '>=12' } dependencies: bin-version: 6.0.0 semver: 7.5.4 @@ -8330,57 +10817,90 @@ packages: dev: true /bin-version@6.0.0: - resolution: {integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==, + } + engines: { node: '>=12' } dependencies: execa: 5.1.1 find-versions: 5.1.0 dev: true /binary-extensions@2.2.0: - resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==, + } + engines: { node: '>=8' } /bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + resolution: + { + integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, + } dependencies: file-uri-to-path: 1.0.0 dev: true /bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + resolution: + { + integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, + } dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 /blob-stream@0.1.3: - resolution: {integrity: sha512-xXwyhgVmPsFVFFvtM5P0syI17/oae+MIjLn5jGhuD86mmSJ61EWMWmbPrV/0+bdcH9jQ2CzIhmTQKNUJL7IPog==} + resolution: + { + integrity: sha512-xXwyhgVmPsFVFFvtM5P0syI17/oae+MIjLn5jGhuD86mmSJ61EWMWmbPrV/0+bdcH9jQ2CzIhmTQKNUJL7IPog==, + } dependencies: blob: 0.0.4 dev: false /blob-util@2.0.2: - resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + resolution: + { + integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==, + } dev: true /blob@0.0.4: - resolution: {integrity: sha512-YRc9zvVz4wNaxcXmiSgb9LAg7YYwqQ2xd0Sj6osfA7k/PKmIGVlnOYs3wOFdkRC9/JpQu8sGt/zHgJV7xzerfg==} + resolution: + { + integrity: sha512-YRc9zvVz4wNaxcXmiSgb9LAg7YYwqQ2xd0Sj6osfA7k/PKmIGVlnOYs3wOFdkRC9/JpQu8sGt/zHgJV7xzerfg==, + } dev: false /bluebird@3.7.2: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + resolution: + { + integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==, + } /blueimp-md5@2.19.0: - resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} + resolution: + { + integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==, + } dev: true /boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + resolution: + { + integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, + } /boxen@5.1.2: - resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==, + } + engines: { node: '>=10' } dependencies: ansi-align: 3.0.1 camelcase: 6.3.0 @@ -8393,19 +10913,28 @@ packages: dev: true /brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + resolution: + { + integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, + } dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 /brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + resolution: + { + integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, + } dependencies: balanced-match: 1.0.2 /braces@2.3.2: - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==, + } + engines: { node: '>=0.10.0' } dependencies: arr-flatten: 1.1.0 array-unique: 0.3.2 @@ -8422,25 +10951,37 @@ packages: dev: false /braces@3.0.2: - resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, + } + engines: { node: '>=8' } dependencies: fill-range: 7.0.1 /brotli@1.3.3: - resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==} + resolution: + { + integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==, + } dependencies: base64-js: 1.5.1 dev: false /browser-resolve@1.11.3: - resolution: {integrity: sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==} + resolution: + { + integrity: sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==, + } dependencies: resolve: 1.1.7 dev: false /browserify-optional@1.0.1: - resolution: {integrity: sha512-VrhjbZ+Ba5mDiSYEuPelekQMfTbhcA2DhLk2VQWqdcCROWeFqlTcXZ7yfRkXCIl8E+g4gINJYJiRB7WEtfomAQ==} + resolution: + { + integrity: sha512-VrhjbZ+Ba5mDiSYEuPelekQMfTbhcA2DhLk2VQWqdcCROWeFqlTcXZ7yfRkXCIl8E+g4gINJYJiRB7WEtfomAQ==, + } dependencies: ast-transform: 0.0.0 ast-types: 0.7.8 @@ -8448,14 +10989,20 @@ packages: dev: false /browserify-zlib@0.2.0: - resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} + resolution: + { + integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==, + } dependencies: pako: 1.0.11 dev: false /browserslist@4.21.11: - resolution: {integrity: sha512-xn1UXOKUz7DjdGlg9RrUr0GGiWzI97UQJnugHtH0OLDfJB7jMgoIkYvRIEO1l9EeEERVqeqLYOcFBW9ldjypbQ==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + resolution: + { + integrity: sha512-xn1UXOKUz7DjdGlg9RrUr0GGiWzI97UQJnugHtH0OLDfJB7jMgoIkYvRIEO1l9EeEERVqeqLYOcFBW9ldjypbQ==, + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: caniuse-lite: 1.0.30001538 @@ -8464,8 +11011,11 @@ packages: update-browserslist-db: 1.0.13(browserslist@4.21.11) /browserslist@4.21.4: - resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + resolution: + { + integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==, + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: caniuse-lite: 1.0.30001439 @@ -8474,55 +11024,85 @@ packages: update-browserslist-db: 1.0.10(browserslist@4.21.4) /bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==, + } + engines: { node: '>= 6' } dependencies: fast-json-stable-stringify: 2.1.0 dev: true /bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + resolution: + { + integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, + } dependencies: node-int64: 0.4.0 /buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + resolution: + { + integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==, + } dev: true /buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + resolution: + { + integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, + } /buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + resolution: + { + integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, + } dependencies: base64-js: 1.5.1 ieee754: 1.2.1 /builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==, + } + engines: { node: '>=6' } dev: true /builtins@4.1.0: - resolution: {integrity: sha512-1bPRZQtmKaO6h7qV1YHXNtr6nCK28k0Zo95KM4dXfILcZZwoHJBN1m3lfLv9LPkcOZlrSr+J1bzMaZFO98Yq0w==} + resolution: + { + integrity: sha512-1bPRZQtmKaO6h7qV1YHXNtr6nCK28k0Zo95KM4dXfILcZZwoHJBN1m3lfLv9LPkcOZlrSr+J1bzMaZFO98Yq0w==, + } dependencies: semver: 7.5.4 dev: true /busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} + resolution: + { + integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, + } + engines: { node: '>=10.16.0' } dependencies: streamsearch: 1.1.0 /bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, + } + engines: { node: '>= 0.8' } dev: true /c8@7.13.0: - resolution: {integrity: sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==} - engines: {node: '>=10.12.0'} + resolution: + { + integrity: sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==, + } + engines: { node: '>=10.12.0' } hasBin: true dependencies: '@bcoe/v8-coverage': 0.2.3 @@ -8540,13 +11120,19 @@ packages: dev: true /cac@6.7.14: - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, + } + engines: { node: '>=8' } dev: true /cache-base@1.0.1: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==, + } + engines: { node: '>=0.10.0' } dependencies: collection-visit: 1.0.0 component-emitter: 1.3.0 @@ -8560,13 +11146,19 @@ packages: dev: false /cacheable-lookup@5.0.4: - resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} - engines: {node: '>=10.6.0'} + resolution: + { + integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==, + } + engines: { node: '>=10.6.0' } dev: true /cacheable-request@6.1.0: - resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==, + } + engines: { node: '>=8' } dependencies: clone-response: 1.0.3 get-stream: 5.2.0 @@ -8578,8 +11170,11 @@ packages: dev: true /cacheable-request@7.0.2: - resolution: {integrity: sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==, + } + engines: { node: '>=8' } dependencies: clone-response: 1.0.3 get-stream: 5.2.0 @@ -8591,28 +11186,43 @@ packages: dev: true /cachedir@2.3.0: - resolution: {integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==, + } + engines: { node: '>=6' } dev: true /call-bind@1.0.2: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + resolution: + { + integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, + } dependencies: function-bind: 1.1.1 get-intrinsic: 1.2.0 /callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, + } + engines: { node: '>=6' } /camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==, + } + engines: { node: '>= 6' } dev: true /camelcase-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, + } + engines: { node: '>=8' } dependencies: camelcase: 5.3.1 map-obj: 4.3.0 @@ -8620,51 +11230,84 @@ packages: dev: true /camelcase@5.3.1: - resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, + } + engines: { node: '>=6' } /camelcase@6.3.0: - resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==, + } + engines: { node: '>=10' } /caniuse-lite@1.0.30001439: - resolution: {integrity: sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==} + resolution: + { + integrity: sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==, + } /caniuse-lite@1.0.30001502: - resolution: {integrity: sha512-AZ+9tFXw1sS0o0jcpJQIXvFTOB/xGiQ4OQ2t98QX3NDn2EZTSRBC801gxrsGgViuq2ak/NLkNgSNEPtCr5lfKg==} + resolution: + { + integrity: sha512-AZ+9tFXw1sS0o0jcpJQIXvFTOB/xGiQ4OQ2t98QX3NDn2EZTSRBC801gxrsGgViuq2ak/NLkNgSNEPtCr5lfKg==, + } /caniuse-lite@1.0.30001538: - resolution: {integrity: sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw==} + resolution: + { + integrity: sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw==, + } /capture-exit@2.0.0: - resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} - engines: {node: 6.* || 8.* || >= 10.*} + resolution: + { + integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==, + } + engines: { node: 6.* || 8.* || >= 10.* } dependencies: rsvp: 4.8.5 dev: false /caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + resolution: + { + integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==, + } dev: true /catharsis@0.9.0: - resolution: {integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==, + } + engines: { node: '>= 10' } dependencies: lodash: 4.17.21 dev: true /ccount@1.1.0: - resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==} + resolution: + { + integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==, + } dev: false /ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + resolution: + { + integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, + } dev: false /chai@4.3.7: - resolution: {integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==, + } + engines: { node: '>=4' } dependencies: assertion-error: 1.1.0 check-error: 1.0.2 @@ -8676,63 +11319,102 @@ packages: dev: true /chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, + } + engines: { node: '>=4' } dependencies: ansi-styles: 3.2.1 escape-string-regexp: 1.0.5 supports-color: 5.5.0 /chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, + } + engines: { node: '>=10' } dependencies: ansi-styles: 4.3.0 supports-color: 7.2.0 /char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, + } + engines: { node: '>=10' } /character-entities-html4@2.1.0: - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + resolution: + { + integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==, + } dev: false /character-entities-legacy@1.1.4: - resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + resolution: + { + integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==, + } dev: false /character-entities-legacy@3.0.0: - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + resolution: + { + integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==, + } dev: false /character-entities@1.2.4: - resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + resolution: + { + integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==, + } dev: false /character-entities@2.0.2: - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + resolution: + { + integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==, + } /character-reference-invalid@1.1.4: - resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + resolution: + { + integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==, + } dev: false /chardet@0.7.0: - resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + resolution: + { + integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==, + } dev: true /check-error@1.0.2: - resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} + resolution: + { + integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==, + } dev: true /check-more-types@2.24.0: - resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==, + } + engines: { node: '>= 0.8.0' } dev: true /chokidar@3.5.3: - resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} - engines: {node: '>= 8.10.0'} + resolution: + { + integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==, + } + engines: { node: '>= 8.10.0' } dependencies: anymatch: 3.1.3 braces: 3.0.2 @@ -8745,29 +11427,47 @@ packages: fsevents: 2.3.2 /chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==, + } + engines: { node: '>=10' } dev: true /chrome-trace-event@1.0.3: - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==, + } + engines: { node: '>=6.0' } dev: true /ci-info@2.0.0: - resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + resolution: + { + integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==, + } /ci-info@3.5.0: - resolution: {integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==} + resolution: + { + integrity: sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==, + } dev: true /ci-info@3.8.0: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==, + } + engines: { node: '>=8' } /citation-js@0.6.7: - resolution: {integrity: sha512-lAIrL45UQtxiSrNNApz8WM6ttaCAn7EybF4PXouo2yst07z2YGDIhdRApW6QFtQLRWrSNFAkDG5HC4A3CdkVlg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-lAIrL45UQtxiSrNNApz8WM6ttaCAn7EybF4PXouo2yst07z2YGDIhdRApW6QFtQLRWrSNFAkDG5HC4A3CdkVlg==, + } + engines: { node: '>=14' } hasBin: true dependencies: '@citation-js/cli': 0.6.7 @@ -8786,15 +11486,24 @@ packages: dev: false /citeproc@2.4.62: - resolution: {integrity: sha512-l3uFfSEwNZp/jlz/TpgyBs85kOww6VlQHbAth0cpbgOn6iulZd+QlFY43LrRelzcYt3FZHTZ3soDyd8lNmkqdw==} + resolution: + { + integrity: sha512-l3uFfSEwNZp/jlz/TpgyBs85kOww6VlQHbAth0cpbgOn6iulZd+QlFY43LrRelzcYt3FZHTZ3soDyd8lNmkqdw==, + } dev: false /cjs-module-lexer@1.2.2: - resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} + resolution: + { + integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==, + } /class-utils@0.3.6: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==, + } + engines: { node: '>=0.10.0' } dependencies: arr-union: 3.1.0 define-property: 0.2.5 @@ -8803,40 +11512,61 @@ packages: dev: false /clean-regexp@1.0.0: - resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==, + } + engines: { node: '>=4' } dependencies: escape-string-regexp: 1.0.5 dev: true /clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, + } + engines: { node: '>=6' } dev: true /cli-boxes@2.2.1: - resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==, + } + engines: { node: '>=6' } dev: true /cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, + } + engines: { node: '>=8' } dependencies: restore-cursor: 3.1.0 /cli-spinners@2.6.1: - resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==, + } + engines: { node: '>=6' } /cli-spinners@2.7.0: - resolution: {integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==, + } + engines: { node: '>=6' } dev: true /cli-table3@0.6.3: - resolution: {integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==} - engines: {node: 10.* || >= 12.*} + resolution: + { + integrity: sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==, + } + engines: { node: 10.* || >= 12.* } dependencies: string-width: 4.2.3 optionalDependencies: @@ -8844,39 +11574,57 @@ packages: dev: true /cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==, + } + engines: { node: '>=8' } dependencies: slice-ansi: 3.0.0 string-width: 4.2.3 dev: true /cli-width@3.0.0: - resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==, + } + engines: { node: '>= 10' } dev: true /client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + resolution: + { + integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, + } /cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + resolution: + { + integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==, + } dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 /cliui@8.0.1: - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, + } + engines: { node: '>=12' } dependencies: string-width: 4.2.3 strip-ansi: 6.0.1 wrap-ansi: 7.0.0 /clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==, + } + engines: { node: '>=6' } dependencies: is-plain-object: 2.0.4 kind-of: 6.0.3 @@ -8884,151 +11632,244 @@ packages: dev: true /clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + resolution: + { + integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==, + } dependencies: mimic-response: 1.0.1 dev: true /clone@1.0.4: - resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==, + } + engines: { node: '>=0.8' } /clone@2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, + } + engines: { node: '>=0.8' } dev: false /clsx@1.1.1: - resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==, + } + engines: { node: '>=6' } dev: false /co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + resolution: + { + integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==, + } + engines: { iojs: '>= 1.0.0', node: '>= 0.12.0' } /code-block-writer@10.1.1: - resolution: {integrity: sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==} + resolution: + { + integrity: sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==, + } dev: true /collect-v8-coverage@1.0.1: - resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} + resolution: + { + integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==, + } /collection-visit@1.0.0: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==, + } + engines: { node: '>=0.10.0' } dependencies: map-visit: 1.0.0 object-visit: 1.0.1 dev: false /color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + resolution: + { + integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, + } dependencies: color-name: 1.1.3 /color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + resolution: + { + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, + } + engines: { node: '>=7.0.0' } dependencies: color-name: 1.1.4 /color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, + } /color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, + } /color-string@1.9.1: - resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + resolution: + { + integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==, + } dependencies: color-name: 1.1.4 simple-swizzle: 0.2.2 dev: false /color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} + resolution: + { + integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==, + } hasBin: true dev: true /color@4.2.3: - resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} - engines: {node: '>=12.5.0'} + resolution: + { + integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==, + } + engines: { node: '>=12.5.0' } dependencies: color-convert: 2.0.1 color-string: 1.9.1 dev: false /colorette@2.0.19: - resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} + resolution: + { + integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==, + } /combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, + } + engines: { node: '>= 0.8' } dependencies: delayed-stream: 1.0.0 /comma-separated-tokens@1.0.8: - resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} + resolution: + { + integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==, + } dev: false /comma-separated-tokens@2.0.2: - resolution: {integrity: sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==} + resolution: + { + integrity: sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==, + } dev: false /commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + resolution: + { + integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, + } /commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==, + } + engines: { node: '>= 6' } dev: true /commander@7.2.0: - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==, + } + engines: { node: '>= 10' } dev: true /commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==, + } + engines: { node: '>= 12' } dev: false /commander@9.4.1: - resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==} - engines: {node: ^12.20.0 || >=14} + resolution: + { + integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==, + } + engines: { node: ^12.20.0 || >=14 } /comment-parser@1.3.1: - resolution: {integrity: sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-B52sN2VNghyq5ofvUsqZjmk6YkihBX5vMSChmSK9v4ShjKf3Vk5Xcmgpw4o+iIgtrnM/u5FiMpz9VKb8lpBveA==, + } + engines: { node: '>= 12.0.0' } dev: true /common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==, + } + engines: { node: '>=4.0.0' } dev: true /commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + resolution: + { + integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==, + } dev: true /compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + resolution: + { + integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==, + } dependencies: array-ify: 1.0.0 dot-prop: 5.3.0 dev: true /component-emitter@1.3.0: - resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} + resolution: + { + integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==, + } dev: false /concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + resolution: + { + integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, + } /concat-stream@2.0.0: - resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==} - engines: {'0': node >= 6.0} + resolution: + { + integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==, + } + engines: { '0': node >= 6.0 } dependencies: buffer-from: 1.1.2 inherits: 2.0.4 @@ -9037,8 +11878,11 @@ packages: dev: true /concordance@5.0.4: - resolution: {integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==} - engines: {node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14'} + resolution: + { + integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==, + } + engines: { node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14' } dependencies: date-time: 3.1.0 esutils: 2.0.3 @@ -9051,8 +11895,11 @@ packages: dev: true /configstore@5.0.1: - resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==, + } + engines: { node: '>=8' } dependencies: dot-prop: 5.3.0 graceful-fs: 4.2.11 @@ -9063,45 +11910,66 @@ packages: dev: true /confusing-browser-globals@1.0.11: - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + resolution: + { + integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==, + } dev: true /console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + resolution: + { + integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==, + } dev: true /content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, + } + engines: { node: '>= 0.6' } dependencies: safe-buffer: 5.2.1 dev: true /conventional-changelog-angular@5.0.13: - resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==, + } + engines: { node: '>=10' } dependencies: compare-func: 2.0.0 q: 1.5.1 dev: true /conventional-changelog-atom@2.0.8: - resolution: {integrity: sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==, + } + engines: { node: '>=10' } dependencies: q: 1.5.1 dev: true /conventional-changelog-codemirror@2.0.8: - resolution: {integrity: sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==, + } + engines: { node: '>=10' } dependencies: q: 1.5.1 dev: true /conventional-changelog-conventionalcommits@4.6.3: - resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==, + } + engines: { node: '>=10' } dependencies: compare-func: 2.0.0 lodash: 4.17.21 @@ -9109,8 +11977,11 @@ packages: dev: true /conventional-changelog-conventionalcommits@5.0.0: - resolution: {integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==, + } + engines: { node: '>=10' } dependencies: compare-func: 2.0.0 lodash: 4.17.21 @@ -9118,8 +11989,11 @@ packages: dev: true /conventional-changelog-core@4.2.4: - resolution: {integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==, + } + engines: { node: '>=10' } dependencies: add-stream: 1.0.0 conventional-changelog-writer: 5.0.1 @@ -9138,49 +12012,70 @@ packages: dev: true /conventional-changelog-ember@2.0.9: - resolution: {integrity: sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==, + } + engines: { node: '>=10' } dependencies: q: 1.5.1 dev: true /conventional-changelog-eslint@3.0.9: - resolution: {integrity: sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==, + } + engines: { node: '>=10' } dependencies: q: 1.5.1 dev: true /conventional-changelog-express@2.0.6: - resolution: {integrity: sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==, + } + engines: { node: '>=10' } dependencies: q: 1.5.1 dev: true /conventional-changelog-jquery@3.0.11: - resolution: {integrity: sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==, + } + engines: { node: '>=10' } dependencies: q: 1.5.1 dev: true /conventional-changelog-jshint@2.0.9: - resolution: {integrity: sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==, + } + engines: { node: '>=10' } dependencies: compare-func: 2.0.0 q: 1.5.1 dev: true /conventional-changelog-preset-loader@2.3.4: - resolution: {integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==, + } + engines: { node: '>=10' } dev: true /conventional-changelog-writer@5.0.1: - resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==, + } + engines: { node: '>=10' } hasBin: true dependencies: conventional-commits-filter: 2.0.7 @@ -9195,8 +12090,11 @@ packages: dev: true /conventional-changelog@3.1.25: - resolution: {integrity: sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==, + } + engines: { node: '>=10' } dependencies: conventional-changelog-angular: 5.0.13 conventional-changelog-atom: 2.0.8 @@ -9212,16 +12110,22 @@ packages: dev: true /conventional-commits-filter@2.0.7: - resolution: {integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==, + } + engines: { node: '>=10' } dependencies: lodash.ismatch: 4.4.0 modify-values: 1.0.1 dev: true /conventional-commits-parser@3.2.4: - resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==, + } + engines: { node: '>=10' } hasBin: true dependencies: JSONStream: 1.3.5 @@ -9233,8 +12137,11 @@ packages: dev: true /conventional-recommended-bump@6.1.0: - resolution: {integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==, + } + engines: { node: '>=10' } hasBin: true dependencies: concat-stream: 2.0.0 @@ -9248,28 +12155,46 @@ packages: dev: true /convert-hrtime@3.0.0: - resolution: {integrity: sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA==, + } + engines: { node: '>=8' } dev: true /convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + resolution: + { + integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, + } /convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + resolution: + { + integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, + } /cookie@0.5.0: - resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==, + } + engines: { node: '>= 0.6' } /copy-descriptor@0.1.1: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==, + } + engines: { node: '>=0.10.0' } dev: false /copy-webpack-plugin@10.2.4(webpack@5.86.0): - resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} - engines: {node: '>= 12.20.0'} + resolution: + { + integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==, + } + engines: { node: '>= 12.20.0' } peerDependencies: webpack: ^5.1.0 dependencies: @@ -9283,31 +12208,49 @@ packages: dev: true /core-js-compat@3.32.2: - resolution: {integrity: sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ==} + resolution: + { + integrity: sha512-+GjlguTDINOijtVRUxrQOv3kfu9rl+qPNdX2LTbJ/ZyVTuxK+ksVSAGX1nHstu4hrv1En/uPTtWgq2gI5wt4AQ==, + } dependencies: browserslist: 4.21.11 /core-js@3.25.5: - resolution: {integrity: sha512-nbm6eZSjm+ZuBQxCUPQKQCoUEfFOXjUZ8dTTyikyKaWrTYmAVbykQfwsKE5dBK88u3QCkCrzsx/PPlKfhsvgpw==} + resolution: + { + integrity: sha512-nbm6eZSjm+ZuBQxCUPQKQCoUEfFOXjUZ8dTTyikyKaWrTYmAVbykQfwsKE5dBK88u3QCkCrzsx/PPlKfhsvgpw==, + } requiresBuild: true dev: false /core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + resolution: + { + integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==, + } dev: true /core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + resolution: + { + integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, + } dev: true /corser@2.0.1: - resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==, + } + engines: { node: '>= 0.4.0' } dev: true /cosmiconfig-typescript-loader@4.3.0(@types/node@18.15.11)(cosmiconfig@8.1.3)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} - engines: {node: '>=12', npm: '>=6'} + resolution: + { + integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==, + } + engines: { node: '>=12', npm: '>=6' } peerDependencies: '@types/node': '*' cosmiconfig: '>=7' @@ -9321,8 +12264,11 @@ packages: dev: true /cosmiconfig@6.0.0: - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==, + } + engines: { node: '>=8' } dependencies: '@types/parse-json': 4.0.0 import-fresh: 3.3.0 @@ -9331,8 +12277,11 @@ packages: yaml: 1.10.2 /cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==, + } + engines: { node: '>=10' } dependencies: '@types/parse-json': 4.0.0 import-fresh: 3.3.0 @@ -9342,8 +12291,11 @@ packages: dev: false /cosmiconfig@8.1.3: - resolution: {integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw==, + } + engines: { node: '>=14' } dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -9352,10 +12304,16 @@ packages: dev: true /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + resolution: + { + integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, + } /cross-fetch@3.1.5: - resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} + resolution: + { + integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==, + } dependencies: node-fetch: 2.6.7 transitivePeerDependencies: @@ -9363,7 +12321,10 @@ packages: dev: false /cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + resolution: + { + integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, + } dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 @@ -9371,8 +12332,11 @@ packages: dev: true /cross-spawn@6.0.5: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} - engines: {node: '>=4.8'} + resolution: + { + integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==, + } + engines: { node: '>=4.8' } dependencies: nice-try: 1.0.5 path-key: 2.0.1 @@ -9382,28 +12346,43 @@ packages: dev: false /cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, + } + engines: { node: '>= 8' } dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 /crypto-js@4.1.1: - resolution: {integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==} + resolution: + { + integrity: sha512-o2JlM7ydqd3Qk9CA0L4NL6mTzU2sdx96a+oOfPu8Mkl/PK51vSyoi8/rQ8NknZtk44vq15lmhAj9CIAGwgeWKw==, + } dev: false /crypto-random-string@2.0.0: - resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==, + } + engines: { node: '>=8' } dev: true /csl-json@0.1.0: - resolution: {integrity: sha512-KMvcQ07H0kMpzl2aO1mgyp+F+LVk+z+QMpN01noMUv0Uu4mqg4KyJjeM2u2716qU9ZgPq1Kr30DXqhT4RuEg1w==} + resolution: + { + integrity: sha512-KMvcQ07H0kMpzl2aO1mgyp+F+LVk+z+QMpN01noMUv0Uu4mqg4KyJjeM2u2716qU9ZgPq1Kr30DXqhT4RuEg1w==, + } dev: false /css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + resolution: + { + integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==, + } dependencies: boolbase: 1.0.0 css-what: 6.1.0 @@ -9413,83 +12392,125 @@ packages: dev: true /css-selector-parser@1.4.1: - resolution: {integrity: sha512-HYPSb7y/Z7BNDCOrakL4raGO2zltZkbeXyAd6Tg9obzix6QhzxCotdBl6VT0Dv4vZfJGVz3WL/xaEI9Ly3ul0g==} + resolution: + { + integrity: sha512-HYPSb7y/Z7BNDCOrakL4raGO2zltZkbeXyAd6Tg9obzix6QhzxCotdBl6VT0Dv4vZfJGVz3WL/xaEI9Ly3ul0g==, + } dev: false /css-tree@2.2.1: - resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + resolution: + { + integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==, + } + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0' } dependencies: mdn-data: 2.0.28 source-map-js: 1.0.2 dev: true /css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + resolution: + { + integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==, + } + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 } dependencies: mdn-data: 2.0.30 source-map-js: 1.0.2 dev: true /css-what@6.1.0: - resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==, + } + engines: { node: '>= 6' } dev: true /cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, + } + engines: { node: '>=4' } hasBin: true dev: true /csso@5.0.5: - resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + resolution: + { + integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==, + } + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0' } dependencies: css-tree: 2.2.1 dev: true /cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + resolution: + { + integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==, + } dev: true /cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + resolution: + { + integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==, + } dev: true /cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==, + } + engines: { node: '>=8' } dependencies: cssom: 0.3.8 dev: true /cssstyle@3.0.0: - resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==, + } + engines: { node: '>=14' } dependencies: rrweb-cssom: 0.6.0 dev: true /csstype@3.0.9: - resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==} + resolution: + { + integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==, + } dev: false /csstype@3.1.1: - resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==} + resolution: + { + integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==, + } /csv-parser@3.0.0: - resolution: {integrity: sha512-s6OYSXAK3IdKqYO33y09jhypG/bSDHPuyCme/IdEHfWpLf/jKcpitVFyOC6UemgGk8v7Q5u2XE0vvwmanxhGlQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-s6OYSXAK3IdKqYO33y09jhypG/bSDHPuyCme/IdEHfWpLf/jKcpitVFyOC6UemgGk8v7Q5u2XE0vvwmanxhGlQ==, + } + engines: { node: '>= 10' } hasBin: true dependencies: minimist: 1.2.8 dev: false /csvtojson@2.0.10: - resolution: {integrity: sha512-lUWFxGKyhraKCW8Qghz6Z0f2l/PqB1W3AO0HKJzGIQ5JRSlR651ekJDiGJbBT4sRNNv5ddnSGVEnsxP9XRCVpQ==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-lUWFxGKyhraKCW8Qghz6Z0f2l/PqB1W3AO0HKJzGIQ5JRSlR651ekJDiGJbBT4sRNNv5ddnSGVEnsxP9XRCVpQ==, + } + engines: { node: '>=4.0.0' } hasBin: true dependencies: bluebird: 3.7.2 @@ -9498,8 +12519,11 @@ packages: dev: false /cypress@13.2.0: - resolution: {integrity: sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==} - engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==, + } + engines: { node: ^16.0.0 || ^18.0.0 || >=20.0.0 } hasBin: true requiresBuild: true dependencies: @@ -9549,24 +12573,36 @@ packages: dev: true /damerau-levenshtein@1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + resolution: + { + integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, + } dev: true /dargs@7.0.0: - resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==, + } + engines: { node: '>=8' } dev: true /dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==, + } + engines: { node: '>=0.10' } dependencies: assert-plus: 1.0.0 dev: true /data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==, + } + engines: { node: '>=12' } dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 @@ -9574,8 +12610,11 @@ packages: dev: true /data-urls@4.0.0: - resolution: {integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-/mMTei/JXPqvFqQtfyTowxmJVwr2PVAeCcDxyFf6LhoOu/09TX2OX3kb2wzi4DMXcfj4OItwDOnhl5oziPnT6g==, + } + engines: { node: '>=14' } dependencies: abab: 2.0.6 whatwg-mimetype: 3.0.0 @@ -9583,26 +12622,41 @@ packages: dev: true /date-fns@2.29.3: - resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==} - engines: {node: '>=0.11'} + resolution: + { + integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==, + } + engines: { node: '>=0.11' } dev: false /date-time@3.1.0: - resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==, + } + engines: { node: '>=6' } dependencies: time-zone: 1.0.0 dev: true /dateformat@3.0.3: - resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} + resolution: + { + integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==, + } dev: true /dayjs@1.11.6: - resolution: {integrity: sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ==} + resolution: + { + integrity: sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ==, + } /debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + resolution: + { + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, + } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -9613,7 +12667,10 @@ packages: dev: false /debug@3.2.7(supports-color@8.1.1): - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, + } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -9625,8 +12682,11 @@ packages: dev: true /debug@4.3.4(supports-color@8.1.1): - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + } + engines: { node: '>=6.0' } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -9637,58 +12697,88 @@ packages: supports-color: 8.1.1 /decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==, + } + engines: { node: '>=0.10.0' } dependencies: decamelize: 1.2.0 map-obj: 1.0.1 dev: true /decamelize@1.2.0: - resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==, + } + engines: { node: '>=0.10.0' } dev: true /decimal.js@10.4.3: - resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + resolution: + { + integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==, + } dev: true /decode-named-character-reference@1.0.2: - resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + resolution: + { + integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==, + } dependencies: character-entities: 2.0.2 /decode-uri-component@0.2.2: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==, + } + engines: { node: '>=0.10' } dev: false /decompress-response@3.3.0: - resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==, + } + engines: { node: '>=4' } dependencies: mimic-response: 1.0.1 dev: true /decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==, + } + engines: { node: '>=10' } dependencies: mimic-response: 3.1.0 dev: true /dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + resolution: + { + integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==, + } /deep-eql@4.1.3: - resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==, + } + engines: { node: '>=6' } dependencies: type-detect: 4.0.8 dev: true /deep-equal@1.1.1: - resolution: {integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==} + resolution: + { + integrity: sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==, + } dependencies: is-arguments: 1.1.1 is-date-object: 1.0.5 @@ -9699,7 +12789,10 @@ packages: dev: false /deep-equal@2.2.0: - resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==} + resolution: + { + integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==, + } dependencies: call-bind: 1.0.2 es-get-iterator: 1.1.3 @@ -9721,102 +12814,162 @@ packages: dev: true /deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==, + } + engines: { node: '>=4.0.0' } dev: true /deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + resolution: + { + integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, + } /deepmerge@4.3.1: - resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, + } + engines: { node: '>=0.10.0' } /defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + resolution: + { + integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, + } dependencies: clone: 1.0.4 dev: true /defer-to-connect@1.1.3: - resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} + resolution: + { + integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==, + } dev: true /defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==, + } + engines: { node: '>=10' } dev: true /define-lazy-prop@2.0.0: - resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==, + } + engines: { node: '>=8' } /define-properties@1.2.0: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, + } + engines: { node: '>= 0.4' } dependencies: has-property-descriptors: 1.0.0 object-keys: 1.1.1 /define-property@0.2.5: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==, + } + engines: { node: '>=0.10.0' } dependencies: is-descriptor: 0.1.6 dev: false /define-property@1.0.0: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==, + } + engines: { node: '>=0.10.0' } dependencies: is-descriptor: 1.0.2 dev: false /define-property@2.0.2: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==, + } + engines: { node: '>=0.10.0' } dependencies: is-descriptor: 1.0.2 isobject: 3.0.1 dev: false /defined@1.0.1: - resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} + resolution: + { + integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==, + } dev: true /delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, + } + engines: { node: '>=0.4.0' } /delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + resolution: + { + integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==, + } dev: true /depd@2.0.0: - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, + } + engines: { node: '>= 0.8' } dev: true /dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, + } + engines: { node: '>=6' } /detect-indent@6.1.0: - resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==, + } + engines: { node: '>=8' } dev: true /detect-libc@2.0.1: - resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==, + } + engines: { node: '>=8' } dev: true /detect-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==, + } + engines: { node: '>=8' } /detect-port@1.5.1: - resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} + resolution: + { + integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==, + } hasBin: true dependencies: address: 1.2.2 @@ -9825,8 +12978,11 @@ packages: - supports-color /detective@5.2.1: - resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==, + } + engines: { node: '>=0.8.0' } hasBin: true dependencies: acorn-node: 1.8.2 @@ -9835,73 +12991,118 @@ packages: dev: true /devalue@4.3.0: - resolution: {integrity: sha512-n94yQo4LI3w7erwf84mhRUkUJfhLoCZiLyoOZ/QFsDbcWNZePrLwbQpvZBUG2TNxwV3VjCKPxkiiQA6pe3TrTA==} + resolution: + { + integrity: sha512-n94yQo4LI3w7erwf84mhRUkUJfhLoCZiLyoOZ/QFsDbcWNZePrLwbQpvZBUG2TNxwV3VjCKPxkiiQA6pe3TrTA==, + } /dfa@1.2.0: - resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} + resolution: + { + integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==, + } dev: false /didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + resolution: + { + integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==, + } dev: true /diff-sequences@29.4.3: - resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } /diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} + resolution: + { + integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, + } + engines: { node: '>=0.3.1' } /diff@5.1.0: - resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==} - engines: {node: '>=0.3.1'} + resolution: + { + integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==, + } + engines: { node: '>=0.3.1' } /dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + } + engines: { node: '>=8' } dependencies: path-type: 4.0.0 dev: true /direction@2.0.1: - resolution: {integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==} + resolution: + { + integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==, + } hasBin: true dev: false /discontinuous-range@1.0.0: - resolution: {integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==} + resolution: + { + integrity: sha512-c68LpLbO+7kP/b1Hr1qs8/BJ09F5khZGTxqxZuhzxpmwJKOgRFHJWIb9/KmqnqHhLdO55aOxFH/EGBvUQbL/RQ==, + } /dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + resolution: + { + integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, + } dev: true /doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, + } + engines: { node: '>=0.10.0' } dependencies: esutils: 2.0.3 dev: true /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, + } + engines: { node: '>=6.0.0' } dependencies: esutils: 2.0.3 /dom-accessibility-api@0.5.14: - resolution: {integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==} + resolution: + { + integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==, + } dev: true /dom-helpers@5.2.1: - resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + resolution: + { + integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==, + } dependencies: '@babel/runtime': 7.22.15 csstype: 3.1.1 dev: false /dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + resolution: + { + integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, + } dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 @@ -9909,25 +13110,37 @@ packages: dev: true /domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + resolution: + { + integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, + } dev: true /domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==, + } + engines: { node: '>=12' } dependencies: webidl-conversions: 7.0.0 dev: true /domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==, + } + engines: { node: '>= 4' } dependencies: domelementtype: 2.3.0 dev: true /domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + resolution: + { + integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==, + } dependencies: dom-serializer: 2.0.0 domelementtype: 2.3.0 @@ -9935,51 +13148,81 @@ packages: dev: true /dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + resolution: + { + integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, + } dependencies: no-case: 3.0.4 tslib: 2.6.2 dev: true /dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==, + } + engines: { node: '>=8' } dependencies: is-obj: 2.0.0 dev: true /dotenv-expand@10.0.0: - resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==, + } + engines: { node: '>=12' } /dotenv@10.0.0: - resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==, + } + engines: { node: '>=10' } /dotenv@16.3.1: - resolution: {integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==, + } + engines: { node: '>=12' } /duplexer3@0.1.5: - resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} + resolution: + { + integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==, + } dev: true /duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + resolution: + { + integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, + } /eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + resolution: + { + integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, + } dev: false /ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + resolution: + { + integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==, + } dependencies: jsbn: 0.1.1 safer-buffer: 2.1.2 dev: true /edge-runtime@1.1.0-beta.23: - resolution: {integrity: sha512-A7dO/Y+4UJnaxFcdz6pepL+0GcvvViWvf201oFQXepgdSxPDKiqxaayCag0eiirQ6OfF+cSTmPD3xrfEoAIjiQ==} + resolution: + { + integrity: sha512-A7dO/Y+4UJnaxFcdz6pepL+0GcvvViWvf201oFQXepgdSxPDKiqxaayCag0eiirQ6OfF+cSTmPD3xrfEoAIjiQ==, + } hasBin: true dependencies: '@edge-runtime/format': 1.1.0-beta.31 @@ -9994,76 +13237,121 @@ packages: dev: true /ejs@3.1.8: - resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==, + } + engines: { node: '>=0.10.0' } hasBin: true dependencies: jake: 10.8.5 /electron-to-chromium@1.4.284: - resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} + resolution: + { + integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==, + } /electron-to-chromium@1.4.527: - resolution: {integrity: sha512-EafxEiEDzk2aLrdbtVczylHflHdHkNrpGNHIgDyA63sUQLQVS2ayj2hPw3RsVB42qkwURH+T2OxV7kGPUuYszA==} + resolution: + { + integrity: sha512-EafxEiEDzk2aLrdbtVczylHflHdHkNrpGNHIgDyA63sUQLQVS2ayj2hPw3RsVB42qkwURH+T2OxV7kGPUuYszA==, + } /emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==, + } + engines: { node: '>=12' } /emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + } /emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + resolution: + { + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + } /emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==, + } + engines: { node: '>= 4' } dev: true /end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + resolution: + { + integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, + } dependencies: once: 1.4.0 /enhanced-resolve@5.12.0: - resolution: {integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==, + } + engines: { node: '>=10.13.0' } dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 dev: true /enhanced-resolve@5.14.1: - resolution: {integrity: sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==, + } + engines: { node: '>=10.13.0' } dependencies: graceful-fs: 4.2.11 tapable: 2.2.1 dev: true /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==, + } + engines: { node: '>=8.6' } dependencies: ansi-colors: 4.1.3 /entities@2.1.0: - resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} + resolution: + { + integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==, + } dev: true /entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==, + } + engines: { node: '>=0.12' } /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, + } dependencies: is-arrayish: 0.2.1 /es-abstract@1.21.2: - resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==, + } + engines: { node: '>= 0.4' } dependencies: array-buffer-byte-length: 1.0.0 available-typed-arrays: 1.0.5 @@ -10102,7 +13390,10 @@ packages: dev: true /es-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + resolution: + { + integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==, + } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.0 @@ -10116,12 +13407,18 @@ packages: dev: true /es-module-lexer@1.3.0: - resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==} + resolution: + { + integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==, + } dev: true /es-set-tostringtag@2.0.1: - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==, + } + engines: { node: '>= 0.4' } dependencies: get-intrinsic: 1.2.0 has: 1.0.3 @@ -10129,14 +13426,20 @@ packages: dev: true /es-shim-unscopables@1.0.0: - resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + resolution: + { + integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, + } dependencies: has: 1.0.3 dev: true /es-to-primitive@1.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, + } + engines: { node: '>= 0.4' } dependencies: is-callable: 1.2.7 is-date-object: 1.0.5 @@ -10144,12 +13447,18 @@ packages: dev: true /es6-promise@3.3.1: - resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} + resolution: + { + integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==, + } dev: true /esbuild-android-64@0.14.47: - resolution: {integrity: sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==, + } + engines: { node: '>=12' } cpu: [x64] os: [android] requiresBuild: true @@ -10157,8 +13466,11 @@ packages: optional: true /esbuild-android-arm64@0.14.47: - resolution: {integrity: sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==, + } + engines: { node: '>=12' } cpu: [arm64] os: [android] requiresBuild: true @@ -10166,8 +13478,11 @@ packages: optional: true /esbuild-darwin-64@0.14.47: - resolution: {integrity: sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==, + } + engines: { node: '>=12' } cpu: [x64] os: [darwin] requiresBuild: true @@ -10175,8 +13490,11 @@ packages: optional: true /esbuild-darwin-arm64@0.14.47: - resolution: {integrity: sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==, + } + engines: { node: '>=12' } cpu: [arm64] os: [darwin] requiresBuild: true @@ -10184,8 +13502,11 @@ packages: optional: true /esbuild-freebsd-64@0.14.47: - resolution: {integrity: sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [freebsd] requiresBuild: true @@ -10193,8 +13514,11 @@ packages: optional: true /esbuild-freebsd-arm64@0.14.47: - resolution: {integrity: sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==, + } + engines: { node: '>=12' } cpu: [arm64] os: [freebsd] requiresBuild: true @@ -10202,7 +13526,10 @@ packages: optional: true /esbuild-jest@0.5.0(esbuild@0.19.3): - resolution: {integrity: sha512-AMZZCdEpXfNVOIDvURlqYyHwC8qC1/BFjgsrOiSL1eyiIArVtHL8YAC83Shhn16cYYoAWEW17yZn0W/RJKJKHQ==} + resolution: + { + integrity: sha512-AMZZCdEpXfNVOIDvURlqYyHwC8qC1/BFjgsrOiSL1eyiIArVtHL8YAC83Shhn16cYYoAWEW17yZn0W/RJKJKHQ==, + } peerDependencies: esbuild: '>=0.8.50' dependencies: @@ -10215,8 +13542,11 @@ packages: dev: false /esbuild-linux-32@0.14.47: - resolution: {integrity: sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==, + } + engines: { node: '>=12' } cpu: [ia32] os: [linux] requiresBuild: true @@ -10224,8 +13554,11 @@ packages: optional: true /esbuild-linux-64@0.14.47: - resolution: {integrity: sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==, + } + engines: { node: '>=12' } cpu: [x64] os: [linux] requiresBuild: true @@ -10233,8 +13566,11 @@ packages: optional: true /esbuild-linux-arm64@0.14.47: - resolution: {integrity: sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==, + } + engines: { node: '>=12' } cpu: [arm64] os: [linux] requiresBuild: true @@ -10242,8 +13578,11 @@ packages: optional: true /esbuild-linux-arm@0.14.47: - resolution: {integrity: sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==, + } + engines: { node: '>=12' } cpu: [arm] os: [linux] requiresBuild: true @@ -10251,8 +13590,11 @@ packages: optional: true /esbuild-linux-mips64le@0.14.47: - resolution: {integrity: sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==, + } + engines: { node: '>=12' } cpu: [mips64el] os: [linux] requiresBuild: true @@ -10260,8 +13602,11 @@ packages: optional: true /esbuild-linux-ppc64le@0.14.47: - resolution: {integrity: sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==, + } + engines: { node: '>=12' } cpu: [ppc64] os: [linux] requiresBuild: true @@ -10269,8 +13614,11 @@ packages: optional: true /esbuild-linux-riscv64@0.14.47: - resolution: {integrity: sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==, + } + engines: { node: '>=12' } cpu: [riscv64] os: [linux] requiresBuild: true @@ -10278,8 +13626,11 @@ packages: optional: true /esbuild-linux-s390x@0.14.47: - resolution: {integrity: sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==, + } + engines: { node: '>=12' } cpu: [s390x] os: [linux] requiresBuild: true @@ -10287,8 +13638,11 @@ packages: optional: true /esbuild-netbsd-64@0.14.47: - resolution: {integrity: sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [netbsd] requiresBuild: true @@ -10296,8 +13650,11 @@ packages: optional: true /esbuild-openbsd-64@0.14.47: - resolution: {integrity: sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==, + } + engines: { node: '>=12' } cpu: [x64] os: [openbsd] requiresBuild: true @@ -10305,7 +13662,10 @@ packages: optional: true /esbuild-register@3.4.2(esbuild@0.19.3): - resolution: {integrity: sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==} + resolution: + { + integrity: sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==, + } peerDependencies: esbuild: '>=0.12 <1' dependencies: @@ -10316,8 +13676,11 @@ packages: dev: true /esbuild-sunos-64@0.14.47: - resolution: {integrity: sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [sunos] requiresBuild: true @@ -10325,8 +13688,11 @@ packages: optional: true /esbuild-windows-32@0.14.47: - resolution: {integrity: sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==, + } + engines: { node: '>=12' } cpu: [ia32] os: [win32] requiresBuild: true @@ -10334,8 +13700,11 @@ packages: optional: true /esbuild-windows-64@0.14.47: - resolution: {integrity: sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==, + } + engines: { node: '>=12' } cpu: [x64] os: [win32] requiresBuild: true @@ -10343,8 +13712,11 @@ packages: optional: true /esbuild-windows-arm64@0.14.47: - resolution: {integrity: sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==, + } + engines: { node: '>=12' } cpu: [arm64] os: [win32] requiresBuild: true @@ -10352,8 +13724,11 @@ packages: optional: true /esbuild@0.14.47: - resolution: {integrity: sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==, + } + engines: { node: '>=12' } hasBin: true requiresBuild: true optionalDependencies: @@ -10380,8 +13755,11 @@ packages: dev: true /esbuild@0.17.14: - resolution: {integrity: sha512-vOO5XhmVj/1XQR9NQ1UPq6qvMYL7QFJU57J5fKBKBKxp17uDt5PgxFDb4A2nEiXhr1qQs4x0F5+66hVVw4ruNw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-vOO5XhmVj/1XQR9NQ1UPq6qvMYL7QFJU57J5fKBKBKxp17uDt5PgxFDb4A2nEiXhr1qQs4x0F5+66hVVw4ruNw==, + } + engines: { node: '>=12' } hasBin: true requiresBuild: true optionalDependencies: @@ -10410,8 +13788,11 @@ packages: dev: true /esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==, + } + engines: { node: '>=12' } hasBin: true requiresBuild: true optionalDependencies: @@ -10439,8 +13820,11 @@ packages: '@esbuild/win32-x64': 0.18.20 /esbuild@0.19.3: - resolution: {integrity: sha512-UlJ1qUUA2jL2nNib1JTSkifQTcYTroFqRjwCFW4QYEKEsixXD5Tik9xML7zh2gTxkYTBKGHNH9y7txMwVyPbjw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-UlJ1qUUA2jL2nNib1JTSkifQTcYTroFqRjwCFW4QYEKEsixXD5Tik9xML7zh2gTxkYTBKGHNH9y7txMwVyPbjw==, + } + engines: { node: '>=12' } hasBin: true requiresBuild: true optionalDependencies: @@ -10468,37 +13852,61 @@ packages: '@esbuild/win32-x64': 0.19.3 /escalade@3.1.1: - resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, + } + engines: { node: '>=6' } /escape-goat@2.1.1: - resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==, + } + engines: { node: '>=8' } dev: true /escape-latex@1.2.0: - resolution: {integrity: sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw==} + resolution: + { + integrity: sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw==, + } dev: false /escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } + engines: { node: '>=0.8.0' } /escape-string-regexp@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, + } + engines: { node: '>=8' } /escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, + } + engines: { node: '>=10' } /escape-string-regexp@5.0.0: - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, + } + engines: { node: '>=12' } /escodegen@1.2.0: - resolution: {integrity: sha512-yLy3Cc+zAC0WSmoT2fig3J87TpQ8UaZGx8ahCAs9FL8qNbyV7CVyPKS74DG4bsHiL5ew9sxdYx131OkBQMFnvA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-yLy3Cc+zAC0WSmoT2fig3J87TpQ8UaZGx8ahCAs9FL8qNbyV7CVyPKS74DG4bsHiL5ew9sxdYx131OkBQMFnvA==, + } + engines: { node: '>=0.4.0' } hasBin: true dependencies: esprima: 1.0.4 @@ -10509,8 +13917,11 @@ packages: dev: false /escodegen@2.0.0: - resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==, + } + engines: { node: '>=6.0' } hasBin: true dependencies: esprima: 4.0.1 @@ -10522,7 +13933,10 @@ packages: dev: true /eslint-config-next@13.2.4(eslint@8.46.0)(typescript@5.2.2): - resolution: {integrity: sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg==} + resolution: + { + integrity: sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg==, + } peerDependencies: eslint: ^7.23.0 || ^8.0.0 typescript: '>=3.3.1' @@ -10547,7 +13961,10 @@ packages: dev: true /eslint-config-prettier@8.8.0(eslint@8.46.0): - resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} + resolution: + { + integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==, + } hasBin: true peerDependencies: eslint: '>=7.0.0' @@ -10556,7 +13973,10 @@ packages: dev: true /eslint-import-resolver-node@0.3.7: - resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} + resolution: + { + integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==, + } dependencies: debug: 3.2.7(supports-color@8.1.1) is-core-module: 2.11.0 @@ -10566,8 +13986,11 @@ packages: dev: true /eslint-import-resolver-typescript@3.5.3(eslint-plugin-import@2.27.5)(eslint@8.46.0): - resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==, + } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: eslint: '*' eslint-plugin-import: '*' @@ -10586,8 +14009,11 @@ packages: dev: true /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.3)(eslint@8.46.0): - resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==, + } + engines: { node: '>=4' } peerDependencies: '@typescript-eslint/parser': '*' eslint: '*' @@ -10616,7 +14042,10 @@ packages: dev: true /eslint-plugin-cypress@2.15.1(eslint@8.46.0): - resolution: {integrity: sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==} + resolution: + { + integrity: sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==, + } peerDependencies: eslint: '>= 3.2.1' dependencies: @@ -10625,8 +14054,11 @@ packages: dev: true /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.5.3)(eslint@8.46.0): - resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==, + } + engines: { node: '>=4' } peerDependencies: '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 @@ -10658,8 +14090,11 @@ packages: dev: true /eslint-plugin-jsx-a11y@6.7.1(eslint@8.46.0): - resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==, + } + engines: { node: '>=4.0' } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: @@ -10683,8 +14118,11 @@ packages: dev: true /eslint-plugin-react-hooks@4.6.0(eslint@8.46.0): - resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==, + } + engines: { node: '>=10' } peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: @@ -10692,8 +14130,11 @@ packages: dev: true /eslint-plugin-react@7.32.2(eslint@8.46.0): - resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==, + } + engines: { node: '>=4' } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: @@ -10716,8 +14157,11 @@ packages: dev: true /eslint-plugin-regexp@1.13.0(eslint@8.46.0): - resolution: {integrity: sha512-MAyx+n+gmkuK2kWPHoSITi+r8eEK9oCYEx4yrKwpePSzklsdEm5afDHVAjl7VEY0OZ/2iEi9jsxJwPpcgFbt+A==} - engines: {node: ^12 || >=14} + resolution: + { + integrity: sha512-MAyx+n+gmkuK2kWPHoSITi+r8eEK9oCYEx4yrKwpePSzklsdEm5afDHVAjl7VEY0OZ/2iEi9jsxJwPpcgFbt+A==, + } + engines: { node: ^12 || >=14 } peerDependencies: eslint: '>=6.0.0' dependencies: @@ -10733,8 +14177,11 @@ packages: dev: true /eslint-plugin-svelte3@3.4.1(eslint@8.46.0)(svelte@3.57.0): - resolution: {integrity: sha512-7p59WG8qV8L6wLdl4d/c3mdjkgVglQCdv5XOTk/iNPBKXuuV+Q0eFP5Wa6iJd/G2M1qR3BkLPEzaANOqKAZczw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-7p59WG8qV8L6wLdl4d/c3mdjkgVglQCdv5XOTk/iNPBKXuuV+Q0eFP5Wa6iJd/G2M1qR3BkLPEzaANOqKAZczw==, + } + engines: { node: '>=10' } peerDependencies: eslint: '>=6.0.0' svelte: ^3.2.0 @@ -10744,8 +14191,11 @@ packages: dev: true /eslint-plugin-unicorn@41.0.1(eslint@8.46.0): - resolution: {integrity: sha512-gF5vo2dIj0YdNMQ/IMegiBkQdQ22GBFFVpdkJP+0og3w7XD4ypea0xQVRv6iofkLVR2w0phAdikcnU01ybd4Ow==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-gF5vo2dIj0YdNMQ/IMegiBkQdQ22GBFFVpdkJP+0og3w7XD4ypea0xQVRv6iofkLVR2w0phAdikcnU01ybd4Ow==, + } + engines: { node: '>=12' } peerDependencies: eslint: '>=8.8.0' dependencies: @@ -10767,23 +14217,32 @@ packages: dev: true /eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, + } + engines: { node: '>=8.0.0' } dependencies: esrecurse: 4.3.0 estraverse: 4.3.0 dev: true /eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 /eslint-utils@3.0.0(eslint@8.46.0): - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + resolution: + { + integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, + } + engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } peerDependencies: eslint: '>=5' dependencies: @@ -10792,21 +14251,33 @@ packages: dev: true /eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, + } + engines: { node: '>=10' } dev: true /eslint-visitor-keys@3.3.0: - resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } /eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } /eslint@8.46.0: - resolution: {integrity: sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-cIO74PvbW0qU8e0mIvk5IV3ToWdCq5FYG6gWPHHkx6gNdjlbAYvtfHmlCMXxjcoVaIdwy/IAt3+mDkZkfvb2Dg==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true dependencies: '@eslint-community/eslint-utils': 4.3.0(eslint@8.46.0) @@ -10850,11 +14321,17 @@ packages: - supports-color /esm-env@1.0.0: - resolution: {integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==} + resolution: + { + integrity: sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==, + } /espree@9.4.0: - resolution: {integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: acorn: 8.8.2 acorn-jsx: 5.3.2(acorn@8.8.2) @@ -10862,108 +14339,171 @@ packages: dev: true /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: acorn: 8.10.0 acorn-jsx: 5.3.2(acorn@8.10.0) eslint-visitor-keys: 3.4.3 /esprima@1.0.4: - resolution: {integrity: sha512-rp5dMKN8zEs9dfi9g0X1ClLmV//WRyk/R15mppFNICIFRG5P92VP7Z04p8pk++gABo9W2tY+kHyu6P1mEHgmTA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-rp5dMKN8zEs9dfi9g0X1ClLmV//WRyk/R15mppFNICIFRG5P92VP7Z04p8pk++gABo9W2tY+kHyu6P1mEHgmTA==, + } + engines: { node: '>=0.4.0' } hasBin: true dev: false /esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, + } + engines: { node: '>=4' } hasBin: true /esquery@1.4.0: - resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==, + } + engines: { node: '>=0.10' } dependencies: estraverse: 5.3.0 dev: true /esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, + } + engines: { node: '>=0.10' } dependencies: estraverse: 5.3.0 /esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, + } + engines: { node: '>=4.0' } dependencies: estraverse: 5.3.0 /estraverse@1.5.1: - resolution: {integrity: sha512-FpCjJDfmo3vsc/1zKSeqR5k42tcIhxFIlvq+h9j0fO2q/h2uLKyweq7rYJ+0CoVvrGQOxIS5wyBrW/+vF58BUQ==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-FpCjJDfmo3vsc/1zKSeqR5k42tcIhxFIlvq+h9j0fO2q/h2uLKyweq7rYJ+0CoVvrGQOxIS5wyBrW/+vF58BUQ==, + } + engines: { node: '>=0.4.0' } dev: false /estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, + } + engines: { node: '>=4.0' } dev: true /estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, + } + engines: { node: '>=4.0' } /estree-walker@0.6.1: - resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==} + resolution: + { + integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==, + } dev: true /estree-walker@2.0.2: - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + resolution: + { + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, + } dev: true /esutils@1.0.0: - resolution: {integrity: sha512-x/iYH53X3quDwfHRz4y8rn4XcEwwCJeWsul9pF1zldMbGtgOtMNBEOuYWwB1EQlK2LRa1fev3YAgym/RElp5Cg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-x/iYH53X3quDwfHRz4y8rn4XcEwwCJeWsul9pF1zldMbGtgOtMNBEOuYWwB1EQlK2LRa1fev3YAgym/RElp5Cg==, + } + engines: { node: '>=0.10.0' } dev: false /esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, + } + engines: { node: '>=0.10.0' } /eventemitter2@6.4.7: - resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==} + resolution: + { + integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==, + } dev: true /eventemitter3@2.0.3: - resolution: {integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==} + resolution: + { + integrity: sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==, + } dev: false /eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + resolution: + { + integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==, + } dev: true /events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + resolution: + { + integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, + } + engines: { node: '>=0.8.x' } dev: true /eventsource-parser@1.0.0: - resolution: {integrity: sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==} - engines: {node: '>=14.18'} + resolution: + { + integrity: sha512-9jgfSCa3dmEme2ES3mPByGXfgZ87VbP97tng1G2nWwWx6bV2nYxm2AWCrbQjXToSe+yYlqaZNtxffR9IeQr95g==, + } + engines: { node: '>=14.18' } dev: false /eventsource@2.0.2: - resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==, + } + engines: { node: '>=12.0.0' } dev: false /exec-sh@0.3.6: - resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==} + resolution: + { + integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==, + } dev: false /execa@0.7.0: - resolution: {integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==, + } + engines: { node: '>=4' } dependencies: cross-spawn: 5.1.0 get-stream: 3.0.0 @@ -10975,8 +14515,11 @@ packages: dev: true /execa@1.0.0: - resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==, + } + engines: { node: '>=6' } dependencies: cross-spawn: 6.0.5 get-stream: 4.1.0 @@ -10988,8 +14531,11 @@ packages: dev: false /execa@4.1.0: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==, + } + engines: { node: '>=10' } dependencies: cross-spawn: 7.0.3 get-stream: 5.2.0 @@ -11003,8 +14549,11 @@ packages: dev: true /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, + } + engines: { node: '>=10' } dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -11018,8 +14567,11 @@ packages: dev: true /execa@6.1.0: - resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 @@ -11033,24 +14585,36 @@ packages: dev: false /executable@4.1.1: - resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==, + } + engines: { node: '>=4' } dependencies: pify: 2.3.0 dev: true /exit-hook@2.2.1: - resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==, + } + engines: { node: '>=6' } dev: true /exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, + } + engines: { node: '>= 0.8.0' } /expand-brackets@2.1.4: - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==, + } + engines: { node: '>=0.10.0' } dependencies: debug: 2.6.9 define-property: 0.2.5 @@ -11064,8 +14628,11 @@ packages: dev: false /expect@29.5.0: - resolution: {integrity: sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-yM7xqUrCO2JdpFo4XpM82t+PJBFybdqoQuJLDGeDX2ij8NZzqRHyu3Hp188/JX7SWqud+7t4MUdvcgGBICMHZg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/expect-utils': 29.5.0 jest-get-type: 29.4.3 @@ -11074,41 +14641,59 @@ packages: jest-util: 29.5.0 /ext-list@2.2.2: - resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==, + } + engines: { node: '>=0.10.0' } dependencies: mime-db: 1.52.0 dev: true /ext-name@5.0.0: - resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==, + } + engines: { node: '>=4' } dependencies: ext-list: 2.2.2 sort-keys-length: 1.0.1 dev: true /extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==, + } + engines: { node: '>=0.10.0' } dependencies: is-extendable: 0.1.1 dev: false /extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==, + } + engines: { node: '>=0.10.0' } dependencies: assign-symbols: 1.0.0 is-extendable: 1.0.1 dev: false /extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + resolution: + { + integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, + } /external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, + } + engines: { node: '>=4' } dependencies: chardet: 0.7.0 iconv-lite: 0.4.24 @@ -11116,8 +14701,11 @@ packages: dev: true /extglob@2.0.4: - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==, + } + engines: { node: '>=0.10.0' } dependencies: array-unique: 0.3.2 define-property: 1.0.0 @@ -11132,8 +14720,11 @@ packages: dev: false /extract-zip@2.0.1(supports-color@8.1.1): - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: '>= 10.17.0'} + resolution: + { + integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==, + } + engines: { node: '>= 10.17.0' } hasBin: true dependencies: debug: 4.3.4(supports-color@8.1.1) @@ -11146,24 +14737,39 @@ packages: dev: true /extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} + resolution: + { + integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==, + } + engines: { '0': node >=0.6.0 } dev: true /fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } /fast-diff@1.1.2: - resolution: {integrity: sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==} + resolution: + { + integrity: sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==, + } dev: false /fast-diff@1.3.0: - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + resolution: + { + integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==, + } dev: true /fast-glob@3.2.12: - resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} - engines: {node: '>=8.6.0'} + resolution: + { + integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==, + } + engines: { node: '>=8.6.0' } dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -11173,8 +14779,11 @@ packages: dev: true /fast-glob@3.2.7: - resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==, + } + engines: { node: '>=8' } dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -11183,35 +14792,56 @@ packages: micromatch: 4.0.5 /fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + resolution: + { + integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, + } /fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + resolution: + { + integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, + } /fastq@1.15.0: - resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} + resolution: + { + integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, + } dependencies: reusify: 1.0.4 /fault@1.0.4: - resolution: {integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==} + resolution: + { + integrity: sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==, + } dependencies: format: 0.2.2 dev: false /fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + resolution: + { + integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==, + } dependencies: bser: 2.1.1 /fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + resolution: + { + integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==, + } dependencies: pend: 1.2.0 dev: true /fetch-ponyfill@7.1.0: - resolution: {integrity: sha512-FhbbL55dj/qdVO3YNK7ZEkshvj3eQ7EuIGV2I6ic/2YiocvyWv+7jg2s4AyS0wdRU75s3tA8ZxI/xPigb0v5Aw==} + resolution: + { + integrity: sha512-FhbbL55dj/qdVO3YNK7ZEkshvj3eQ7EuIGV2I6ic/2YiocvyWv+7jg2s4AyS0wdRU75s3tA8ZxI/xPigb0v5Aw==, + } dependencies: node-fetch: 2.6.9 transitivePeerDependencies: @@ -11219,24 +14849,36 @@ packages: dev: false /fflate@0.7.4: - resolution: {integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==} + resolution: + { + integrity: sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw==, + } dev: true /figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==, + } + engines: { node: '>=8' } dependencies: escape-string-regexp: 1.0.5 /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + resolution: + { + integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } dependencies: flat-cache: 3.0.4 /file-loader@6.2.0(webpack@5.86.0): - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==, + } + engines: { node: '>= 10.13.0' } peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: @@ -11246,15 +14888,21 @@ packages: dev: true /file-selector@0.6.0: - resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==, + } + engines: { node: '>= 12' } dependencies: tslib: 2.6.2 dev: false /file-type@17.1.6: - resolution: {integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: readable-web-to-node-stream: 3.0.2 strtok3: 7.0.0 @@ -11262,22 +14910,34 @@ packages: dev: true /file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + resolution: + { + integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==, + } dev: true /filelist@1.0.4: - resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} + resolution: + { + integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, + } dependencies: minimatch: 5.1.6 /filename-reserved-regex@3.0.0: - resolution: {integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true /filenamify@5.1.1: - resolution: {integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==, + } + engines: { node: '>=12.20' } dependencies: filename-reserved-regex: 3.0.0 strip-outer: 2.0.0 @@ -11285,8 +14945,11 @@ packages: dev: true /fill-range@4.0.0: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==, + } + engines: { node: '>=0.10.0' } dependencies: extend-shallow: 2.0.1 is-number: 3.0.0 @@ -11295,64 +14958,97 @@ packages: dev: false /fill-range@7.0.1: - resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, + } + engines: { node: '>=8' } dependencies: to-regex-range: 5.0.1 /find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + resolution: + { + integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==, + } dev: false /find-up@2.1.0: - resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==, + } + engines: { node: '>=4' } dependencies: locate-path: 2.0.0 dev: true /find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, + } + engines: { node: '>=8' } dependencies: locate-path: 5.0.0 path-exists: 4.0.0 /find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, + } + engines: { node: '>=10' } dependencies: locate-path: 6.0.0 path-exists: 4.0.0 /find-versions@5.1.0: - resolution: {integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==, + } + engines: { node: '>=12' } dependencies: semver-regex: 4.0.5 dev: true /flat-cache@3.0.4: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} - engines: {node: ^10.12.0 || >=12.0.0} + resolution: + { + integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } dependencies: flatted: 3.2.7 rimraf: 3.0.2 /flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + resolution: + { + integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==, + } hasBin: true /flatry@1.0.14: - resolution: {integrity: sha512-6YW4uLahZdZusQNNJQfcYD+I8I89Zu7CjM39T2ZlEc6RDOEUfJY0AYmCvckuRZmPtCg5WRnLBn/+6jN3FoLmTA==} + resolution: + { + integrity: sha512-6YW4uLahZdZusQNNJQfcYD+I8I89Zu7CjM39T2ZlEc6RDOEUfJY0AYmCvckuRZmPtCg5WRnLBn/+6jN3FoLmTA==, + } dev: false /flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + resolution: + { + integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, + } /follow-redirects@1.15.2: - resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==, + } + engines: { node: '>=4.0' } peerDependencies: debug: '*' peerDependenciesMeta: @@ -11360,7 +15056,10 @@ packages: optional: true /fontkit@2.0.2: - resolution: {integrity: sha512-jc4k5Yr8iov8QfS6u8w2CnHWVmbOGtdBtOXMze5Y+QD966Rx6PEVWXSEGwXlsDlKtu1G12cJjcsybnqhSk/+LA==} + resolution: + { + integrity: sha512-jc4k5Yr8iov8QfS6u8w2CnHWVmbOGtdBtOXMze5Y+QD966Rx6PEVWXSEGwXlsDlKtu1G12cJjcsybnqhSk/+LA==, + } dependencies: '@swc/helpers': 0.4.14 brotli: 1.3.3 @@ -11374,31 +15073,46 @@ packages: dev: false /for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, + } dependencies: is-callable: 1.2.7 dev: true /for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==, + } + engines: { node: '>=0.10.0' } dev: false /foreground-child@2.0.0: - resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==, + } + engines: { node: '>=8.0.0' } dependencies: cross-spawn: 7.0.3 signal-exit: 3.0.7 dev: true /forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + resolution: + { + integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==, + } dev: true /form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} + resolution: + { + integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==, + } + engines: { node: '>= 0.12' } dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 @@ -11406,43 +15120,64 @@ packages: dev: true /form-data@3.0.1: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, + } + engines: { node: '>= 6' } dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 /form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, + } + engines: { node: '>= 6' } dependencies: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 /format@0.2.2: - resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} - engines: {node: '>=0.4.x'} + resolution: + { + integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==, + } + engines: { node: '>=0.4.x' } dev: false /fraction.js@4.2.0: - resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} + resolution: + { + integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==, + } dev: true /fragment-cache@0.2.1: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==, + } + engines: { node: '>=0.10.0' } dependencies: map-cache: 0.2.2 dev: false /fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + resolution: + { + integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==, + } /fs-extra@10.1.0: - resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==, + } + engines: { node: '>=12' } dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 @@ -11450,16 +15185,22 @@ packages: dev: false /fs-extra@11.1.1: - resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: '>=14.14'} + resolution: + { + integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==, + } + engines: { node: '>=14.14' } dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.0 /fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==, + } + engines: { node: '>=10' } dependencies: at-least-node: 1.0.0 graceful-fs: 4.2.11 @@ -11468,28 +15209,43 @@ packages: dev: true /fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==, + } + engines: { node: '>= 8' } dependencies: minipass: 3.3.6 dev: true /fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, + } /fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + resolution: + { + integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] requiresBuild: true optional: true /function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + resolution: + { + integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, + } /function.prototype.name@1.1.5: - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -11498,11 +15254,17 @@ packages: dev: true /functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, + } /gauge@3.0.2: - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==, + } + engines: { node: '>=10' } dependencies: aproba: 2.0.0 color-support: 1.1.3 @@ -11516,31 +15278,49 @@ packages: dev: true /gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, + } + engines: { node: '>=6.9.0' } /get-caller-file@2.0.5: - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} - engines: {node: 6.* || 8.* || >= 10.*} + resolution: + { + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, + } + engines: { node: 6.* || 8.* || >= 10.* } /get-func-name@2.0.0: - resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} + resolution: + { + integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==, + } dev: true /get-intrinsic@1.2.0: - resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} + resolution: + { + integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==, + } dependencies: function-bind: 1.1.1 has: 1.0.3 has-symbols: 1.0.3 /get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, + } + engines: { node: '>=8.0.0' } /get-pkg-repo@4.2.1: - resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==, + } + engines: { node: '>=6.9.0' } hasBin: true dependencies: '@hutson/parse-repository-url': 3.0.2 @@ -11550,59 +15330,89 @@ packages: dev: true /get-stream@3.0.0: - resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==, + } + engines: { node: '>=4' } dev: true /get-stream@4.1.0: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==, + } + engines: { node: '>=6' } dependencies: pump: 3.0.0 /get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, + } + engines: { node: '>=8' } dependencies: pump: 3.0.0 dev: true /get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, + } + engines: { node: '>=10' } /get-symbol-description@1.0.0: - resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.0 dev: true /get-tsconfig@4.4.0: - resolution: {integrity: sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==} + resolution: + { + integrity: sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ==, + } dev: true /get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==, + } + engines: { node: '>=0.10.0' } dev: false /getos@3.2.1: - resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} + resolution: + { + integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==, + } dependencies: async: 3.2.4 dev: true /getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + resolution: + { + integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==, + } dependencies: assert-plus: 1.0.0 dev: true /git-raw-commits@2.0.11: - resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==, + } + engines: { node: '>=10' } hasBin: true dependencies: dargs: 7.0.0 @@ -11613,16 +15423,22 @@ packages: dev: true /git-remote-origin-url@2.0.0: - resolution: {integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==, + } + engines: { node: '>=4' } dependencies: gitconfiglocal: 1.0.0 pify: 2.3.0 dev: true /git-semver-tags@4.1.1: - resolution: {integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==, + } + engines: { node: '>=10' } hasBin: true dependencies: meow: 8.1.2 @@ -11630,33 +15446,51 @@ packages: dev: true /gitconfiglocal@1.0.0: - resolution: {integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==} + resolution: + { + integrity: sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==, + } dependencies: ini: 1.3.8 dev: true /github-slugger@1.4.0: - resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==} + resolution: + { + integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==, + } dev: true /glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, + } + engines: { node: '>= 6' } dependencies: is-glob: 4.0.3 /glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, + } + engines: { node: '>=10.13.0' } dependencies: is-glob: 4.0.3 /glob-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + resolution: + { + integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, + } dev: true /glob@7.1.4: - resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} + resolution: + { + integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==, + } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -11666,7 +15500,10 @@ packages: path-is-absolute: 1.0.1 /glob@7.1.7: - resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} + resolution: + { + integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==, + } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -11677,7 +15514,10 @@ packages: dev: true /glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + resolution: + { + integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, + } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -11687,8 +15527,11 @@ packages: path-is-absolute: 1.0.1 /glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==, + } + engines: { node: '>=12' } dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -11698,42 +15541,63 @@ packages: dev: true /global-dirs@0.1.1: - resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==, + } + engines: { node: '>=4' } dependencies: ini: 1.3.8 dev: true /global-dirs@3.0.0: - resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==, + } + engines: { node: '>=10' } dependencies: ini: 2.0.0 dev: true /globals@11.12.0: - resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, + } + engines: { node: '>=4' } /globals@13.20.0: - resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==, + } + engines: { node: '>=8' } dependencies: type-fest: 0.20.2 /globalthis@1.0.3: - resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, + } + engines: { node: '>= 0.4' } dependencies: define-properties: 1.2.0 dev: true /globalyzer@0.1.0: - resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} + resolution: + { + integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==, + } /globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: { node: '>=10' } dependencies: array-union: 2.1.0 dir-glob: 3.0.1 @@ -11744,8 +15608,11 @@ packages: dev: true /globby@12.2.0: - resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: array-union: 3.0.1 dir-glob: 3.0.1 @@ -11756,8 +15623,11 @@ packages: dev: true /globby@13.1.3: - resolution: {integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: dir-glob: 3.0.1 fast-glob: 3.2.12 @@ -11767,17 +15637,26 @@ packages: dev: true /globrex@0.1.2: - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + resolution: + { + integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==, + } /gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + resolution: + { + integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, + } dependencies: get-intrinsic: 1.2.0 dev: true /got@11.8.6: - resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} - engines: {node: '>=10.19.0'} + resolution: + { + integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==, + } + engines: { node: '>=10.19.0' } dependencies: '@sindresorhus/is': 4.6.0 '@szmarczak/http-timer': 4.0.6 @@ -11793,8 +15672,11 @@ packages: dev: true /got@9.6.0: - resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==, + } + engines: { node: '>=8.6' } dependencies: '@sindresorhus/is': 0.14.0 '@szmarczak/http-timer': 1.1.2 @@ -11812,21 +15694,36 @@ packages: dev: true /graceful-fs@4.2.10: - resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + resolution: + { + integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==, + } /graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + resolution: + { + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, + } /grapheme-splitter@1.0.4: - resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} + resolution: + { + integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, + } dev: true /graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + resolution: + { + integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, + } /handlebars@4.7.7: - resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} - engines: {node: '>=0.4.7'} + resolution: + { + integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==, + } + engines: { node: '>=0.4.7' } hasBin: true dependencies: minimist: 1.2.8 @@ -11838,52 +15735,85 @@ packages: dev: true /hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, + } + engines: { node: '>=6' } dev: true /harmony-reflect@1.6.2: - resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + resolution: + { + integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==, + } /has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + resolution: + { + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, + } dev: true /has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } + engines: { node: '>=4' } /has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, + } + engines: { node: '>=8' } /has-property-descriptors@1.0.0: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + resolution: + { + integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, + } dependencies: get-intrinsic: 1.2.0 /has-proto@1.0.1: - resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, + } + engines: { node: '>= 0.4' } dev: true /has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, + } + engines: { node: '>= 0.4' } /has-tostringtag@1.0.0: - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, + } + engines: { node: '>= 0.4' } dependencies: has-symbols: 1.0.3 /has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + resolution: + { + integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==, + } dev: true /has-value@0.3.1: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==, + } + engines: { node: '>=0.10.0' } dependencies: get-value: 2.0.6 has-values: 0.1.4 @@ -11891,8 +15821,11 @@ packages: dev: false /has-value@1.0.0: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==, + } + engines: { node: '>=0.10.0' } dependencies: get-value: 2.0.6 has-values: 1.0.0 @@ -11900,37 +15833,55 @@ packages: dev: false /has-values@0.1.4: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==, + } + engines: { node: '>=0.10.0' } dev: false /has-values@1.0.0: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==, + } + engines: { node: '>=0.10.0' } dependencies: is-number: 3.0.0 kind-of: 4.0.0 dev: false /has-yarn@2.1.0: - resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==, + } + engines: { node: '>=8' } dev: true /has@1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, + } + engines: { node: '>= 0.4.0' } dependencies: function-bind: 1.1.1 /hast-util-embedded@2.0.0: - resolution: {integrity: sha512-vEr54rDu2CheBM4nLkWbW8Rycf8HhkA/KsrDnlyKnvBTyhyO+vAG6twHnfUbiRGo56YeUBNCI4HFfHg3Wu+tig==} + resolution: + { + integrity: sha512-vEr54rDu2CheBM4nLkWbW8Rycf8HhkA/KsrDnlyKnvBTyhyO+vAG6twHnfUbiRGo56YeUBNCI4HFfHg3Wu+tig==, + } dependencies: hast-util-is-element: 2.1.2 dev: false /hast-util-from-html@1.0.2: - resolution: {integrity: sha512-LhrTA2gfCbLOGJq2u/asp4kwuG0y6NhWTXiPKP+n0qNukKy7hc10whqqCFfyvIA1Q5U5d0sp9HhNim9gglEH4A==} + resolution: + { + integrity: sha512-LhrTA2gfCbLOGJq2u/asp4kwuG0y6NhWTXiPKP+n0qNukKy7hc10whqqCFfyvIA1Q5U5d0sp9HhNim9gglEH4A==, + } dependencies: '@types/hast': 2.3.4 hast-util-from-parse5: 7.1.2 @@ -11940,7 +15891,10 @@ packages: dev: false /hast-util-from-parse5@7.1.0: - resolution: {integrity: sha512-m8yhANIAccpU4K6+121KpPP55sSl9/samzQSQGpb0mTExcNh2WlvjtMwSWFhg6uqD4Rr6Nfa8N6TMypQM51rzQ==} + resolution: + { + integrity: sha512-m8yhANIAccpU4K6+121KpPP55sSl9/samzQSQGpb0mTExcNh2WlvjtMwSWFhg6uqD4Rr6Nfa8N6TMypQM51rzQ==, + } dependencies: '@types/hast': 2.3.4 '@types/parse5': 6.0.3 @@ -11953,7 +15907,10 @@ packages: dev: false /hast-util-from-parse5@7.1.2: - resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} + resolution: + { + integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==, + } dependencies: '@types/hast': 2.3.4 '@types/unist': 2.0.6 @@ -11965,11 +15922,17 @@ packages: dev: false /hast-util-has-property@2.0.0: - resolution: {integrity: sha512-4Qf++8o5v14us4Muv3HRj+Er6wTNGA/N9uCaZMty4JWvyFKLdhULrv4KE1b65AthsSO9TXSZnjuxS8ecIyhb0w==} + resolution: + { + integrity: sha512-4Qf++8o5v14us4Muv3HRj+Er6wTNGA/N9uCaZMty4JWvyFKLdhULrv4KE1b65AthsSO9TXSZnjuxS8ecIyhb0w==, + } dev: false /hast-util-is-body-ok-link@2.0.0: - resolution: {integrity: sha512-S58hCexyKdD31vMsErvgLfflW6vYWo/ixRLPJTtkOvLld24vyI8vmYmkgLA5LG3la2ME7nm7dLGdm48gfLRBfw==} + resolution: + { + integrity: sha512-S58hCexyKdD31vMsErvgLfflW6vYWo/ixRLPJTtkOvLld24vyI8vmYmkgLA5LG3la2ME7nm7dLGdm48gfLRBfw==, + } dependencies: '@types/hast': 2.3.4 hast-util-has-property: 2.0.0 @@ -11977,31 +15940,46 @@ packages: dev: false /hast-util-is-element@2.1.2: - resolution: {integrity: sha512-thjnlGAnwP8ef/GSO1Q8BfVk2gundnc2peGQqEg2kUt/IqesiGg/5mSwN2fE7nLzy61pg88NG6xV+UrGOrx9EA==} + resolution: + { + integrity: sha512-thjnlGAnwP8ef/GSO1Q8BfVk2gundnc2peGQqEg2kUt/IqesiGg/5mSwN2fE7nLzy61pg88NG6xV+UrGOrx9EA==, + } dependencies: '@types/hast': 2.3.4 '@types/unist': 2.0.6 dev: false /hast-util-is-element@2.1.3: - resolution: {integrity: sha512-O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA==} + resolution: + { + integrity: sha512-O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA==, + } dependencies: '@types/hast': 2.3.4 '@types/unist': 2.0.6 dev: false /hast-util-parse-selector@2.2.5: - resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==} + resolution: + { + integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==, + } dev: false /hast-util-parse-selector@3.1.1: - resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} + resolution: + { + integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==, + } dependencies: '@types/hast': 2.3.4 dev: false /hast-util-phrasing@2.0.2: - resolution: {integrity: sha512-yGkCfPkkfCyiLfK6KEl/orMDr/zgCnq/NaO9HfULx6/Zga5fso5eqQA5Ov/JZVqACygvw9shRYWgXNcG2ilo7w==} + resolution: + { + integrity: sha512-yGkCfPkkfCyiLfK6KEl/orMDr/zgCnq/NaO9HfULx6/Zga5fso5eqQA5Ov/JZVqACygvw9shRYWgXNcG2ilo7w==, + } dependencies: '@types/hast': 2.3.4 hast-util-embedded: 2.0.0 @@ -12011,7 +15989,10 @@ packages: dev: false /hast-util-raw@7.2.3: - resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} + resolution: + { + integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==, + } dependencies: '@types/hast': 2.3.4 '@types/parse5': 6.0.3 @@ -12027,7 +16008,10 @@ packages: dev: false /hast-util-to-html@8.0.4: - resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} + resolution: + { + integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==, + } dependencies: '@types/hast': 2.3.4 '@types/unist': 2.0.6 @@ -12043,7 +16027,10 @@ packages: dev: false /hast-util-to-mdast@8.4.1: - resolution: {integrity: sha512-tfmBLASuCgyhCzpkTXM5kU8xeuS5jkMZ17BYm2YftGT5wvgc7uHXTZ/X8WfNd6F5NV/IGmrLsuahZ+jXQir4zQ==} + resolution: + { + integrity: sha512-tfmBLASuCgyhCzpkTXM5kU8xeuS5jkMZ17BYm2YftGT5wvgc7uHXTZ/X8WfNd6F5NV/IGmrLsuahZ+jXQir4zQ==, + } dependencies: '@types/extend': 3.0.1 '@types/hast': 2.3.4 @@ -12063,7 +16050,10 @@ packages: dev: false /hast-util-to-mdast@9.0.0: - resolution: {integrity: sha512-7Pl4mWA3JCSHx0s3A1CgJaFirkISDUJsu+DeJd/cHUAlVDgs1sITzg9HZAidSf9LUE7kl8Hf2ZJr1HZTfhV/Yw==} + resolution: + { + integrity: sha512-7Pl4mWA3JCSHx0s3A1CgJaFirkISDUJsu+DeJd/cHUAlVDgs1sITzg9HZAidSf9LUE7kl8Hf2ZJr1HZTfhV/Yw==, + } dependencies: '@types/extend': 3.0.1 '@types/hast': 2.3.4 @@ -12083,7 +16073,10 @@ packages: dev: false /hast-util-to-parse5@7.1.0: - resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} + resolution: + { + integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==, + } dependencies: '@types/hast': 2.3.4 comma-separated-tokens: 2.0.2 @@ -12094,7 +16087,10 @@ packages: dev: false /hast-util-to-text@3.1.2: - resolution: {integrity: sha512-tcllLfp23dJJ+ju5wCCZHVpzsQQ43+moJbqVX3jNWPB7z/KFC4FyZD6R7y94cHL6MQ33YtMZL8Z0aIXXI4XFTw==} + resolution: + { + integrity: sha512-tcllLfp23dJJ+ju5wCCZHVpzsQQ43+moJbqVX3jNWPB7z/KFC4FyZD6R7y94cHL6MQ33YtMZL8Z0aIXXI4XFTw==, + } dependencies: '@types/hast': 2.3.4 '@types/unist': 2.0.6 @@ -12103,11 +16099,17 @@ packages: dev: false /hast-util-whitespace@2.0.1: - resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} + resolution: + { + integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==, + } dev: false /hastscript@6.0.0: - resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} + resolution: + { + integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==, + } dependencies: '@types/hast': 2.3.4 comma-separated-tokens: 1.0.8 @@ -12117,7 +16119,10 @@ packages: dev: false /hastscript@7.2.0: - resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} + resolution: + { + integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==, + } dependencies: '@types/hast': 2.3.4 comma-separated-tokens: 2.0.2 @@ -12127,62 +16132,98 @@ packages: dev: false /he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + resolution: + { + integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, + } hasBin: true dev: true /highlight.js@10.7.3: - resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} + resolution: + { + integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==, + } dev: false /hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + resolution: + { + integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==, + } dependencies: react-is: 16.13.1 dev: false /hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + resolution: + { + integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, + } dev: true /hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==, + } + engines: { node: '>=10' } dependencies: lru-cache: 6.0.0 dev: true /hsl-to-hex@1.0.0: - resolution: {integrity: sha512-K6GVpucS5wFf44X0h2bLVRDsycgJmf9FF2elg+CrqD8GcFU8c6vYhgXn8NjUkFCwj+xDFb70qgLbTUm6sxwPmA==} + resolution: + { + integrity: sha512-K6GVpucS5wFf44X0h2bLVRDsycgJmf9FF2elg+CrqD8GcFU8c6vYhgXn8NjUkFCwj+xDFb70qgLbTUm6sxwPmA==, + } dependencies: hsl-to-rgb-for-reals: 1.1.1 dev: false /hsl-to-rgb-for-reals@1.1.1: - resolution: {integrity: sha512-LgOWAkrN0rFaQpfdWBQlv/VhkOxb5AsBjk6NQVx4yEzWS923T07X0M1Y0VNko2H52HeSpZrZNNMJ0aFqsdVzQg==} + resolution: + { + integrity: sha512-LgOWAkrN0rFaQpfdWBQlv/VhkOxb5AsBjk6NQVx4yEzWS923T07X0M1Y0VNko2H52HeSpZrZNNMJ0aFqsdVzQg==, + } dev: false /html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==, + } + engines: { node: '>=12' } dependencies: whatwg-encoding: 2.0.0 dev: true /html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + resolution: + { + integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, + } /html-void-elements@2.0.1: - resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} + resolution: + { + integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==, + } dev: false /http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + resolution: + { + integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==, + } dev: true /http-errors@2.0.0: - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, + } + engines: { node: '>= 0.8' } dependencies: depd: 2.0.0 inherits: 2.0.4 @@ -12192,8 +16233,11 @@ packages: dev: true /http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==, + } + engines: { node: '>= 6' } dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 @@ -12203,8 +16247,11 @@ packages: dev: true /http-proxy@1.18.1: - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==, + } + engines: { node: '>=8.0.0' } dependencies: eventemitter3: 4.0.7 follow-redirects: 1.15.2 @@ -12214,8 +16261,11 @@ packages: dev: true /http-server@14.1.1: - resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==, + } + engines: { node: '>=12' } hasBin: true dependencies: basic-auth: 2.0.1 @@ -12237,8 +16287,11 @@ packages: dev: true /http-signature@1.3.6: - resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==, + } + engines: { node: '>=0.10' } dependencies: assert-plus: 1.0.0 jsprim: 2.0.2 @@ -12246,21 +16299,30 @@ packages: dev: true /http-status@1.5.2: - resolution: {integrity: sha512-HzxX+/hV/8US1Gq4V6R6PgUmJ5Pt/DGATs4QhdEOpG8LrdS9/3UG2nnOvkqUpRks04yjVtV5p/NODjO+wvf6vg==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-HzxX+/hV/8US1Gq4V6R6PgUmJ5Pt/DGATs4QhdEOpG8LrdS9/3UG2nnOvkqUpRks04yjVtV5p/NODjO+wvf6vg==, + } + engines: { node: '>= 0.4.0' } dev: true /http2-wrapper@1.0.3: - resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} - engines: {node: '>=10.19.0'} + resolution: + { + integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==, + } + engines: { node: '>=10.19.0' } dependencies: quick-lru: 5.1.1 resolve-alpn: 1.2.1 dev: true /https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, + } + engines: { node: '>= 6' } dependencies: agent-base: 6.0.2 debug: 4.3.4(supports-color@8.1.1) @@ -12269,72 +16331,111 @@ packages: dev: true /human-signals@1.1.1: - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} - engines: {node: '>=8.12.0'} + resolution: + { + integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==, + } + engines: { node: '>=8.12.0' } dev: true /human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} + resolution: + { + integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, + } + engines: { node: '>=10.17.0' } dev: true /human-signals@3.0.1: - resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} - engines: {node: '>=12.20.0'} + resolution: + { + integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==, + } + engines: { node: '>=12.20.0' } dev: false /husky@8.0.3: - resolution: {integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==, + } + engines: { node: '>=14' } hasBin: true dev: true /hyphen@1.6.4: - resolution: {integrity: sha512-nWwvXceFMAFIjkiRzqZMZSOa1LVngieSolnYIVKWSwmDwMSmdutjzqImmdbxe2eUCfX693fgrCgtPjbllqx1lA==} + resolution: + { + integrity: sha512-nWwvXceFMAFIjkiRzqZMZSOa1LVngieSolnYIVKWSwmDwMSmdutjzqImmdbxe2eUCfX693fgrCgtPjbllqx1lA==, + } dev: false /iconv-lite@0.4.24: - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, + } + engines: { node: '>=0.10.0' } dependencies: safer-buffer: 2.1.2 dev: true /iconv-lite@0.6.3: - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==, + } + engines: { node: '>=0.10.0' } dependencies: safer-buffer: 2.1.2 dev: true /identity-obj-proxy@3.0.0: - resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==, + } + engines: { node: '>=4' } dependencies: harmony-reflect: 1.6.2 /ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, + } /ignore@5.2.4: - resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, + } + engines: { node: '>= 4' } /import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, + } + engines: { node: '>=6' } dependencies: parent-module: 1.0.1 resolve-from: 4.0.0 /import-lazy@2.1.0: - resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==, + } + engines: { node: '>=4' } dev: true /import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, + } + engines: { node: '>=8' } hasBin: true dependencies: pkg-dir: 4.2.0 @@ -12342,45 +16443,72 @@ packages: dev: true /import-meta-resolve@1.1.1: - resolution: {integrity: sha512-JiTuIvVyPaUg11eTrNDx5bgQ/yMKMZffc7YSjvQeSMXy58DO2SQ8BtAf3xteZvmzvjYh14wnqNjL8XVeDy2o9A==} + resolution: + { + integrity: sha512-JiTuIvVyPaUg11eTrNDx5bgQ/yMKMZffc7YSjvQeSMXy58DO2SQ8BtAf3xteZvmzvjYh14wnqNjL8XVeDy2o9A==, + } dependencies: builtins: 4.1.0 dev: true /import-meta-resolve@2.2.1: - resolution: {integrity: sha512-C6lLL7EJPY44kBvA80gq4uMsVFw5x3oSKfuMl1cuZ2RkI5+UJqQXgn+6hlUew0y4ig7Ypt4CObAAIzU53Nfpuw==} + resolution: + { + integrity: sha512-C6lLL7EJPY44kBvA80gq4uMsVFw5x3oSKfuMl1cuZ2RkI5+UJqQXgn+6hlUew0y4ig7Ypt4CObAAIzU53Nfpuw==, + } dev: false /imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: { node: '>=0.8.19' } /indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, + } + engines: { node: '>=8' } dev: true /inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, + } dependencies: once: 1.4.0 wrappy: 1.0.2 /inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } /ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + resolution: + { + integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, + } dev: true /ini@2.0.0: - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==, + } + engines: { node: '>=10' } dev: true /inquirer@8.2.5: - resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==, + } + engines: { node: '>=12.0.0' } dependencies: ansi-escapes: 4.3.2 chalk: 4.1.2 @@ -12400,8 +16528,11 @@ packages: dev: true /internal-slot@1.0.5: - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==, + } + engines: { node: '>= 0.4' } dependencies: get-intrinsic: 1.2.0 has: 1.0.3 @@ -12409,39 +16540,57 @@ packages: dev: true /is-accessor-descriptor@0.1.6: - resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==, + } + engines: { node: '>=0.10.0' } dependencies: kind-of: 3.2.2 dev: false /is-accessor-descriptor@1.0.0: - resolution: {integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==, + } + engines: { node: '>=0.10.0' } dependencies: kind-of: 6.0.3 dev: false /is-alphabetical@1.0.4: - resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + resolution: + { + integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==, + } dev: false /is-alphanumerical@1.0.4: - resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + resolution: + { + integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==, + } dependencies: is-alphabetical: 1.0.4 is-decimal: 1.0.4 dev: false /is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 /is-array-buffer@3.0.2: - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} + resolution: + { + integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, + } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.0 @@ -12449,104 +16598,158 @@ packages: dev: true /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, + } /is-arrayish@0.3.2: - resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + resolution: + { + integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==, + } dev: false /is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + resolution: + { + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, + } dependencies: has-bigints: 1.0.2 dev: true /is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, + } + engines: { node: '>=8' } dependencies: binary-extensions: 2.2.0 /is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 dev: true /is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + resolution: + { + integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, + } dev: false /is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==, + } + engines: { node: '>=4' } /is-builtin-module@3.2.0: - resolution: {integrity: sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==, + } + engines: { node: '>=6' } dependencies: builtin-modules: 3.3.0 dev: true /is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==, + } + engines: { node: '>=6' } dependencies: builtin-modules: 3.3.0 dev: true /is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, + } + engines: { node: '>= 0.4' } dev: true /is-ci@2.0.0: - resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} + resolution: + { + integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==, + } hasBin: true dependencies: ci-info: 2.0.0 /is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + resolution: + { + integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, + } hasBin: true dependencies: ci-info: 3.8.0 dev: true /is-core-module@2.11.0: - resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==} + resolution: + { + integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==, + } dependencies: has: 1.0.3 /is-data-descriptor@0.1.4: - resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==, + } + engines: { node: '>=0.10.0' } dependencies: kind-of: 3.2.2 dev: false /is-data-descriptor@1.0.0: - resolution: {integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==, + } + engines: { node: '>=0.10.0' } dependencies: kind-of: 6.0.3 dev: false /is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, + } + engines: { node: '>= 0.4' } dependencies: has-tostringtag: 1.0.0 /is-decimal@1.0.4: - resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + resolution: + { + integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==, + } dev: false /is-descriptor@0.1.6: - resolution: {integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==, + } + engines: { node: '>=0.10.0' } dependencies: is-accessor-descriptor: 0.1.6 is-data-descriptor: 0.1.4 @@ -12554,8 +16757,11 @@ packages: dev: false /is-descriptor@1.0.2: - resolution: {integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==, + } + engines: { node: '>=0.10.0' } dependencies: is-accessor-descriptor: 1.0.0 is-data-descriptor: 1.0.0 @@ -12563,187 +16769,292 @@ packages: dev: false /is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==, + } + engines: { node: '>=8' } hasBin: true /is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==, + } + engines: { node: '>=0.10.0' } dev: false /is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==, + } + engines: { node: '>=0.10.0' } dependencies: is-plain-object: 2.0.4 dev: false /is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, + } + engines: { node: '>=0.10.0' } /is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, + } + engines: { node: '>=8' } /is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, + } + engines: { node: '>=6' } /is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, + } + engines: { node: '>=0.10.0' } dependencies: is-extglob: 2.1.1 /is-hexadecimal@1.0.4: - resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + resolution: + { + integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==, + } dev: false /is-installed-globally@0.4.0: - resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==, + } + engines: { node: '>=10' } dependencies: global-dirs: 3.0.0 is-path-inside: 3.0.3 dev: true /is-interactive@1.0.0: - resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==, + } + engines: { node: '>=8' } dev: true /is-map@2.0.2: - resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} + resolution: + { + integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==, + } dev: true /is-module@1.0.0: - resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} + resolution: + { + integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==, + } dev: true /is-negative-zero@2.0.2: - resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, + } + engines: { node: '>= 0.4' } dev: true /is-npm@5.0.0: - resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==, + } + engines: { node: '>=10' } dev: true /is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, + } + engines: { node: '>= 0.4' } dependencies: has-tostringtag: 1.0.0 dev: true /is-number@3.0.0: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==, + } + engines: { node: '>=0.10.0' } dependencies: kind-of: 3.2.2 dev: false /is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, + } + engines: { node: '>=0.12.0' } /is-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==, + } + engines: { node: '>=8' } dev: true /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, + } + engines: { node: '>=8' } /is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, + } + engines: { node: '>=0.10.0' } dev: true /is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==, + } + engines: { node: '>=8' } dev: false /is-plain-obj@4.1.0: - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==, + } + engines: { node: '>=12' } /is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==, + } + engines: { node: '>=0.10.0' } dependencies: isobject: 3.0.1 /is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + resolution: + { + integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==, + } dev: true /is-reference@1.2.1: - resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + resolution: + { + integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==, + } dependencies: '@types/estree': 1.0.1 dev: true /is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 has-tostringtag: 1.0.0 /is-set@2.0.2: - resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} + resolution: + { + integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==, + } dev: true /is-shared-array-buffer@1.0.2: - resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + resolution: + { + integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, + } dependencies: call-bind: 1.0.2 dev: true /is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==, + } + engines: { node: '>=0.10.0' } /is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, + } + engines: { node: '>=8' } dev: true /is-stream@3.0.0: - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: false /is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, + } + engines: { node: '>= 0.4' } dependencies: has-tostringtag: 1.0.0 dev: true /is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, + } + engines: { node: '>= 0.4' } dependencies: has-symbols: 1.0.3 dev: true /is-text-path@1.0.1: - resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==, + } + engines: { node: '>=0.10.0' } dependencies: text-extensions: 1.9.0 dev: true /is-typed-array@1.1.10: - resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==, + } + engines: { node: '>= 0.4' } dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 @@ -12753,85 +17064,139 @@ packages: dev: true /is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + resolution: + { + integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, + } /is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, + } + engines: { node: '>=10' } dev: true /is-url@1.2.4: - resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==} + resolution: + { + integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==, + } dev: false /is-utf8@0.2.1: - resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + resolution: + { + integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==, + } dev: false /is-weakmap@2.0.1: - resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} + resolution: + { + integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==, + } dev: true /is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, + } dependencies: call-bind: 1.0.2 dev: true /is-weakset@2.0.2: - resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} + resolution: + { + integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==, + } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.0 dev: true /is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, + } + engines: { node: '>=0.10.0' } dev: false /is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, + } + engines: { node: '>=8' } dependencies: is-docker: 2.2.1 /is-yarn-global@0.3.0: - resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} + resolution: + { + integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==, + } dev: true /isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + resolution: + { + integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, + } /isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, + } dev: true /isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } /isobject@2.1.0: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==, + } + engines: { node: '>=0.10.0' } dependencies: isarray: 1.0.0 dev: false /isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==, + } + engines: { node: '>=0.10.0' } /isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + resolution: + { + integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==, + } dev: true /istanbul-lib-coverage@3.2.0: - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==, + } + engines: { node: '>=8' } /istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==, + } + engines: { node: '>=8' } dependencies: '@babel/core': 7.22.20 '@babel/parser': 7.21.2 @@ -12842,16 +17207,22 @@ packages: - supports-color /istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==, + } + engines: { node: '>=8' } dependencies: istanbul-lib-coverage: 3.2.0 make-dir: 3.1.0 supports-color: 7.2.0 /istanbul-lib-source-maps@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, + } + engines: { node: '>=10' } dependencies: debug: 4.3.4(supports-color@8.1.1) istanbul-lib-coverage: 3.2.0 @@ -12860,15 +17231,21 @@ packages: - supports-color /istanbul-reports@3.1.5: - resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==, + } + engines: { node: '>=8' } dependencies: html-escaper: 2.0.2 istanbul-lib-report: 3.0.0 /jake@10.8.5: - resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==, + } + engines: { node: '>=10' } hasBin: true dependencies: async: 3.2.4 @@ -12877,16 +17254,22 @@ packages: minimatch: 3.1.2 /jest-changed-files@29.4.3: - resolution: {integrity: sha512-Vn5cLuWuwmi2GNNbokPOEcvrXGSGrqVnPEZV7rC6P7ck07Dyw9RFnvWglnupSh+hGys0ajGtw/bc2ZgweljQoQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-Vn5cLuWuwmi2GNNbokPOEcvrXGSGrqVnPEZV7rC6P7ck07Dyw9RFnvWglnupSh+hGys0ajGtw/bc2ZgweljQoQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: execa: 5.1.1 p-limit: 3.1.0 dev: true /jest-circus@29.4.3: - resolution: {integrity: sha512-Vw/bVvcexmdJ7MLmgdT3ZjkJ3LKu8IlpefYokxiqoZy6OCQ2VAm6Vk3t/qHiAGUXbdbJKJWnc8gH3ypTbB/OBw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-Vw/bVvcexmdJ7MLmgdT3ZjkJ3LKu8IlpefYokxiqoZy6OCQ2VAm6Vk3t/qHiAGUXbdbJKJWnc8gH3ypTbB/OBw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/environment': 29.4.3 '@jest/expect': 29.4.3 @@ -12911,8 +17294,11 @@ packages: - supports-color /jest-cli@29.4.3(@types/node@18.15.11)(ts-node@10.9.1): - resolution: {integrity: sha512-PiiAPuFNfWWolCE6t3ZrDXQc6OsAuM3/tVW0u27UWc1KE+n/HSn5dSE6B2juqN7WP+PP0jAcnKtGmI4u8GMYCg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-PiiAPuFNfWWolCE6t3ZrDXQc6OsAuM3/tVW0u27UWc1KE+n/HSn5dSE6B2juqN7WP+PP0jAcnKtGmI4u8GMYCg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -12939,8 +17325,11 @@ packages: dev: true /jest-config@29.4.3(@types/node@18.15.11)(ts-node@10.9.1): - resolution: {integrity: sha512-eCIpqhGnIjdUCXGtLhz4gdDoxKSWXKjzNcc5r+0S1GKOp2fwOipx5mRcwa9GB/ArsxJ1jlj2lmlD9bZAsBxaWQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-eCIpqhGnIjdUCXGtLhz4gdDoxKSWXKjzNcc5r+0S1GKOp2fwOipx5mRcwa9GB/ArsxJ1jlj2lmlD9bZAsBxaWQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: '@types/node': '*' ts-node: '>=9.0.0' @@ -12978,8 +17367,11 @@ packages: - supports-color /jest-diff@29.5.0: - resolution: {integrity: sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-LtxijLLZBduXnHSniy0WMdaHjmQnt3g5sa16W4p0HqukYTTsyTW3GD1q41TyGl5YFXj/5B2U6dlh5FM1LIMgxw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 diff-sequences: 29.4.3 @@ -12987,14 +17379,20 @@ packages: pretty-format: 29.5.0 /jest-docblock@29.4.3: - resolution: {integrity: sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: detect-newline: 3.1.0 /jest-each@29.4.3: - resolution: {integrity: sha512-1ElHNAnKcbJb/b+L+7j0/w7bDvljw4gTv1wL9fYOczeJrbTbkMGQ5iQPFJ3eFQH19VPTx1IyfePdqSpePKss7Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-1ElHNAnKcbJb/b+L+7j0/w7bDvljw4gTv1wL9fYOczeJrbTbkMGQ5iQPFJ3eFQH19VPTx1IyfePdqSpePKss7Q==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.5.0 chalk: 4.1.2 @@ -13003,8 +17401,11 @@ packages: pretty-format: 29.5.0 /jest-environment-jsdom@29.4.3: - resolution: {integrity: sha512-rFjf8JXrw3OjUzzmSE5l0XjMj0/MSVEUMCSXBGPDkfwb1T03HZI7iJSL0cGctZApPSyJxbjyKDVxkZuyhHkuTw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-rFjf8JXrw3OjUzzmSE5l0XjMj0/MSVEUMCSXBGPDkfwb1T03HZI7iJSL0cGctZApPSyJxbjyKDVxkZuyhHkuTw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -13026,8 +17427,11 @@ packages: dev: true /jest-environment-node@29.4.3: - resolution: {integrity: sha512-gAiEnSKF104fsGDXNkwk49jD/0N0Bqu2K9+aMQXA6avzsA9H3Fiv1PW2D+gzbOSR705bWd2wJZRFEFpV0tXISg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-gAiEnSKF104fsGDXNkwk49jD/0N0Bqu2K9+aMQXA6avzsA9H3Fiv1PW2D+gzbOSR705bWd2wJZRFEFpV0tXISg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/environment': 29.4.3 '@jest/fake-timers': 29.4.3 @@ -13037,7 +17441,10 @@ packages: jest-util: 29.5.0 /jest-esm-transformer@1.0.0: - resolution: {integrity: sha512-FoPgeMMwy1/CEsc8tBI41i83CEO3x85RJuZi5iAMmWoARXhfgk6Jd7y+4d+z+HCkTKNVDvSWKGRhwjzU9PUbrw==} + resolution: + { + integrity: sha512-FoPgeMMwy1/CEsc8tBI41i83CEO3x85RJuZi5iAMmWoARXhfgk6Jd7y+4d+z+HCkTKNVDvSWKGRhwjzU9PUbrw==, + } dependencies: '@babel/core': 7.20.5 '@babel/plugin-transform-modules-commonjs': 7.19.6(@babel/core@7.20.5) @@ -13046,12 +17453,18 @@ packages: dev: true /jest-get-type@29.4.3: - resolution: {integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } /jest-haste-map@26.6.2: - resolution: {integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==, + } + engines: { node: '>= 10.14.2' } dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.6 @@ -13073,8 +17486,11 @@ packages: dev: false /jest-haste-map@29.4.3: - resolution: {integrity: sha512-eZIgAS8tvm5IZMtKlR8Y+feEOMfo2pSQkmNbufdbMzMSn9nitgGxF1waM/+LbryO3OkMcKS98SUb+j/cQxp/vQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-eZIgAS8tvm5IZMtKlR8Y+feEOMfo2pSQkmNbufdbMzMSn9nitgGxF1waM/+LbryO3OkMcKS98SUb+j/cQxp/vQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.4.3 '@types/graceful-fs': 4.1.6 @@ -13091,15 +17507,21 @@ packages: fsevents: 2.3.2 /jest-leak-detector@29.4.3: - resolution: {integrity: sha512-9yw4VC1v2NspMMeV3daQ1yXPNxMgCzwq9BocCwYrRgXe4uaEJPAN0ZK37nFBhcy3cUwEVstFecFLaTHpF7NiGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-9yw4VC1v2NspMMeV3daQ1yXPNxMgCzwq9BocCwYrRgXe4uaEJPAN0ZK37nFBhcy3cUwEVstFecFLaTHpF7NiGA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: jest-get-type: 29.4.3 pretty-format: 29.5.0 /jest-matcher-utils@29.5.0: - resolution: {integrity: sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-lecRtgm/rjIK0CQ7LPQwzCs2VwW6WAahA55YBuI+xqmhm7LAaxokSB8C97yJeYyT+HvQkH741StzpU41wohhWw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 jest-diff: 29.5.0 @@ -13107,8 +17529,11 @@ packages: pretty-format: 29.5.0 /jest-message-util@29.4.3: - resolution: {integrity: sha512-1Y8Zd4ZCN7o/QnWdMmT76If8LuDv23Z1DRovBj/vcSFNlGCJGoO8D1nJDw1AdyAGUk0myDLFGN5RbNeJyCRGCw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-1Y8Zd4ZCN7o/QnWdMmT76If8LuDv23Z1DRovBj/vcSFNlGCJGoO8D1nJDw1AdyAGUk0myDLFGN5RbNeJyCRGCw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@babel/code-frame': 7.18.6 '@jest/types': 29.5.0 @@ -13121,8 +17546,11 @@ packages: stack-utils: 2.0.6 /jest-message-util@29.5.0: - resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@babel/code-frame': 7.18.6 '@jest/types': 29.5.0 @@ -13135,16 +17563,22 @@ packages: stack-utils: 2.0.6 /jest-mock@29.4.3: - resolution: {integrity: sha512-LjFgMg+xed9BdkPMyIJh+r3KeHt1klXPJYBULXVVAkbTaaKjPX1o1uVCAZADMEp/kOxGTwy/Ot8XbvgItOrHEg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-LjFgMg+xed9BdkPMyIJh+r3KeHt1klXPJYBULXVVAkbTaaKjPX1o1uVCAZADMEp/kOxGTwy/Ot8XbvgItOrHEg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.4.3 '@types/node': 18.15.11 jest-util: 29.5.0 /jest-pnp-resolver@1.2.3(jest-resolve@29.4.3): - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==, + } + engines: { node: '>=6' } peerDependencies: jest-resolve: '*' peerDependenciesMeta: @@ -13154,17 +17588,26 @@ packages: jest-resolve: 29.4.3 /jest-regex-util@26.0.0: - resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==, + } + engines: { node: '>= 10.14.2' } dev: false /jest-regex-util@29.4.3: - resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } /jest-resolve-dependencies@29.4.3: - resolution: {integrity: sha512-uvKMZAQ3nmXLH7O8WAOhS5l0iWyT3WmnJBdmIHiV5tBbdaDZ1wqtNX04FONGoaFvSOSHBJxnwAVnSn1WHdGVaw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-uvKMZAQ3nmXLH7O8WAOhS5l0iWyT3WmnJBdmIHiV5tBbdaDZ1wqtNX04FONGoaFvSOSHBJxnwAVnSn1WHdGVaw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: jest-regex-util: 29.4.3 jest-snapshot: 29.4.3 @@ -13173,8 +17616,11 @@ packages: dev: true /jest-resolve@29.4.3: - resolution: {integrity: sha512-GPokE1tzguRyT7dkxBim4wSx6E45S3bOQ7ZdKEG+Qj0Oac9+6AwJPCk0TZh5Vu0xzeX4afpb+eDmgbmZFFwpOw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-GPokE1tzguRyT7dkxBim4wSx6E45S3bOQ7ZdKEG+Qj0Oac9+6AwJPCk0TZh5Vu0xzeX4afpb+eDmgbmZFFwpOw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 @@ -13187,8 +17633,11 @@ packages: slash: 3.0.0 /jest-runner@29.4.3: - resolution: {integrity: sha512-GWPTEiGmtHZv1KKeWlTX9SIFuK19uLXlRQU43ceOQ2hIfA5yPEJC7AMkvFKpdCHx6pNEdOD+2+8zbniEi3v3gA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-GWPTEiGmtHZv1KKeWlTX9SIFuK19uLXlRQU43ceOQ2hIfA5yPEJC7AMkvFKpdCHx6pNEdOD+2+8zbniEi3v3gA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/console': 29.4.3 '@jest/environment': 29.4.3 @@ -13215,8 +17664,11 @@ packages: - supports-color /jest-runtime@29.4.3: - resolution: {integrity: sha512-F5bHvxSH+LvLV24vVB3L8K467dt3y3dio6V3W89dUz9nzvTpqd/HcT9zfYKL2aZPvD63vQFgLvaUX/UpUhrP6Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-F5bHvxSH+LvLV24vVB3L8K467dt3y3dio6V3W89dUz9nzvTpqd/HcT9zfYKL2aZPvD63vQFgLvaUX/UpUhrP6Q==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/environment': 29.4.3 '@jest/fake-timers': 29.4.3 @@ -13244,16 +17696,22 @@ packages: - supports-color /jest-serializer@26.6.2: - resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==, + } + engines: { node: '>= 10.14.2' } dependencies: '@types/node': 18.15.11 graceful-fs: 4.2.11 dev: false /jest-snapshot@29.4.3: - resolution: {integrity: sha512-NGlsqL0jLPDW91dz304QTM/SNO99lpcSYYAjNiX0Ou+sSGgkanKBcSjCfp/pqmiiO1nQaOyLp6XQddAzRcx3Xw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-NGlsqL0jLPDW91dz304QTM/SNO99lpcSYYAjNiX0Ou+sSGgkanKBcSjCfp/pqmiiO1nQaOyLp6XQddAzRcx3Xw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@babel/core': 7.22.20 '@babel/generator': 7.21.1 @@ -13283,7 +17741,10 @@ packages: - supports-color /jest-transform-nearley@2.0.0(nearley@2.20.1): - resolution: {integrity: sha512-tjLgaASIKmB0zVFdSyQoJZQDmcyIpExkWF8O+0ph9nWE+3a3YsWTDTC0Uuc20Erz8QJ8RcL2U0c+USr696K4HQ==} + resolution: + { + integrity: sha512-tjLgaASIKmB0zVFdSyQoJZQDmcyIpExkWF8O+0ph9nWE+3a3YsWTDTC0Uuc20Erz8QJ8RcL2U0c+USr696K4HQ==, + } peerDependencies: nearley: ^2 dependencies: @@ -13291,8 +17752,11 @@ packages: dev: true /jest-util@26.6.2: - resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==, + } + engines: { node: '>= 10.14.2' } dependencies: '@jest/types': 26.6.2 '@types/node': 18.15.11 @@ -13303,8 +17767,11 @@ packages: dev: false /jest-util@29.4.3: - resolution: {integrity: sha512-ToSGORAz4SSSoqxDSylWX8JzkOQR7zoBtNRsA7e+1WUX5F8jrOwaNpuh1YfJHJKDHXLHmObv5eOjejUd+/Ws+Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-ToSGORAz4SSSoqxDSylWX8JzkOQR7zoBtNRsA7e+1WUX5F8jrOwaNpuh1YfJHJKDHXLHmObv5eOjejUd+/Ws+Q==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.4.3 '@types/node': 18.15.11 @@ -13314,8 +17781,11 @@ packages: picomatch: 2.3.1 /jest-util@29.5.0: - resolution: {integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.5.0 '@types/node': 18.15.11 @@ -13325,8 +17795,11 @@ packages: picomatch: 2.3.1 /jest-validate@29.4.3: - resolution: {integrity: sha512-J3u5v7aPQoXPzaar6GndAVhdQcZr/3osWSgTeKg5v574I9ybX/dTyH0AJFb5XgXIB7faVhf+rS7t4p3lL9qFaw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-J3u5v7aPQoXPzaar6GndAVhdQcZr/3osWSgTeKg5v574I9ybX/dTyH0AJFb5XgXIB7faVhf+rS7t4p3lL9qFaw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/types': 29.5.0 camelcase: 6.3.0 @@ -13336,8 +17809,11 @@ packages: pretty-format: 29.5.0 /jest-watcher@29.4.3: - resolution: {integrity: sha512-zwlXH3DN3iksoIZNk73etl1HzKyi5FuQdYLnkQKm5BW4n8HpoG59xSwpVdFrnh60iRRaRBGw0gcymIxjJENPcA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-zwlXH3DN3iksoIZNk73etl1HzKyi5FuQdYLnkQKm5BW4n8HpoG59xSwpVdFrnh60iRRaRBGw0gcymIxjJENPcA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/test-result': 29.4.3 '@jest/types': 29.5.0 @@ -13349,8 +17825,11 @@ packages: string-length: 4.0.2 /jest-worker@26.6.2: - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==, + } + engines: { node: '>= 10.13.0' } dependencies: '@types/node': 18.15.11 merge-stream: 2.0.0 @@ -13358,8 +17837,11 @@ packages: dev: false /jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, + } + engines: { node: '>= 10.13.0' } dependencies: '@types/node': 18.15.11 merge-stream: 2.0.0 @@ -13367,8 +17849,11 @@ packages: dev: true /jest-worker@29.4.3: - resolution: {integrity: sha512-GLHN/GTAAMEy5BFdvpUfzr9Dr80zQqBrh0fz1mtRMe05hqP45+HfQltu7oTBfduD0UeZs09d+maFtFYAXFWvAA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-GLHN/GTAAMEy5BFdvpUfzr9Dr80zQqBrh0fz1mtRMe05hqP45+HfQltu7oTBfduD0UeZs09d+maFtFYAXFWvAA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@types/node': 18.15.11 jest-util: 29.5.0 @@ -13376,8 +17861,11 @@ packages: supports-color: 8.1.1 /jest@29.4.3(@types/node@18.15.11)(ts-node@10.9.1): - resolution: {integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-XvK65feuEFGZT8OO0fB/QAQS+LGHvQpaadkH5p47/j3Ocqq3xf2pK9R+G0GzgfuhXVxEv76qCOOcMb5efLk6PA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -13396,43 +17884,67 @@ packages: dev: true /jose@4.13.1: - resolution: {integrity: sha512-MSJQC5vXco5Br38mzaQKiq9mwt7lwj2eXpgpRyQYNHYt2lq1PjkWa7DLXX0WVcQLE9HhMh3jPiufS7fhJf+CLQ==} + resolution: + { + integrity: sha512-MSJQC5vXco5Br38mzaQKiq9mwt7lwj2eXpgpRyQYNHYt2lq1PjkWa7DLXX0WVcQLE9HhMh3jPiufS7fhJf+CLQ==, + } dev: false /js-string-escape@1.0.1: - resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==, + } + engines: { node: '>= 0.8' } dev: true /js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } /js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + resolution: + { + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, + } hasBin: true dependencies: argparse: 1.0.10 esprima: 4.0.1 /js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } hasBin: true dependencies: argparse: 2.0.1 /js2xmlparser@4.0.2: - resolution: {integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==} + resolution: + { + integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==, + } dependencies: xmlcreate: 2.0.4 dev: true /jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + resolution: + { + integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==, + } dev: true /jsdoc@4.0.2: - resolution: {integrity: sha512-e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-e8cIg2z62InH7azBBi3EsSEqrKx+nUtAS5bBcYTSpZFA+vhNPyhv8PTFZ0WsjOPDj04/dOLlm08EDcQJDqaGQg==, + } + engines: { node: '>=12.0.0' } hasBin: true dependencies: '@babel/parser': 7.21.2 @@ -13453,14 +17965,20 @@ packages: dev: true /jsdoctypeparser@9.0.0: - resolution: {integrity: sha512-jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-jrTA2jJIL6/DAEILBEh2/w9QxCuwmvNXIry39Ay/HVfhE3o2yVV0U44blYkqdHA/OKloJEqvJy0xU+GSdE2SIw==, + } + engines: { node: '>=10' } hasBin: true dev: true /jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==, + } + engines: { node: '>=14' } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -13500,8 +18018,11 @@ packages: dev: true /jsdom@22.1.0: - resolution: {integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-/9AVW7xNbsBv6GfWho4TTNjEo9fe6Zhf9O7s0Fhhr3u+awPwAJMKwAMXnkk5vBxflqLW9hTHX/0cs+P3gW+cQw==, + } + engines: { node: '>=16' } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -13538,74 +18059,122 @@ packages: dev: true /jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + resolution: + { + integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, + } hasBin: true /jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, + } + engines: { node: '>=4' } hasBin: true /json-buffer@3.0.0: - resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} + resolution: + { + integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==, + } dev: true /json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + resolution: + { + integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, + } dev: true /json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + resolution: + { + integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==, + } dev: true /json-parse-even-better-errors@2.3.1: - resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, + } /json-schema-to-ts@1.6.4: - resolution: {integrity: sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA==} + resolution: + { + integrity: sha512-pR4yQ9DHz6itqswtHCm26mw45FSNfQ9rEQjosaZErhn5J3J2sIViQiz8rDaezjKAhFGpmsoczYVBgGHzFw/stA==, + } dependencies: '@types/json-schema': 7.0.12 ts-toolbelt: 6.15.5 dev: true /json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + resolution: + { + integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, + } /json-schema-traverse@1.0.0: - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + resolution: + { + integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, + } dev: true /json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + resolution: + { + integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==, + } dev: true /json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + resolution: + { + integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, + } /json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + resolution: + { + integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==, + } dev: true /json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + resolution: + { + integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, + } hasBin: true dependencies: minimist: 1.2.8 dev: true /json5@2.2.1: - resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==, + } + engines: { node: '>=6' } hasBin: true /json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, + } + engines: { node: '>=6' } hasBin: true /jsonc-eslint-parser@2.1.0: - resolution: {integrity: sha512-qCRJWlbP2v6HbmKW7R3lFbeiVWHo+oMJ0j+MizwvauqnCV/EvtAeEeuCgoc/ErtsuoKgYB8U4Ih8AxJbXoE6/g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-qCRJWlbP2v6HbmKW7R3lFbeiVWHo+oMJ0j+MizwvauqnCV/EvtAeEeuCgoc/ErtsuoKgYB8U4Ih8AxJbXoE6/g==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: acorn: 8.8.0 eslint-visitor-keys: 3.3.0 @@ -13614,27 +18183,42 @@ packages: dev: true /jsonc-parser@3.0.0: - resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} + resolution: + { + integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==, + } dev: true /jsonc-parser@3.2.0: - resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==} + resolution: + { + integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==, + } /jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + resolution: + { + integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, + } dependencies: universalify: 2.0.0 optionalDependencies: graceful-fs: 4.2.11 /jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} + resolution: + { + integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==, + } + engines: { '0': node >= 0.2.0 } dev: true /jsonstream-next@3.0.0: - resolution: {integrity: sha512-aAi6oPhdt7BKyQn1SrIIGZBt0ukKuOUE1qV6kJ3GgioSOYzsRc8z9Hfr1BVmacA/jLe9nARfmgMGgn68BqIAgg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-aAi6oPhdt7BKyQn1SrIIGZBt0ukKuOUE1qV6kJ3GgioSOYzsRc8z9Hfr1BVmacA/jLe9nARfmgMGgn68BqIAgg==, + } + engines: { node: '>=10' } hasBin: true dependencies: jsonparse: 1.3.1 @@ -13642,8 +18226,11 @@ packages: dev: true /jsprim@2.0.2: - resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} - engines: {'0': node >=0.6.0} + resolution: + { + integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==, + } + engines: { '0': node >=0.6.0 } dependencies: assert-plus: 1.0.0 extsprintf: 1.3.0 @@ -13652,149 +18239,227 @@ packages: dev: true /jsx-ast-utils@3.3.3: - resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==, + } + engines: { node: '>=4.0' } dependencies: array-includes: 3.1.6 object.assign: 4.1.4 dev: true /katex@0.12.0: - resolution: {integrity: sha512-y+8btoc/CK70XqcHqjxiGWBOeIL8upbS0peTPXTvgrh21n1RiWWcIpSWM+4uXq+IAgNh9YYQWdc7LVDPDAEEAg==} + resolution: + { + integrity: sha512-y+8btoc/CK70XqcHqjxiGWBOeIL8upbS0peTPXTvgrh21n1RiWWcIpSWM+4uXq+IAgNh9YYQWdc7LVDPDAEEAg==, + } hasBin: true dependencies: commander: 2.20.3 dev: false /katex@0.13.24: - resolution: {integrity: sha512-jZxYuKCma3VS5UuxOx/rFV1QyGSl3Uy/i0kTJF3HgQ5xMinCQVF8Zd4bMY/9aI9b9A2pjIBOsjSSm68ykTAr8w==} + resolution: + { + integrity: sha512-jZxYuKCma3VS5UuxOx/rFV1QyGSl3Uy/i0kTJF3HgQ5xMinCQVF8Zd4bMY/9aI9b9A2pjIBOsjSSm68ykTAr8w==, + } hasBin: true dependencies: commander: 8.3.0 dev: false /keyv@3.1.0: - resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} + resolution: + { + integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==, + } dependencies: json-buffer: 3.0.0 dev: true /keyv@4.5.2: - resolution: {integrity: sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==} + resolution: + { + integrity: sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==, + } dependencies: json-buffer: 3.0.1 dev: true /kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==, + } + engines: { node: '>=0.10.0' } dependencies: is-buffer: 1.1.6 dev: false /kind-of@4.0.0: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==, + } + engines: { node: '>=0.10.0' } dependencies: is-buffer: 1.1.6 dev: false /kind-of@5.1.0: - resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==, + } + engines: { node: '>=0.10.0' } dev: false /kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, + } + engines: { node: '>=0.10.0' } /klaw@3.0.0: - resolution: {integrity: sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==} + resolution: + { + integrity: sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==, + } dependencies: graceful-fs: 4.2.11 dev: true /kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, + } + engines: { node: '>=6' } dev: true /kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, + } + engines: { node: '>=6' } /klona@2.0.5: - resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==, + } + engines: { node: '>= 8' } dev: false /language-subtag-registry@0.3.22: - resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} + resolution: + { + integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==, + } dev: true /language-tags@1.0.5: - resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} + resolution: + { + integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==, + } dependencies: language-subtag-registry: 0.3.22 dev: true /latest-version@5.1.0: - resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==, + } + engines: { node: '>=8' } dependencies: package-json: 6.5.0 dev: true /lazy-ass@1.6.0: - resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} - engines: {node: '> 0.8'} + resolution: + { + integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==, + } + engines: { node: '> 0.8' } dev: true /leven@3.1.0: - resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, + } + engines: { node: '>=6' } /levenshtein-edit-distance@2.0.5: - resolution: {integrity: sha512-Yuraz7QnMX/JENJU1HA6UtdsbhRzoSFnGpVGVryjQgHtl2s/YmVgmNYkVs5yzVZ9aAvQR9wPBUH3lG755ylxGA==} + resolution: + { + integrity: sha512-Yuraz7QnMX/JENJU1HA6UtdsbhRzoSFnGpVGVryjQgHtl2s/YmVgmNYkVs5yzVZ9aAvQR9wPBUH3lG755ylxGA==, + } hasBin: true dev: false /levn@0.3.0: - resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==, + } + engines: { node: '>= 0.8.0' } dependencies: prelude-ls: 1.1.2 type-check: 0.3.2 dev: true /levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, + } + engines: { node: '>= 0.8.0' } dependencies: prelude-ls: 1.2.1 type-check: 0.4.0 /lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==, + } + engines: { node: '>=10' } dev: true /lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + } /lines-and-columns@2.0.3: - resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } /linkify-it@3.0.3: - resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==} + resolution: + { + integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==, + } dependencies: uc.micro: 1.0.6 dev: true /listr2@3.14.0(enquirer@2.3.6): - resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==, + } + engines: { node: '>=10.0.0' } peerDependencies: enquirer: '>= 2.3.0 < 3' peerDependenciesMeta: @@ -13813,8 +18478,11 @@ packages: dev: true /load-json-file@4.0.0: - resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==, + } + engines: { node: '>=4' } dependencies: graceful-fs: 4.2.11 parse-json: 4.0.0 @@ -13823,13 +18491,19 @@ packages: dev: true /loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} + resolution: + { + integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, + } + engines: { node: '>=6.11.5' } dev: true /loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} + resolution: + { + integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==, + } + engines: { node: '>=8.9.0' } dependencies: big.js: 5.2.2 emojis-list: 3.0.0 @@ -13837,106 +18511,175 @@ packages: dev: true /local-pkg@0.4.3: - resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==, + } + engines: { node: '>=14' } dev: true /locate-path@2.0.0: - resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==, + } + engines: { node: '>=4' } dependencies: p-locate: 2.0.0 path-exists: 3.0.0 dev: true /locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, + } + engines: { node: '>=8' } dependencies: p-locate: 4.1.0 /locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, + } + engines: { node: '>=10' } dependencies: p-locate: 5.0.0 /lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + resolution: + { + integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==, + } dev: true /lodash.castarray@4.4.0: - resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==} + resolution: + { + integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==, + } dev: true /lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + resolution: + { + integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, + } /lodash.isfunction@3.0.9: - resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} + resolution: + { + integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==, + } dev: true /lodash.ismatch@4.4.0: - resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + resolution: + { + integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==, + } dev: true /lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + resolution: + { + integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, + } dev: true /lodash.kebabcase@4.1.1: - resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} + resolution: + { + integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==, + } dev: true /lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + resolution: + { + integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==, + } dev: true /lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } /lodash.mergewith@4.6.2: - resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + resolution: + { + integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==, + } dev: true /lodash.once@4.1.1: - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + resolution: + { + integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==, + } dev: true /lodash.snakecase@4.1.1: - resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + resolution: + { + integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==, + } dev: true /lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + resolution: + { + integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, + } dev: true /lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + resolution: + { + integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, + } dev: true /lodash.uniqueid@4.0.1: - resolution: {integrity: sha512-GQQWaIeGlL6DIIr06kj1j6sSmBxyNMwI8kaX9aKpHR/XsMTiaXDVPNPAkiboOTK9OJpTJF/dXT3xYoFQnj386Q==} + resolution: + { + integrity: sha512-GQQWaIeGlL6DIIr06kj1j6sSmBxyNMwI8kaX9aKpHR/XsMTiaXDVPNPAkiboOTK9OJpTJF/dXT3xYoFQnj386Q==, + } dev: false /lodash.upperfirst@4.3.1: - resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} + resolution: + { + integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==, + } dev: true /lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } /log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, + } + engines: { node: '>=10' } dependencies: chalk: 4.1.2 is-unicode-supported: 0.1.0 dev: true /log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==, + } + engines: { node: '>=10' } dependencies: ansi-escapes: 4.3.2 cli-cursor: 3.1.0 @@ -13945,140 +18688,218 @@ packages: dev: true /longest-streak@2.0.4: - resolution: {integrity: sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==} + resolution: + { + integrity: sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==, + } dev: false /longest-streak@3.0.1: - resolution: {integrity: sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==} + resolution: + { + integrity: sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==, + } dev: false /longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + resolution: + { + integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==, + } /loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, + } hasBin: true dependencies: js-tokens: 4.0.0 /loupe@2.3.6: - resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} + resolution: + { + integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==, + } dependencies: get-func-name: 2.0.0 dev: true /lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + resolution: + { + integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, + } dependencies: tslib: 2.6.2 dev: true /lowercase-keys@1.0.1: - resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==, + } + engines: { node: '>=0.10.0' } dev: true /lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==, + } + engines: { node: '>=8' } dev: true /lowlight@1.20.0: - resolution: {integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==} + resolution: + { + integrity: sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==, + } dependencies: fault: 1.0.4 highlight.js: 10.7.3 dev: false /lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + resolution: + { + integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, + } dependencies: pseudomap: 1.0.2 yallist: 2.1.2 dev: true /lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + resolution: + { + integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, + } dependencies: yallist: 3.1.1 /lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, + } + engines: { node: '>=10' } dependencies: yallist: 4.0.0 /lunr@2.3.9: - resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} + resolution: + { + integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==, + } /lz-string@1.5.0: - resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + resolution: + { + integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==, + } hasBin: true dev: true /magic-string@0.25.7: - resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==} + resolution: + { + integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==, + } dependencies: sourcemap-codec: 1.4.8 dev: true /magic-string@0.27.0: - resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==, + } + engines: { node: '>=12' } dependencies: '@jridgewell/sourcemap-codec': 1.4.14 dev: true /magic-string@0.29.0: - resolution: {integrity: sha512-WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q==, + } + engines: { node: '>=12' } dependencies: '@jridgewell/sourcemap-codec': 1.4.14 /magic-string@0.30.0: - resolution: {integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ==, + } + engines: { node: '>=12' } dependencies: '@jridgewell/sourcemap-codec': 1.4.15 /make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, + } + engines: { node: '>=8' } dependencies: semver: 6.3.1 /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + resolution: + { + integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, + } /makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + resolution: + { + integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, + } dependencies: tmpl: 1.0.5 /map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==, + } + engines: { node: '>=0.10.0' } dev: false /map-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, + } + engines: { node: '>=0.10.0' } dev: true /map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, + } + engines: { node: '>=8' } dev: true /map-visit@1.0.0: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==, + } + engines: { node: '>=0.10.0' } dependencies: object-visit: 1.0.1 dev: false /markdown-it-anchor@8.6.7(@types/markdown-it@12.2.3)(markdown-it@12.3.2): - resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==} + resolution: + { + integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==, + } peerDependencies: '@types/markdown-it': '*' markdown-it: '*' @@ -14088,7 +18909,10 @@ packages: dev: true /markdown-it@12.3.2: - resolution: {integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==} + resolution: + { + integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==, + } hasBin: true dependencies: argparse: 2.0.1 @@ -14099,41 +18923,62 @@ packages: dev: true /markdown-table@2.0.0: - resolution: {integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==} + resolution: + { + integrity: sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==, + } dependencies: repeat-string: 1.6.1 dev: false /markdown-table@3.0.3: - resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} + resolution: + { + integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==, + } dev: false /marked@4.2.12: - resolution: {integrity: sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==, + } + engines: { node: '>= 12' } hasBin: true dev: true /marked@4.3.0: - resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==, + } + engines: { node: '>= 12' } hasBin: true /md5-hex@3.0.1: - resolution: {integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==, + } + engines: { node: '>=8' } dependencies: blueimp-md5: 2.19.0 dev: true /mdast-builder@1.1.1: - resolution: {integrity: sha512-a3KBk/LmYD6wKsWi8WJrGU/rXR4yuF4Men0JO0z6dSZCm5FrXXWTRDjqK0vGSqa+1M6p9edeuypZAZAzSehTUw==} + resolution: + { + integrity: sha512-a3KBk/LmYD6wKsWi8WJrGU/rXR4yuF4Men0JO0z6dSZCm5FrXXWTRDjqK0vGSqa+1M6p9edeuypZAZAzSehTUw==, + } dependencies: '@types/unist': 2.0.6 dev: false /mdast-util-find-and-replace@1.1.1: - resolution: {integrity: sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==} + resolution: + { + integrity: sha512-9cKl33Y21lyckGzpSmEQnIDjEfeeWelN5s1kUW1LwdB0Fkuq2u+4GdqcGEygYxJE8GVqCl0741bYXHgamfWAZA==, + } dependencies: escape-string-regexp: 4.0.0 unist-util-is: 4.1.0 @@ -14141,7 +18986,10 @@ packages: dev: false /mdast-util-find-and-replace@2.2.2: - resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} + resolution: + { + integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==, + } dependencies: '@types/mdast': 3.0.11 escape-string-regexp: 5.0.0 @@ -14150,7 +18998,10 @@ packages: dev: false /mdast-util-from-markdown@0.8.5: - resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==} + resolution: + { + integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==, + } dependencies: '@types/mdast': 3.0.11 mdast-util-to-string: 2.0.0 @@ -14162,7 +19013,10 @@ packages: dev: false /mdast-util-from-markdown@1.3.1: - resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} + resolution: + { + integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==, + } dependencies: '@types/mdast': 3.0.11 '@types/unist': 2.0.6 @@ -14180,7 +19034,10 @@ packages: - supports-color /mdast-util-gfm-autolink-literal@0.1.3: - resolution: {integrity: sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==} + resolution: + { + integrity: sha512-GjmLjWrXg1wqMIO9+ZsRik/s7PLwTaeCHVB7vRxUwLntZc8mzmTsLVr6HW1yLokcnhfURsn5zmSVdi3/xWWu1A==, + } dependencies: ccount: 1.1.0 mdast-util-find-and-replace: 1.1.1 @@ -14190,7 +19047,10 @@ packages: dev: false /mdast-util-gfm-autolink-literal@1.0.3: - resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} + resolution: + { + integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==, + } dependencies: '@types/mdast': 3.0.11 ccount: 2.0.1 @@ -14199,7 +19059,10 @@ packages: dev: false /mdast-util-gfm-footnote@1.0.2: - resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} + resolution: + { + integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==, + } dependencies: '@types/mdast': 3.0.11 mdast-util-to-markdown: 1.5.0 @@ -14207,27 +19070,39 @@ packages: dev: false /mdast-util-gfm-strikethrough@0.2.3: - resolution: {integrity: sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==} + resolution: + { + integrity: sha512-5OQLXpt6qdbttcDG/UxYY7Yjj3e8P7X16LzvpX8pIQPYJ/C2Z1qFGMmcw+1PZMUM3Z8wt8NRfYTvCni93mgsgA==, + } dependencies: mdast-util-to-markdown: 0.6.5 dev: false /mdast-util-gfm-strikethrough@1.0.3: - resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} + resolution: + { + integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==, + } dependencies: '@types/mdast': 3.0.11 mdast-util-to-markdown: 1.5.0 dev: false /mdast-util-gfm-table@0.1.6: - resolution: {integrity: sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==} + resolution: + { + integrity: sha512-j4yDxQ66AJSBwGkbpFEp9uG/LS1tZV3P33fN1gkyRB2LoRL+RR3f76m0HPHaby6F4Z5xr9Fv1URmATlRRUIpRQ==, + } dependencies: markdown-table: 2.0.0 mdast-util-to-markdown: 0.6.5 dev: false /mdast-util-gfm-table@1.0.7: - resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} + resolution: + { + integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==, + } dependencies: '@types/mdast': 3.0.11 markdown-table: 3.0.3 @@ -14238,20 +19113,29 @@ packages: dev: false /mdast-util-gfm-task-list-item@0.1.6: - resolution: {integrity: sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==} + resolution: + { + integrity: sha512-/d51FFIfPsSmCIRNp7E6pozM9z1GYPIkSy1urQ8s/o4TC22BZ7DqfHFWiqBD23bc7J3vV1Fc9O4QIHBlfuit8A==, + } dependencies: mdast-util-to-markdown: 0.6.5 dev: false /mdast-util-gfm-task-list-item@1.0.2: - resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} + resolution: + { + integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==, + } dependencies: '@types/mdast': 3.0.11 mdast-util-to-markdown: 1.5.0 dev: false /mdast-util-gfm@0.1.2: - resolution: {integrity: sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==} + resolution: + { + integrity: sha512-NNkhDx/qYcuOWB7xHUGWZYVXvjPFFd6afg6/e2g+SV4r9q5XUcCbV4Wfa3DLYIiD+xAEZc6K4MGaE/m0KDcPwQ==, + } dependencies: mdast-util-gfm-autolink-literal: 0.1.3 mdast-util-gfm-strikethrough: 0.2.3 @@ -14263,7 +19147,10 @@ packages: dev: false /mdast-util-gfm@2.0.2: - resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} + resolution: + { + integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==, + } dependencies: mdast-util-from-markdown: 1.3.1 mdast-util-gfm-autolink-literal: 1.0.3 @@ -14277,7 +19164,10 @@ packages: dev: false /mdast-util-heading-range@3.1.0: - resolution: {integrity: sha512-utI/jMJR/d2/ImBxG/ko0BIyVA5B9lg9rIgHFVc9HdanBNpfEJqqqtKXYeFzkSFhPs7rogne8a8DNxJKCNIzYw==} + resolution: + { + integrity: sha512-utI/jMJR/d2/ImBxG/ko0BIyVA5B9lg9rIgHFVc9HdanBNpfEJqqqtKXYeFzkSFhPs7rogne8a8DNxJKCNIzYw==, + } dependencies: '@types/mdast': 3.0.11 '@types/unist': 2.0.6 @@ -14285,7 +19175,10 @@ packages: dev: true /mdast-util-math@0.1.2: - resolution: {integrity: sha512-fogAitds+wH+QRas78Yr1TwmQGN4cW/G2WRw5ePuNoJbBSPJCxIOCE8MTzHgWHVSpgkRaPQTgfzXRE1CrwWSlg==} + resolution: + { + integrity: sha512-fogAitds+wH+QRas78Yr1TwmQGN4cW/G2WRw5ePuNoJbBSPJCxIOCE8MTzHgWHVSpgkRaPQTgfzXRE1CrwWSlg==, + } dependencies: longest-streak: 2.0.4 mdast-util-to-markdown: 0.6.5 @@ -14293,7 +19186,10 @@ packages: dev: false /mdast-util-math@2.0.2: - resolution: {integrity: sha512-8gmkKVp9v6+Tgjtq6SYx9kGPpTf6FVYRa53/DLh479aldR9AyP48qeVOgNZ5X7QUK7nOy4yw7vg6mbiGcs9jWQ==} + resolution: + { + integrity: sha512-8gmkKVp9v6+Tgjtq6SYx9kGPpTf6FVYRa53/DLh479aldR9AyP48qeVOgNZ5X7QUK7nOy4yw7vg6mbiGcs9jWQ==, + } dependencies: '@types/mdast': 3.0.11 longest-streak: 3.0.1 @@ -14301,13 +19197,19 @@ packages: dev: false /mdast-util-phrasing@3.0.1: - resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} + resolution: + { + integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==, + } dependencies: '@types/mdast': 3.0.11 unist-util-is: 5.2.1 /mdast-util-to-markdown@0.6.5: - resolution: {integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==} + resolution: + { + integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==, + } dependencies: '@types/unist': 2.0.6 longest-streak: 2.0.4 @@ -14318,7 +19220,10 @@ packages: dev: false /mdast-util-to-markdown@1.5.0: - resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} + resolution: + { + integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==, + } dependencies: '@types/mdast': 3.0.11 '@types/unist': 2.0.6 @@ -14330,16 +19235,25 @@ packages: zwitch: 2.0.2 /mdast-util-to-string@2.0.0: - resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==} + resolution: + { + integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==, + } dev: false /mdast-util-to-string@3.2.0: - resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} + resolution: + { + integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==, + } dependencies: '@types/mdast': 3.0.11 /mdast-util-toc@6.1.0: - resolution: {integrity: sha512-0PuqZELXZl4ms1sF7Lqigrqik4Ll3UhbI+jdTrfw7pZ9QPawgl7LD4GQ8MkU7bT/EwiVqChNTbifa2jLLKo76A==} + resolution: + { + integrity: sha512-0PuqZELXZl4ms1sF7Lqigrqik4Ll3UhbI+jdTrfw7pZ9QPawgl7LD4GQ8MkU7bT/EwiVqChNTbifa2jLLKo76A==, + } dependencies: '@types/extend': 3.0.1 '@types/github-slugger': 1.3.0 @@ -14352,24 +19266,39 @@ packages: dev: true /mdn-data@2.0.28: - resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + resolution: + { + integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==, + } dev: true /mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + resolution: + { + integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==, + } dev: true /mdurl@1.0.1: - resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + resolution: + { + integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==, + } dev: true /media-engine@1.0.3: - resolution: {integrity: sha512-aa5tG6sDoK+k70B9iEX1NeyfT8ObCKhNDs6lJVpwF6r8vhUfuKMslIcirq6HIUYuuUYLefcEQOn9bSBOvawtwg==} + resolution: + { + integrity: sha512-aa5tG6sDoK+k70B9iEX1NeyfT8ObCKhNDs6lJVpwF6r8vhUfuKMslIcirq6HIUYuuUYLefcEQOn9bSBOvawtwg==, + } dev: false /meow@8.1.2: - resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==, + } + engines: { node: '>=10' } dependencies: '@types/minimist': 1.2.2 camelcase-keys: 6.2.2 @@ -14385,14 +19314,23 @@ packages: dev: true /merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, + } /merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: { node: '>= 8' } /micromark-core-commonmark@1.1.0: - resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} + resolution: + { + integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==, + } dependencies: decode-named-character-reference: 1.0.2 micromark-factory-destination: 1.1.0 @@ -14412,7 +19350,10 @@ packages: uvu: 0.5.6 /micromark-extension-gfm-autolink-literal@0.5.7: - resolution: {integrity: sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==} + resolution: + { + integrity: sha512-ePiDGH0/lhcngCe8FtH4ARFoxKTUelMp4L7Gg2pujYD5CSMb9PbblnyL+AAMud/SNMyusbS2XDSiPIRcQoNFAw==, + } dependencies: micromark: 2.11.4 transitivePeerDependencies: @@ -14420,7 +19361,10 @@ packages: dev: false /micromark-extension-gfm-autolink-literal@1.0.3: - resolution: {integrity: sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==} + resolution: + { + integrity: sha512-i3dmvU0htawfWED8aHMMAzAVp/F0Z+0bPh3YrbTPPL1v4YAlCZpy5rBO5p0LPYiZo0zFVkoYh7vDU7yQSiCMjg==, + } dependencies: micromark-util-character: 1.2.0 micromark-util-sanitize-uri: 1.2.0 @@ -14430,7 +19374,10 @@ packages: dev: false /micromark-extension-gfm-footnote@1.1.2: - resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} + resolution: + { + integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==, + } dependencies: micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -14443,7 +19390,10 @@ packages: dev: false /micromark-extension-gfm-strikethrough@0.6.5: - resolution: {integrity: sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==} + resolution: + { + integrity: sha512-PpOKlgokpQRwUesRwWEp+fHjGGkZEejj83k9gU5iXCbDG+XBA92BqnRKYJdfqfkrRcZRgGuPuXb7DaK/DmxOhw==, + } dependencies: micromark: 2.11.4 transitivePeerDependencies: @@ -14451,7 +19401,10 @@ packages: dev: false /micromark-extension-gfm-strikethrough@1.0.7: - resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} + resolution: + { + integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==, + } dependencies: micromark-util-chunked: 1.1.0 micromark-util-classify-character: 1.1.0 @@ -14462,7 +19415,10 @@ packages: dev: false /micromark-extension-gfm-table@0.4.3: - resolution: {integrity: sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==} + resolution: + { + integrity: sha512-hVGvESPq0fk6ALWtomcwmgLvH8ZSVpcPjzi0AjPclB9FsVRgMtGZkUcpE0zgjOCFAznKepF4z3hX8z6e3HODdA==, + } dependencies: micromark: 2.11.4 transitivePeerDependencies: @@ -14470,7 +19426,10 @@ packages: dev: false /micromark-extension-gfm-table@1.0.7: - resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} + resolution: + { + integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==, + } dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -14480,17 +19439,26 @@ packages: dev: false /micromark-extension-gfm-tagfilter@0.3.0: - resolution: {integrity: sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==} + resolution: + { + integrity: sha512-9GU0xBatryXifL//FJH+tAZ6i240xQuFrSL7mYi8f4oZSbc+NvXjkrHemeYP0+L4ZUT+Ptz3b95zhUZnMtoi/Q==, + } dev: false /micromark-extension-gfm-tagfilter@1.0.1: - resolution: {integrity: sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==} + resolution: + { + integrity: sha512-Ty6psLAcAjboRa/UKUbbUcwjVAv5plxmpUTy2XC/3nJFL37eHej8jrHrRzkqcpipJliuBH30DTs7+3wqNcQUVA==, + } dependencies: micromark-util-types: 1.1.0 dev: false /micromark-extension-gfm-task-list-item@0.3.3: - resolution: {integrity: sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==} + resolution: + { + integrity: sha512-0zvM5iSLKrc/NQl84pZSjGo66aTGd57C1idmlWmE87lkMcXrTxg1uXa/nXomxJytoje9trP0NDLvw4bZ/Z/XCQ==, + } dependencies: micromark: 2.11.4 transitivePeerDependencies: @@ -14498,7 +19466,10 @@ packages: dev: false /micromark-extension-gfm-task-list-item@1.0.3: - resolution: {integrity: sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==} + resolution: + { + integrity: sha512-PpysK2S1Q/5VXi72IIapbi/jliaiOFzv7THH4amwXeYXLq3l1uo8/2Be0Ac1rEwK20MQEsGH2ltAZLNY2KI/0Q==, + } dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -14508,7 +19479,10 @@ packages: dev: false /micromark-extension-gfm@0.3.3: - resolution: {integrity: sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==} + resolution: + { + integrity: sha512-oVN4zv5/tAIA+l3GbMi7lWeYpJ14oQyJ3uEim20ktYFAcfX1x3LNlFGGlmrZHt7u9YlKExmyJdDGaTt6cMSR/A==, + } dependencies: micromark: 2.11.4 micromark-extension-gfm-autolink-literal: 0.5.7 @@ -14521,7 +19495,10 @@ packages: dev: false /micromark-extension-gfm@2.0.1: - resolution: {integrity: sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==} + resolution: + { + integrity: sha512-p2sGjajLa0iYiGQdT0oelahRYtMWvLjy8J9LOCxzIQsllMCGLbsLW+Nc+N4vi02jcRJvedVJ68cjelKIO6bpDA==, + } dependencies: micromark-extension-gfm-autolink-literal: 1.0.3 micromark-extension-gfm-footnote: 1.1.2 @@ -14534,7 +19511,10 @@ packages: dev: false /micromark-extension-math@0.1.2: - resolution: {integrity: sha512-ZJXsT2eVPM8VTmcw0CPSDeyonOn9SziGK3Z+nkf9Vb6xMPeU+4JMEnO6vzDL10562Favw8Vste74f54rxJ/i6Q==} + resolution: + { + integrity: sha512-ZJXsT2eVPM8VTmcw0CPSDeyonOn9SziGK3Z+nkf9Vb6xMPeU+4JMEnO6vzDL10562Favw8Vste74f54rxJ/i6Q==, + } dependencies: katex: 0.12.0 micromark: 2.11.4 @@ -14543,7 +19523,10 @@ packages: dev: false /micromark-extension-math@2.0.2: - resolution: {integrity: sha512-cFv2B/E4pFPBBFuGgLHkkNiFAIQv08iDgPH2HCuR2z3AUgMLecES5Cq7AVtwOtZeRrbA80QgMUk8VVW0Z+D2FA==} + resolution: + { + integrity: sha512-cFv2B/E4pFPBBFuGgLHkkNiFAIQv08iDgPH2HCuR2z3AUgMLecES5Cq7AVtwOtZeRrbA80QgMUk8VVW0Z+D2FA==, + } dependencies: '@types/katex': 0.11.1 katex: 0.13.24 @@ -14555,14 +19538,20 @@ packages: dev: false /micromark-factory-destination@1.1.0: - resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} + resolution: + { + integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==, + } dependencies: micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 /micromark-factory-label@1.1.0: - resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} + resolution: + { + integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==, + } dependencies: micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 @@ -14570,13 +19559,19 @@ packages: uvu: 0.5.6 /micromark-factory-space@1.1.0: - resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} + resolution: + { + integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==, + } dependencies: micromark-util-character: 1.2.0 micromark-util-types: 1.1.0 /micromark-factory-title@1.1.0: - resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} + resolution: + { + integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==, + } dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -14584,7 +19579,10 @@ packages: micromark-util-types: 1.1.0 /micromark-factory-whitespace@1.1.0: - resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} + resolution: + { + integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==, + } dependencies: micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -14592,36 +19590,54 @@ packages: micromark-util-types: 1.1.0 /micromark-util-character@1.2.0: - resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} + resolution: + { + integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==, + } dependencies: micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 /micromark-util-chunked@1.1.0: - resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} + resolution: + { + integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==, + } dependencies: micromark-util-symbol: 1.1.0 /micromark-util-classify-character@1.1.0: - resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} + resolution: + { + integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==, + } dependencies: micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 /micromark-util-combine-extensions@1.1.0: - resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} + resolution: + { + integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==, + } dependencies: micromark-util-chunked: 1.1.0 micromark-util-types: 1.1.0 /micromark-util-decode-numeric-character-reference@1.1.0: - resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} + resolution: + { + integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==, + } dependencies: micromark-util-symbol: 1.1.0 /micromark-util-decode-string@1.0.2: - resolution: {integrity: sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==} + resolution: + { + integrity: sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==, + } dependencies: decode-named-character-reference: 1.0.2 micromark-util-character: 1.2.0 @@ -14629,7 +19645,10 @@ packages: micromark-util-symbol: 1.1.0 /micromark-util-decode-string@1.1.0: - resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} + resolution: + { + integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==, + } dependencies: decode-named-character-reference: 1.0.2 micromark-util-character: 1.2.0 @@ -14637,30 +19656,48 @@ packages: micromark-util-symbol: 1.1.0 /micromark-util-encode@1.1.0: - resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} + resolution: + { + integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==, + } /micromark-util-html-tag-name@1.2.0: - resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} + resolution: + { + integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==, + } /micromark-util-normalize-identifier@1.1.0: - resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} + resolution: + { + integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==, + } dependencies: micromark-util-symbol: 1.1.0 /micromark-util-resolve-all@1.1.0: - resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} + resolution: + { + integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==, + } dependencies: micromark-util-types: 1.1.0 /micromark-util-sanitize-uri@1.2.0: - resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} + resolution: + { + integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==, + } dependencies: micromark-util-character: 1.2.0 micromark-util-encode: 1.1.0 micromark-util-symbol: 1.1.0 /micromark-util-subtokenize@1.1.0: - resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} + resolution: + { + integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==, + } dependencies: micromark-util-chunked: 1.1.0 micromark-util-symbol: 1.1.0 @@ -14668,13 +19705,22 @@ packages: uvu: 0.5.6 /micromark-util-symbol@1.1.0: - resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} + resolution: + { + integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==, + } /micromark-util-types@1.1.0: - resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} + resolution: + { + integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==, + } /micromark@2.11.4: - resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==} + resolution: + { + integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==, + } dependencies: debug: 4.3.4(supports-color@8.1.1) parse-entities: 2.0.0 @@ -14683,7 +19729,10 @@ packages: dev: false /micromark@3.2.0: - resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} + resolution: + { + integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==, + } dependencies: '@types/debug': 4.1.8 debug: 4.3.4(supports-color@8.1.1) @@ -14706,8 +19755,11 @@ packages: - supports-color /micromatch@3.1.10: - resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==, + } + engines: { node: '>=0.10.0' } dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -14727,87 +19779,135 @@ packages: dev: false /micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, + } + engines: { node: '>=8.6' } dependencies: braces: 3.0.2 picomatch: 2.3.1 /mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, + } + engines: { node: '>= 0.6' } /mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, + } + engines: { node: '>= 0.6' } dependencies: mime-db: 1.52.0 /mime@1.6.0: - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, + } + engines: { node: '>=4' } hasBin: true dev: true /mime@3.0.0: - resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==, + } + engines: { node: '>=10.0.0' } hasBin: true /mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + } + engines: { node: '>=6' } /mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, + } + engines: { node: '>=12' } dev: false /mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==, + } + engines: { node: '>=4' } dev: true /mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==, + } + engines: { node: '>=10' } dev: true /min-indent@1.0.1: - resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==, + } + engines: { node: '>=4' } dev: true /mini-svg-data-uri@1.4.4: - resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} + resolution: + { + integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==, + } hasBin: true dev: true /minimatch@3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + resolution: + { + integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==, + } dependencies: brace-expansion: 1.1.11 /minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, + } dependencies: brace-expansion: 1.1.11 /minimatch@5.1.6: - resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==, + } + engines: { node: '>=10' } dependencies: brace-expansion: 2.0.1 /minimatch@7.4.3: - resolution: {integrity: sha512-5UB4yYusDtkRPbRiy1cqZ1IpGNcJCGlEMG17RKzPddpyiPKoCdwohbED8g4QXT0ewCt8LTkQXuljsUfQ3FKM4A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-5UB4yYusDtkRPbRiy1cqZ1IpGNcJCGlEMG17RKzPddpyiPKoCdwohbED8g4QXT0ewCt8LTkQXuljsUfQ3FKM4A==, + } + engines: { node: '>=10' } dependencies: brace-expansion: 2.0.1 /minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, + } + engines: { node: '>= 6' } dependencies: arrify: 1.0.1 is-plain-obj: 1.1.0 @@ -14815,56 +19915,83 @@ packages: dev: true /minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, + } /minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==, + } + engines: { node: '>=8' } dependencies: yallist: 4.0.0 dev: true /minipass@4.2.5: - resolution: {integrity: sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q==, + } + engines: { node: '>=8' } dev: true /minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==, + } + engines: { node: '>=8' } dev: true /minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==, + } + engines: { node: '>= 8' } dependencies: minipass: 3.3.6 yallist: 4.0.0 dev: true /mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==, + } + engines: { node: '>=0.10.0' } dependencies: for-in: 1.0.2 is-extendable: 1.0.1 dev: false /mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + resolution: + { + integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==, + } hasBin: true dependencies: minimist: 1.2.8 dev: true /mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==, + } + engines: { node: '>=10' } hasBin: true dev: true /mlly@1.2.0: - resolution: {integrity: sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==} + resolution: + { + integrity: sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww==, + } dependencies: acorn: 8.8.2 pathe: 1.1.0 @@ -14873,49 +20000,82 @@ packages: dev: true /modify-values@1.0.1: - resolution: {integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==, + } + engines: { node: '>=0.10.0' } dev: true /moo@0.5.2: - resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==} + resolution: + { + integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==, + } /mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, + } + engines: { node: '>=4' } /mrmime@1.0.1: - resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==, + } + engines: { node: '>=10' } /ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + resolution: + { + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, + } dev: false /ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + } /ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } dev: true /mute-stream@0.0.8: - resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + resolution: + { + integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==, + } dev: true /nanoid@3.3.4: - resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + resolution: + { + integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true /nanoid@3.3.6: - resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + resolution: + { + integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true /nanomatch@1.2.13: - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==, + } + engines: { node: '>=0.10.0' } dependencies: arr-diff: 4.0.0 array-unique: 0.3.2 @@ -14933,14 +20093,23 @@ packages: dev: false /natural-compare-lite@1.4.0: - resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} + resolution: + { + integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==, + } dev: true /natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, + } /nearley@2.20.1: - resolution: {integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==} + resolution: + { + integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==, + } hasBin: true dependencies: commander: 2.20.3 @@ -14949,11 +20118,17 @@ packages: randexp: 0.4.6 /neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + resolution: + { + integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, + } dev: true /next-auth@4.23.1(next@13.3.0)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-mL083z8KgRtlrIV6CDca2H1kduWJuK/3pTS0Fe2og15KOm4v2kkLGdSDfc2g+019aEBrJUT0pPW2Xx42ImN1WA==} + resolution: + { + integrity: sha512-mL083z8KgRtlrIV6CDca2H1kduWJuK/3pTS0Fe2og15KOm4v2kkLGdSDfc2g+019aEBrJUT0pPW2Xx42ImN1WA==, + } peerDependencies: next: ^12.2.5 || ^13 nodemailer: ^6.6.5 @@ -14978,8 +20153,11 @@ packages: dev: false /next@13.3.0(@babel/core@7.20.5)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==} - engines: {node: '>=14.6.0'} + resolution: + { + integrity: sha512-OVTw8MpIPa12+DCUkPqRGPS3thlJPcwae2ZL4xti3iBff27goH024xy4q2lhlsdoYiKOi8Kz6uJoLW/GXwgfOA==, + } + engines: { node: '>=14.6.0' } hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 @@ -15021,8 +20199,11 @@ packages: - babel-plugin-macros /ngx-deploy-npm@5.2.0(@nrwl/devkit@15.9.7)(@nrwl/workspace@15.9.7)(nx@16.8.1): - resolution: {integrity: sha512-+lsBNlDQ6Lr0fBN2eV+kbiExnPJwmuTK0cz1HBzvi+13DWu/AgAwy5o7bA+IkZL5pS6f4alJpjqY+TDMfGpubw==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-+lsBNlDQ6Lr0fBN2eV+kbiExnPJwmuTK0cz1HBzvi+13DWu/AgAwy5o7bA+IkZL5pS6f4alJpjqY+TDMfGpubw==, + } + engines: { node: '>=14.0.0' } peerDependencies: '@nrwl/devkit': ^14.0.0 || ^15.0.0 '@nrwl/workspace': ^14.0.0 || ^15.0.0 @@ -15034,32 +20215,50 @@ packages: dev: false /nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + resolution: + { + integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==, + } dev: false /nlcst-to-string@2.0.4: - resolution: {integrity: sha512-3x3jwTd6UPG7vi5k4GEzvxJ5rDA7hVUIRNHPblKuMVP9Z3xmlsd9cgLcpAMkc5uPOBna82EeshROFhsPkbnTZg==} + resolution: + { + integrity: sha512-3x3jwTd6UPG7vi5k4GEzvxJ5rDA7hVUIRNHPblKuMVP9Z3xmlsd9cgLcpAMkc5uPOBna82EeshROFhsPkbnTZg==, + } dev: false /nlcst-to-string@3.1.1: - resolution: {integrity: sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==} + resolution: + { + integrity: sha512-63mVyqaqt0cmn2VcI2aH6kxe1rLAmSROqHMA0i4qqg1tidkfExgpb0FGMikMCn86mw5dFtBtEANfmSSK7TjNHw==, + } dependencies: '@types/nlcst': 1.0.0 dev: false /no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + resolution: + { + integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, + } dependencies: lower-case: 2.0.2 tslib: 2.6.2 dev: true /node-addon-api@3.2.1: - resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + resolution: + { + integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==, + } /node-fetch@2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} - engines: {node: 4.x || >=6.0.0} + resolution: + { + integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==, + } + engines: { node: 4.x || >=6.0.0 } peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -15069,8 +20268,11 @@ packages: whatwg-url: 5.0.0 /node-fetch@2.6.9: - resolution: {integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==} - engines: {node: 4.x || >=6.0.0} + resolution: + { + integrity: sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==, + } + engines: { node: 4.x || >=6.0.0 } peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -15080,31 +20282,52 @@ packages: whatwg-url: 5.0.0 /node-gyp-build@4.6.0: - resolution: {integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==} + resolution: + { + integrity: sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ==, + } hasBin: true /node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + resolution: + { + integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, + } /node-machine-id@1.1.12: - resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} + resolution: + { + integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==, + } /node-releases@2.0.13: - resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} + resolution: + { + integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, + } /node-releases@2.0.6: - resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} + resolution: + { + integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==, + } /nopt@5.0.0: - resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==, + } + engines: { node: '>=6' } hasBin: true dependencies: abbrev: 1.1.1 dev: true /normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + resolution: + { + integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, + } dependencies: hosted-git-info: 2.8.9 resolve: 1.22.1 @@ -15113,8 +20336,11 @@ packages: dev: true /normalize-package-data@3.0.3: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==, + } + engines: { node: '>=10' } dependencies: hosted-git-info: 4.1.0 is-core-module: 2.11.0 @@ -15123,58 +20349,88 @@ packages: dev: true /normalize-path@2.1.1: - resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==, + } + engines: { node: '>=0.10.0' } dependencies: remove-trailing-separator: 1.1.0 dev: false /normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, + } + engines: { node: '>=0.10.0' } /normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==, + } + engines: { node: '>=0.10.0' } dev: true /normalize-svg-path@1.1.0: - resolution: {integrity: sha512-r9KHKG2UUeB5LoTouwDzBy2VxXlHsiM6fyLQvnJa0S5hrhzqElH/CH7TUGhT1fVvIYBIKf3OpY4YJ4CK+iaqHg==} + resolution: + { + integrity: sha512-r9KHKG2UUeB5LoTouwDzBy2VxXlHsiM6fyLQvnJa0S5hrhzqElH/CH7TUGhT1fVvIYBIKf3OpY4YJ4CK+iaqHg==, + } dependencies: svg-arc-to-cubic-bezier: 3.2.0 dev: false /normalize-url@4.5.1: - resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==, + } + engines: { node: '>=8' } dev: true /normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==, + } + engines: { node: '>=10' } dev: true /npm-run-path@2.0.2: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==, + } + engines: { node: '>=4' } dependencies: path-key: 2.0.1 /npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, + } + engines: { node: '>=8' } dependencies: path-key: 3.1.1 /npm-run-path@5.1.0: - resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: path-key: 4.0.0 dev: false /npmlog@5.0.1: - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} + resolution: + { + integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==, + } dependencies: are-we-there-yet: 2.0.0 console-control-strings: 1.1.0 @@ -15183,20 +20439,32 @@ packages: dev: true /nth-check@2.1.1: - resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + resolution: + { + integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==, + } dependencies: boolbase: 1.0.0 /nwsapi@2.2.2: - resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==} + resolution: + { + integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==, + } dev: true /nwsapi@2.2.7: - resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} + resolution: + { + integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==, + } dev: true /nx-remotecache-custom@4.2.1(@nx/workspace@16.8.1): - resolution: {integrity: sha512-gx0qEPWZ0pitu0dihWPXqqVip8AGg1OQNLVmn4489qK/oenEGOi6DP/qhMnKeNC30rG4RjH+4RnPNKL5e2bDGg==} + resolution: + { + integrity: sha512-gx0qEPWZ0pitu0dihWPXqqVip8AGg1OQNLVmn4489qK/oenEGOi6DP/qhMnKeNC30rG4RjH+4RnPNKL5e2bDGg==, + } peerDependencies: '@nx/workspace': '>=16.0.0' dependencies: @@ -15207,7 +20475,10 @@ packages: dev: true /nx@15.9.7(@swc-node/register@1.6.2)(@swc/core@1.3.87): - resolution: {integrity: sha512-1qlEeDjX9OKZEryC8i4bA+twNg+lB5RKrozlNwWx/lLJHqWPUfvUTvxh+uxlPYL9KzVReQjUuxMLFMsHNqWUrA==} + resolution: + { + integrity: sha512-1qlEeDjX9OKZEryC8i4bA+twNg+lB5RKrozlNwWx/lLJHqWPUfvUTvxh+uxlPYL9KzVReQjUuxMLFMsHNqWUrA==, + } hasBin: true requiresBuild: true peerDependencies: @@ -15270,7 +20541,10 @@ packages: - debug /nx@16.8.1(@swc-node/register@1.6.2)(@swc/core@1.3.87): - resolution: {integrity: sha512-K5KrwNdPz0eEe6SY5wrnhZcigjfIJkttPrIJRXNBQTE50NGcOfz1TjMXPdTWBxBCCua5PAealO3OrE8jpv+QnQ==} + resolution: + { + integrity: sha512-K5KrwNdPz0eEe6SY5wrnhZcigjfIJkttPrIJRXNBQTE50NGcOfz1TjMXPdTWBxBCCua5PAealO3OrE8jpv+QnQ==, + } hasBin: true requiresBuild: true peerDependencies: @@ -15335,20 +20609,32 @@ packages: - debug /oauth4webapi@2.2.0: - resolution: {integrity: sha512-yHJIXtjeQil8BfBvu0PUu38a2DNPOPcEOhzNdg/HytfKPGQk1hTg5j94zZ3bon9YBIAhW5PSmFv+n6bqq0v0uQ==} + resolution: + { + integrity: sha512-yHJIXtjeQil8BfBvu0PUu38a2DNPOPcEOhzNdg/HytfKPGQk1hTg5j94zZ3bon9YBIAhW5PSmFv+n6bqq0v0uQ==, + } dev: false /oauth@0.9.15: - resolution: {integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==} + resolution: + { + integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==, + } dev: false /object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, + } + engines: { node: '>=0.10.0' } /object-copy@0.1.0: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==, + } + engines: { node: '>=0.10.0' } dependencies: copy-descriptor: 0.1.1 define-property: 0.2.5 @@ -15356,40 +20642,61 @@ packages: dev: false /object-hash@2.2.0: - resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==, + } + engines: { node: '>= 6' } dev: false /object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==, + } + engines: { node: '>= 6' } dev: true /object-inspect@1.12.3: - resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + resolution: + { + integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, + } dev: true /object-is@1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 /object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, + } + engines: { node: '>= 0.4' } /object-visit@1.0.1: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==, + } + engines: { node: '>=0.10.0' } dependencies: isobject: 3.0.1 dev: false /object.assign@4.1.4: - resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -15398,8 +20705,11 @@ packages: dev: true /object.entries@1.1.6: - resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -15407,8 +20717,11 @@ packages: dev: true /object.fromentries@2.0.6: - resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -15416,22 +20729,31 @@ packages: dev: true /object.hasown@1.1.2: - resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} + resolution: + { + integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==, + } dependencies: define-properties: 1.2.0 es-abstract: 1.21.2 dev: true /object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==, + } + engines: { node: '>=0.10.0' } dependencies: isobject: 3.0.1 dev: false /object.values@1.1.6: - resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -15439,38 +20761,56 @@ packages: dev: true /oidc-token-hash@5.0.1: - resolution: {integrity: sha512-EvoOtz6FIEBzE+9q253HsLCVRiK/0doEJ2HCvvqMQb3dHZrP3WlJKYtJ55CRTw4jmYomzH4wkPuCj/I3ZvpKxQ==} - engines: {node: ^10.13.0 || >=12.0.0} + resolution: + { + integrity: sha512-EvoOtz6FIEBzE+9q253HsLCVRiK/0doEJ2HCvvqMQb3dHZrP3WlJKYtJ55CRTw4jmYomzH4wkPuCj/I3ZvpKxQ==, + } + engines: { node: ^10.13.0 || >=12.0.0 } dev: false /once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, + } dependencies: wrappy: 1.0.2 /onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, + } + engines: { node: '>=6' } dependencies: mimic-fn: 2.1.0 /onetime@6.0.0: - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, + } + engines: { node: '>=12' } dependencies: mimic-fn: 4.0.0 dev: false /open@8.4.2: - resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==, + } + engines: { node: '>=12' } dependencies: define-lazy-prop: 2.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 /openai@3.2.1: - resolution: {integrity: sha512-762C9BNlJPbjjlWZi4WYK9iM2tAVAv0uUp1UmI34vb0CN5T2mjB/qM6RYBmNKMh/dN9fC+bxqPwWJZUTWW052A==} + resolution: + { + integrity: sha512-762C9BNlJPbjjlWZi4WYK9iM2tAVAv0uUp1UmI34vb0CN5T2mjB/qM6RYBmNKMh/dN9fC+bxqPwWJZUTWW052A==, + } dependencies: axios: 0.26.1 form-data: 4.0.0 @@ -15479,8 +20819,11 @@ packages: dev: false /openapi-typescript@5.4.1: - resolution: {integrity: sha512-AGB2QiZPz4rE7zIwV3dRHtoUC/CWHhUjuzGXvtmMQN2AFV8xCTLKcZUHLcdPQmt/83i22nRE7+TxXOXkK+gf4Q==} - engines: {node: '>= 14.0.0'} + resolution: + { + integrity: sha512-AGB2QiZPz4rE7zIwV3dRHtoUC/CWHhUjuzGXvtmMQN2AFV8xCTLKcZUHLcdPQmt/83i22nRE7+TxXOXkK+gf4Q==, + } + engines: { node: '>= 14.0.0' } hasBin: true dependencies: js-yaml: 4.1.0 @@ -15492,12 +20835,18 @@ packages: dev: false /opener@1.5.2: - resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + resolution: + { + integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==, + } hasBin: true dev: true /openid-client@5.4.0: - resolution: {integrity: sha512-hgJa2aQKcM2hn3eyVtN12tEA45ECjTJPXCgUh5YzTzy9qwapCvmDTVPWOcWVL0d34zeQoQ/hbG9lJhl3AYxJlQ==} + resolution: + { + integrity: sha512-hgJa2aQKcM2hn3eyVtN12tEA45ECjTJPXCgUh5YzTzy9qwapCvmDTVPWOcWVL0d34zeQoQ/hbG9lJhl3AYxJlQ==, + } dependencies: jose: 4.13.1 lru-cache: 6.0.0 @@ -15506,8 +20855,11 @@ packages: dev: false /optionator@0.8.3: - resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==, + } + engines: { node: '>= 0.8.0' } dependencies: deep-is: 0.1.4 fast-levenshtein: 2.0.6 @@ -15518,8 +20870,11 @@ packages: dev: true /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, + } + engines: { node: '>= 0.8.0' } dependencies: '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 @@ -15529,8 +20884,11 @@ packages: type-check: 0.4.0 /ora@5.4.1: - resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==, + } + engines: { node: '>=10' } dependencies: bl: 4.1.0 chalk: 4.1.2 @@ -15544,99 +20902,150 @@ packages: dev: true /os-filter-obj@2.0.0: - resolution: {integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==, + } + engines: { node: '>=4' } dependencies: arch: 2.2.0 dev: true /os-tmpdir@1.0.2: - resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==, + } + engines: { node: '>=0.10.0' } dev: true /ospath@1.2.2: - resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} + resolution: + { + integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==, + } dev: true /p-cancelable@1.1.0: - resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==, + } + engines: { node: '>=6' } dev: true /p-cancelable@2.1.1: - resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==, + } + engines: { node: '>=8' } dev: true /p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==, + } + engines: { node: '>=4' } /p-limit@1.3.0: - resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==, + } + engines: { node: '>=4' } dependencies: p-try: 1.0.0 dev: true /p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, + } + engines: { node: '>=6' } dependencies: p-try: 2.2.0 /p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, + } + engines: { node: '>=10' } dependencies: yocto-queue: 0.1.0 /p-limit@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dependencies: yocto-queue: 1.0.0 dev: true /p-locate@2.0.0: - resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==, + } + engines: { node: '>=4' } dependencies: p-limit: 1.3.0 dev: true /p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, + } + engines: { node: '>=8' } dependencies: p-limit: 2.3.0 /p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, + } + engines: { node: '>=10' } dependencies: p-limit: 3.1.0 /p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, + } + engines: { node: '>=10' } dependencies: aggregate-error: 3.1.0 dev: true /p-try@1.0.0: - resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==, + } + engines: { node: '>=4' } dev: true /p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + } + engines: { node: '>=6' } /package-json@6.5.0: - resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==, + } + engines: { node: '>=8' } dependencies: got: 9.6.0 registry-auth-token: 4.2.2 @@ -15645,32 +21054,50 @@ packages: dev: true /pako@0.2.9: - resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} + resolution: + { + integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==, + } dev: false /pako@1.0.11: - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + resolution: + { + integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, + } dev: false /parchment@1.1.4: - resolution: {integrity: sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==} + resolution: + { + integrity: sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==, + } dev: false /parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, + } + engines: { node: '>=6' } dependencies: callsites: 3.1.0 /parse-author@2.0.0: - resolution: {integrity: sha512-yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-yx5DfvkN8JsHL2xk2Os9oTia467qnvRgey4ahSm2X8epehBLx/gWLcy5KI+Y36ful5DzGbCS6RazqZGgy1gHNw==, + } + engines: { node: '>=0.10.0' } dependencies: author-regex: 1.0.0 dev: true /parse-english@5.0.0: - resolution: {integrity: sha512-sMe/JmsY6g21aJCAm8KgCH90a9zCZ7aGSriSJ5B0CcGEsDN7YmiCk3+1iKPE1heDG6zYY4Xf++V8llWtCvNBSQ==} + resolution: + { + integrity: sha512-sMe/JmsY6g21aJCAm8KgCH90a9zCZ7aGSriSJ5B0CcGEsDN7YmiCk3+1iKPE1heDG6zYY4Xf++V8llWtCvNBSQ==, + } dependencies: nlcst-to-string: 2.0.4 parse-latin: 5.0.1 @@ -15679,7 +21106,10 @@ packages: dev: false /parse-entities@2.0.0: - resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + resolution: + { + integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==, + } dependencies: character-entities: 1.2.4 character-entities-legacy: 1.1.4 @@ -15690,16 +21120,22 @@ packages: dev: false /parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==, + } + engines: { node: '>=4' } dependencies: error-ex: 1.3.2 json-parse-better-errors: 1.0.2 dev: true /parse-json@5.2.0: - resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, + } + engines: { node: '>=8' } dependencies: '@babel/code-frame': 7.22.13 error-ex: 1.3.2 @@ -15707,7 +21143,10 @@ packages: lines-and-columns: 1.2.4 /parse-latin@5.0.1: - resolution: {integrity: sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==} + resolution: + { + integrity: sha512-b/K8ExXaWC9t34kKeDV8kGXBkXZ1HCSAZRYE7HR14eA1GlXX5L8iWhs8USJNhQU9q5ci413jCKF0gOyovvyRBg==, + } dependencies: nlcst-to-string: 3.1.1 unist-util-modify-children: 3.1.1 @@ -15715,127 +21154,211 @@ packages: dev: false /parse-ms@2.1.0: - resolution: {integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==, + } + engines: { node: '>=6' } dev: true /parse-svg-path@0.1.2: - resolution: {integrity: sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==} + resolution: + { + integrity: sha512-JyPSBnkTJ0AI8GGJLfMXvKq42cj5c006fnLz6fXy6zfoVjJizi8BNTpu8on8ziI1cKy9d9DGNuY17Ce7wuejpQ==, + } dev: false /parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + resolution: + { + integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, + } dev: false /parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + resolution: + { + integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==, + } dependencies: entities: 4.5.0 /pascalcase@0.1.1: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==, + } + engines: { node: '>=0.10.0' } dev: false /path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + resolution: + { + integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==, + } dev: true /path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, + } + engines: { node: '>=4' } dev: true /path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + } + engines: { node: '>=8' } /path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, + } + engines: { node: '>=0.10.0' } /path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==, + } + engines: { node: '>=4' } /path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + } + engines: { node: '>=8' } /path-key@4.0.0: - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, + } + engines: { node: '>=12' } dev: false /path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + } /path-to-regexp@6.1.0: - resolution: {integrity: sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==} + resolution: + { + integrity: sha512-h9DqehX3zZZDCEm+xbfU0ZmwCGFCAAraPJWMXJ4+v32NjZJilVg3k1TcKsRgIb8IQ/izZSaydDc1OhJCZvs2Dw==, + } dev: true /path-type@3.0.0: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==, + } + engines: { node: '>=4' } dependencies: pify: 3.0.0 dev: true /path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: { node: '>=8' } /pathe@1.1.0: - resolution: {integrity: sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==} + resolution: + { + integrity: sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==, + } dev: true /pathval@1.1.1: - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + resolution: + { + integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==, + } dev: true /peek-readable@5.0.0: - resolution: {integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==, + } + engines: { node: '>=14.16' } dev: true /pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + resolution: + { + integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, + } dev: true /performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + resolution: + { + integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==, + } dev: true /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + resolution: + { + integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, + } /picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: '>=8.6' } /pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, + } + engines: { node: '>=0.10.0' } dev: true /pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==, + } + engines: { node: '>=4' } dev: true /pirates@4.0.5: - resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==, + } + engines: { node: '>= 6' } /pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, + } + engines: { node: '>=8' } dependencies: find-up: 4.1.0 dev: true /pkg-types@1.0.2: - resolution: {integrity: sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==} + resolution: + { + integrity: sha512-hM58GKXOcj8WTqUXnsQyJYXdeAPbythQgEF3nTcEo+nkD49chjQ9IKm/QJy9xf6JakXptz86h7ecP2024rrLaQ==, + } dependencies: jsonc-parser: 3.2.0 mlly: 1.2.0 @@ -15843,13 +21366,19 @@ packages: dev: true /pluralize@8.0.0: - resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==, + } + engines: { node: '>=4' } dev: true /portfinder@1.0.32: - resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} - engines: {node: '>= 0.12.0'} + resolution: + { + integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==, + } + engines: { node: '>= 0.12.0' } dependencies: async: 2.6.4 debug: 3.2.7(supports-color@8.1.1) @@ -15859,13 +21388,19 @@ packages: dev: true /posix-character-classes@0.1.1: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==, + } + engines: { node: '>=0.10.0' } dev: false /postcss-import@14.1.0(postcss@8.4.19): - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==, + } + engines: { node: '>=10.0.0' } peerDependencies: postcss: ^8.0.0 dependencies: @@ -15876,8 +21411,11 @@ packages: dev: true /postcss-js@4.0.1(postcss@8.4.19): - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} + resolution: + { + integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==, + } + engines: { node: ^12 || ^14 || >= 16 } peerDependencies: postcss: ^8.4.21 dependencies: @@ -15886,8 +21424,11 @@ packages: dev: true /postcss-load-config@3.1.4(postcss@8.4.19)(ts-node@10.9.1): - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==, + } + engines: { node: '>= 10' } peerDependencies: postcss: '>=8.0.9' ts-node: '>=9.0.0' @@ -15904,8 +21445,11 @@ packages: dev: true /postcss-nested@6.0.0(postcss@8.4.19): - resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} - engines: {node: '>=12.0'} + resolution: + { + integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==, + } + engines: { node: '>=12.0' } peerDependencies: postcss: ^8.2.14 dependencies: @@ -15914,35 +21458,50 @@ packages: dev: true /postcss-selector-parser@6.0.10: - resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==, + } + engines: { node: '>=4' } dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 dev: true /postcss-selector-parser@6.0.11: - resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==, + } + engines: { node: '>=4' } dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 dev: true /postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + resolution: + { + integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, + } /postcss@8.4.14: - resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, + } + engines: { node: ^10 || ^12 || >=14 } dependencies: nanoid: 3.3.4 picocolors: 1.0.0 source-map-js: 1.0.2 /postcss@8.4.19: - resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==, + } + engines: { node: ^10 || ^12 || >=14 } dependencies: nanoid: 3.3.4 picocolors: 1.0.0 @@ -15950,15 +21509,21 @@ packages: dev: true /postcss@8.4.30: - resolution: {integrity: sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==, + } + engines: { node: ^10 || ^12 || >=14 } dependencies: nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 /preact-render-to-string@5.2.3(preact@10.11.3): - resolution: {integrity: sha512-aPDxUn5o3GhWdtJtW0svRC2SS/l8D9MAgo2+AWml+BhDImb27ALf04Q2d+AHqUUOc6RdSXFIBVa2gxzgMKgtZA==} + resolution: + { + integrity: sha512-aPDxUn5o3GhWdtJtW0svRC2SS/l8D9MAgo2+AWml+BhDImb27ALf04Q2d+AHqUUOc6RdSXFIBVa2gxzgMKgtZA==, + } peerDependencies: preact: '>=10' dependencies: @@ -15967,7 +21532,10 @@ packages: dev: false /preact-render-to-string@5.2.6(preact@10.13.1): - resolution: {integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==} + resolution: + { + integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==, + } peerDependencies: preact: '>=10' dependencies: @@ -15976,29 +21544,47 @@ packages: dev: false /preact@10.11.3: - resolution: {integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==} + resolution: + { + integrity: sha512-eY93IVpod/zG3uMF22Unl8h9KkrcKIRs2EGar8hwLZZDU1lkjph303V9HZBwufh2s736U6VXuhD109LYqPoffg==, + } dev: false /preact@10.13.1: - resolution: {integrity: sha512-KyoXVDU5OqTpG9LXlB3+y639JAGzl8JSBXLn1J9HTSB3gbKcuInga7bZnXLlxmK94ntTs1EFeZp0lrja2AuBYQ==} + resolution: + { + integrity: sha512-KyoXVDU5OqTpG9LXlB3+y639JAGzl8JSBXLn1J9HTSB3gbKcuInga7bZnXLlxmK94ntTs1EFeZp0lrja2AuBYQ==, + } dev: false /prelude-ls@1.1.2: - resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==, + } + engines: { node: '>= 0.8.0' } dev: true /prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, + } + engines: { node: '>= 0.8.0' } /prepend-http@2.0.0: - resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==, + } + engines: { node: '>=4' } dev: true /prettier-plugin-svelte@2.9.0(prettier@2.8.4)(svelte@3.57.0): - resolution: {integrity: sha512-3doBi5NO4IVgaNPtwewvrgPpqAcvNv0NwJNflr76PIGgi9nf1oguQV1Hpdm9TI2ALIQVn/9iIwLpBO5UcD2Jiw==} + resolution: + { + integrity: sha512-3doBi5NO4IVgaNPtwewvrgPpqAcvNv0NwJNflr76PIGgi9nf1oguQV1Hpdm9TI2ALIQVn/9iIwLpBO5UcD2Jiw==, + } peerDependencies: prettier: ^1.16.4 || ^2.0.0 svelte: ^3.2.0 @@ -16008,8 +21594,11 @@ packages: dev: true /prettier-plugin-tailwindcss@0.2.3(prettier-plugin-svelte@2.9.0)(prettier@2.8.4): - resolution: {integrity: sha512-s2N5Dh7Ao5KTV1mao5ZBnn8EKtUcDPJEkGViZIjI0Ij9TTI5zgTz4IHOxW33jOdjHKa8CSjM88scelUiC5TNRQ==} - engines: {node: '>=12.17.0'} + resolution: + { + integrity: sha512-s2N5Dh7Ao5KTV1mao5ZBnn8EKtUcDPJEkGViZIjI0Ij9TTI5zgTz4IHOxW33jOdjHKa8CSjM88scelUiC5TNRQ==, + } + engines: { node: '>=12.17.0' } peerDependencies: '@ianvs/prettier-plugin-sort-imports': '*' '@prettier/plugin-php': '*' @@ -16064,18 +21653,27 @@ packages: dev: true /prettier@2.8.4: - resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==, + } + engines: { node: '>=10.13.0' } hasBin: true /pretty-bytes@5.6.0: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==, + } + engines: { node: '>=6' } dev: true /pretty-format@27.5.1: - resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dependencies: ansi-regex: 5.0.1 ansi-styles: 5.2.0 @@ -16083,26 +21681,38 @@ packages: dev: true /pretty-format@29.5.0: - resolution: {integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: '@jest/schemas': 29.4.3 ansi-styles: 5.2.0 react-is: 18.2.0 /pretty-format@3.8.0: - resolution: {integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==} + resolution: + { + integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==, + } dev: false /pretty-ms@7.0.1: - resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==, + } + engines: { node: '>=10' } dependencies: parse-ms: 2.1.0 dev: true /prism-react-renderer@1.3.5(react@18.2.0): - resolution: {integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==} + resolution: + { + integrity: sha512-IJ+MSwBWKG+SM3b2SUfdrhC+gu01QkV2KmRQgREThBfSQRoufqRfxfHUxpG1WcaFjP+kojcFyO9Qqtpgt3qLCg==, + } peerDependencies: react: '>=0.14.9' dependencies: @@ -16110,132 +21720,207 @@ packages: dev: false /prismjs@1.27.0: - resolution: {integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==, + } + engines: { node: '>=6' } dev: false /prismjs@1.29.0: - resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==, + } + engines: { node: '>=6' } dev: false /process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + resolution: + { + integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, + } dev: true /process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} + resolution: + { + integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, + } + engines: { node: '>= 0.6.0' } dev: true /prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, + } + engines: { node: '>= 6' } dependencies: kleur: 3.0.3 sisteransi: 1.0.5 dev: true /prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + resolution: + { + integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, + } dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 /property-information@5.6.0: - resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==} + resolution: + { + integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==, + } dependencies: xtend: 4.0.2 dev: false /property-information@6.1.1: - resolution: {integrity: sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w==} + resolution: + { + integrity: sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w==, + } dev: false /proxy-from-env@1.0.0: - resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} + resolution: + { + integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==, + } dev: true /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + resolution: + { + integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, + } /pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + resolution: + { + integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, + } dev: true /psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + resolution: + { + integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==, + } dev: true /pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + resolution: + { + integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, + } dependencies: end-of-stream: 1.4.4 once: 1.4.0 /punycode@2.3.0: - resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, + } + engines: { node: '>=6' } /pupa@2.1.1: - resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==, + } + engines: { node: '>=8' } dependencies: escape-goat: 2.1.1 dev: true /q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + resolution: + { + integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==, + } + engines: { node: '>=0.6.0', teleport: '>=0.2.0' } dev: true /qs@6.10.4: - resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==, + } + engines: { node: '>=0.6' } dependencies: side-channel: 1.0.4 dev: true /qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==, + } + engines: { node: '>=0.6' } dependencies: side-channel: 1.0.4 dev: true /querystring@0.2.1: - resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} - engines: {node: '>=0.4.x'} + resolution: + { + integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==, + } + engines: { node: '>=0.4.x' } deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. dev: false /querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + resolution: + { + integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, + } dev: true /queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } /queue@6.0.2: - resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} + resolution: + { + integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==, + } dependencies: inherits: 2.0.4 dev: false /quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, + } + engines: { node: '>=8' } dev: true /quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==, + } + engines: { node: '>=10' } dev: true /quill-delta@3.6.3: - resolution: {integrity: sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==, + } + engines: { node: '>=0.10' } dependencies: deep-equal: 1.1.1 extend: 3.0.2 @@ -16243,13 +21928,19 @@ packages: dev: false /quill-mention@3.1.0: - resolution: {integrity: sha512-uyjGK8QPJHEcjvNc3wUJy6a05Oiu+6JJ0N9SFAwjYHYThgMzlKucyD975fq28Mr1it8ZFRNiRMPa0sCiVOAEwA==} + resolution: + { + integrity: sha512-uyjGK8QPJHEcjvNc3wUJy6a05Oiu+6JJ0N9SFAwjYHYThgMzlKucyD975fq28Mr1it8ZFRNiRMPa0sCiVOAEwA==, + } dependencies: quill: 1.3.7 dev: false /quill@1.3.7: - resolution: {integrity: sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==} + resolution: + { + integrity: sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==, + } dependencies: clone: 2.1.2 deep-equal: 1.1.1 @@ -16260,24 +21951,36 @@ packages: dev: false /railroad-diagrams@1.0.0: - resolution: {integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==} + resolution: + { + integrity: sha512-cz93DjNeLY0idrCNOH6PviZGRN9GJhsdm9hpn1YCS879fj4W+x5IFJhhkRZcwVgMmFF7R82UA/7Oh+R8lLZg6A==, + } /randexp@0.4.6: - resolution: {integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==, + } + engines: { node: '>=0.12' } dependencies: discontinuous-range: 1.0.0 ret: 0.1.15 /randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + resolution: + { + integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, + } dependencies: safe-buffer: 5.2.1 dev: true /raw-body@2.5.2: - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==, + } + engines: { node: '>= 0.8' } dependencies: bytes: 3.1.2 http-errors: 2.0.0 @@ -16286,7 +21989,10 @@ packages: dev: true /rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + resolution: + { + integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==, + } hasBin: true dependencies: deep-extend: 0.6.0 @@ -16296,7 +22002,10 @@ packages: dev: true /react-dom@18.2.0(react@18.2.0): - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + resolution: + { + integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, + } peerDependencies: react: ^18.2.0 dependencies: @@ -16305,8 +22014,11 @@ packages: scheduler: 0.23.0 /react-dropzone@14.2.3(react@18.2.0): - resolution: {integrity: sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==} - engines: {node: '>= 10.13'} + resolution: + { + integrity: sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==, + } + engines: { node: '>= 10.13' } peerDependencies: react: '>= 16.8 || 18.0.0' dependencies: @@ -16317,7 +22029,10 @@ packages: dev: false /react-file-icon@1.2.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-BI8CTyZu/k8AmhjGJiGYOqgjfp2si2Lt5PUNF6kfF31c7BFYJeerpfHnZBfpPjrb2M/DAdW1qNub17Rt+xuefQ==} + resolution: + { + integrity: sha512-BI8CTyZu/k8AmhjGJiGYOqgjfp2si2Lt5PUNF6kfF31c7BFYJeerpfHnZBfpPjrb2M/DAdW1qNub17Rt+xuefQ==, + } peerDependencies: react: ^18.0.0 || ^17.0.0 || ^16.2.0 react-dom: ^18.0.0 || ^17.0.0 || ^16.2.0 @@ -16330,8 +22045,11 @@ packages: dev: false /react-hook-form@7.43.7(react@18.2.0): - resolution: {integrity: sha512-38yehQkQQ5uufaPKFScs7jhLE8n3+LG9H/BZfFAiBL2+7piDmw/BrdNJV4irzMaPnWZGhmGLHVICHXNVGIuXZg==} - engines: {node: '>=12.22.0'} + resolution: + { + integrity: sha512-38yehQkQQ5uufaPKFScs7jhLE8n3+LG9H/BZfFAiBL2+7piDmw/BrdNJV4irzMaPnWZGhmGLHVICHXNVGIuXZg==, + } + engines: { node: '>=12.22.0' } peerDependencies: react: ^16.8.0 || ^17 || ^18 dependencies: @@ -16339,7 +22057,10 @@ packages: dev: false /react-icons@4.6.0(react@18.2.0): - resolution: {integrity: sha512-rR/L9m9340yO8yv1QT1QurxWQvWpbNHqVX0fzMln2HEb9TEIrQRGsqiNFQfiv9/JEUbyHmHPlNTB2LWm2Ttz0g==} + resolution: + { + integrity: sha512-rR/L9m9340yO8yv1QT1QurxWQvWpbNHqVX0fzMln2HEb9TEIrQRGsqiNFQfiv9/JEUbyHmHPlNTB2LWm2Ttz0g==, + } peerDependencies: react: '*' dependencies: @@ -16347,17 +22068,29 @@ packages: dev: false /react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + resolution: + { + integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, + } /react-is@17.0.2: - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + resolution: + { + integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, + } dev: true /react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + resolution: + { + integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, + } /react-quill@2.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-4qQtv1FtCfLgoD3PXAur5RyxuUbPXQGOHgTlFie3jtxp43mXDtzCKaOgQ3mLyZfi1PUlyjycfivKelFhy13QUg==} + resolution: + { + integrity: sha512-4qQtv1FtCfLgoD3PXAur5RyxuUbPXQGOHgTlFie3jtxp43mXDtzCKaOgQ3mLyZfi1PUlyjycfivKelFhy13QUg==, + } peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 @@ -16370,8 +22103,11 @@ packages: dev: false /react-reconciler@0.23.0(react@18.2.0): - resolution: {integrity: sha512-vV0KlLimP9a/NuRcM6GRVakkmT6MKSzhfo8K72fjHMnlXMOhz9GlPe+/tCp5CWBkg+lsMUt/CR1nypJBTPfwuw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-vV0KlLimP9a/NuRcM6GRVakkmT6MKSzhfo8K72fjHMnlXMOhz9GlPe+/tCp5CWBkg+lsMUt/CR1nypJBTPfwuw==, + } + engines: { node: '>=0.10.0' } peerDependencies: react: ^16.0.0 dependencies: @@ -16383,7 +22119,10 @@ packages: dev: false /react-syntax-highlighter@15.5.0(react@18.2.0): - resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==} + resolution: + { + integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==, + } peerDependencies: react: '>= 0.14.0' dependencies: @@ -16396,8 +22135,11 @@ packages: dev: false /react-textarea-autosize@8.3.4(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==, + } + engines: { node: '>=10' } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -16410,7 +22152,10 @@ packages: dev: false /react-transition-group@4.4.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} + resolution: + { + integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==, + } peerDependencies: react: '>=16.6.0' react-dom: '>=16.6.0' @@ -16424,28 +22169,40 @@ packages: dev: false /react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, + } + engines: { node: '>=0.10.0' } dependencies: loose-envify: 1.4.0 /read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + resolution: + { + integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==, + } dependencies: pify: 2.3.0 dev: true /read-pkg-up@3.0.0: - resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==, + } + engines: { node: '>=4' } dependencies: find-up: 2.1.0 read-pkg: 3.0.0 dev: true /read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, + } + engines: { node: '>=8' } dependencies: find-up: 4.1.0 read-pkg: 5.2.0 @@ -16453,8 +22210,11 @@ packages: dev: true /read-pkg@3.0.0: - resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==, + } + engines: { node: '>=4' } dependencies: load-json-file: 4.0.0 normalize-package-data: 2.5.0 @@ -16462,8 +22222,11 @@ packages: dev: true /read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, + } + engines: { node: '>=8' } dependencies: '@types/normalize-package-data': 2.4.1 normalize-package-data: 2.5.0 @@ -16472,7 +22235,10 @@ packages: dev: true /readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + resolution: + { + integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, + } dependencies: core-util-is: 1.0.3 inherits: 2.0.4 @@ -16484,54 +22250,78 @@ packages: dev: true /readable-stream@3.6.0: - resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==, + } + engines: { node: '>= 6' } dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 /readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, + } + engines: { node: '>= 6' } dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 /readable-web-to-node-stream@3.0.2: - resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==, + } + engines: { node: '>=8' } dependencies: readable-stream: 3.6.2 dev: true /readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, + } + engines: { node: '>=8.10.0' } dependencies: picomatch: 2.3.1 /redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, + } + engines: { node: '>=8' } dependencies: indent-string: 4.0.0 strip-indent: 3.0.0 dev: true /refa@0.9.1: - resolution: {integrity: sha512-egU8LgFq2VXlAfUi8Jcbr5X38wEOadMFf8tCbshgcpVCYlE7k84pJOSlnvXF+muDB4igkdVMq7Z/kiNPqDT9TA==} + resolution: + { + integrity: sha512-egU8LgFq2VXlAfUi8Jcbr5X38wEOadMFf8tCbshgcpVCYlE7k84pJOSlnvXF+muDB4igkdVMq7Z/kiNPqDT9TA==, + } dependencies: regexpp: 3.2.0 dev: true /reflect-metadata@0.1.13: - resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} + resolution: + { + integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==, + } dev: false /refractor@3.6.0: - resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} + resolution: + { + integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==, + } dependencies: hastscript: 6.0.0 parse-entities: 2.0.0 @@ -16539,72 +22329,111 @@ packages: dev: false /regenerate-unicode-properties@10.1.0: - resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==, + } + engines: { node: '>=4' } dependencies: regenerate: 1.4.2 /regenerate@1.4.2: - resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} + resolution: + { + integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, + } /regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + resolution: + { + integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, + } /regenerator-runtime@0.13.9: - resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + resolution: + { + integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==, + } dev: false /regenerator-runtime@0.14.0: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} + resolution: + { + integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, + } /regenerator-transform@0.15.2: - resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} + resolution: + { + integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==, + } dependencies: '@babel/runtime': 7.22.15 /regex-not@1.0.2: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==, + } + engines: { node: '>=0.10.0' } dependencies: extend-shallow: 3.0.2 safe-regex: 1.1.0 dev: false /regexp-ast-analysis@0.2.4: - resolution: {integrity: sha512-8L7kOZQaKPxKKAwGuUZxTQtlO3WZ+tiXy4s6G6PKL6trbOXcZoumwC3AOHHFtI/xoSbNxt7jgLvCnP1UADLWqg==} + resolution: + { + integrity: sha512-8L7kOZQaKPxKKAwGuUZxTQtlO3WZ+tiXy4s6G6PKL6trbOXcZoumwC3AOHHFtI/xoSbNxt7jgLvCnP1UADLWqg==, + } dependencies: refa: 0.9.1 regexpp: 3.2.0 dev: true /regexp-ast-analysis@0.5.1: - resolution: {integrity: sha512-Ca/g9gaTNuMewLuu+mBIq4vCrGRSO8AE9bP32NMQjJ/wBTdWq0g96qLkBb0NbGwEbp7S/q+NQF3o7veeuRfg0g==} + resolution: + { + integrity: sha512-Ca/g9gaTNuMewLuu+mBIq4vCrGRSO8AE9bP32NMQjJ/wBTdWq0g96qLkBb0NbGwEbp7S/q+NQF3o7veeuRfg0g==, + } dependencies: refa: 0.9.1 regexpp: 3.2.0 dev: true /regexp-tree@0.1.24: - resolution: {integrity: sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw==} + resolution: + { + integrity: sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw==, + } hasBin: true dev: true /regexp.prototype.flags@1.4.3: - resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 functions-have-names: 1.2.3 /regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, + } + engines: { node: '>=8' } dev: true /regexpu-core@5.3.1: - resolution: {integrity: sha512-nCOzW2V/X15XpLsK2rlgdwrysrBq+AauCn+omItIz4R1pIcmeot5zvjdmOBRLzEH/CkC6IxMJVmxDe3QcMuNVQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-nCOzW2V/X15XpLsK2rlgdwrysrBq+AauCn+omItIz4R1pIcmeot5zvjdmOBRLzEH/CkC6IxMJVmxDe3QcMuNVQ==, + } + engines: { node: '>=4' } dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 @@ -16614,27 +22443,39 @@ packages: unicode-match-property-value-ecmascript: 2.1.0 /registry-auth-token@4.2.2: - resolution: {integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-PC5ZysNb42zpFME6D/XlIgtNGdTl8bBOCw90xQLVMpzuuubJKYDWFAEuUNc+Cn8Z8724tg2SDhDRrkVEsqfDMg==, + } + engines: { node: '>=6.0.0' } dependencies: rc: 1.2.8 dev: true /registry-url@5.1.0: - resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==, + } + engines: { node: '>=8' } dependencies: rc: 1.2.8 dev: true /regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + resolution: + { + integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, + } hasBin: true dependencies: jsesc: 0.5.0 /rehype-minify-whitespace@5.0.1: - resolution: {integrity: sha512-PPp4lWJiBPlePI/dv1BeYktbwkfgXkrK59MUa+tYbMPgleod+4DvFK2PLU0O0O60/xuhHfiR9GUIUlXTU8sRIQ==} + resolution: + { + integrity: sha512-PPp4lWJiBPlePI/dv1BeYktbwkfgXkrK59MUa+tYbMPgleod+4DvFK2PLU0O0O60/xuhHfiR9GUIUlXTU8sRIQ==, + } dependencies: '@types/hast': 2.3.4 hast-util-embedded: 2.0.0 @@ -16645,7 +22486,10 @@ packages: dev: false /rehype-parse@8.0.4: - resolution: {integrity: sha512-MJJKONunHjoTh4kc3dsM1v3C9kGrrxvA3U8PxZlP2SjH8RNUSrb+lF7Y0KVaUDnGH2QZ5vAn7ulkiajM9ifuqg==} + resolution: + { + integrity: sha512-MJJKONunHjoTh4kc3dsM1v3C9kGrrxvA3U8PxZlP2SjH8RNUSrb+lF7Y0KVaUDnGH2QZ5vAn7ulkiajM9ifuqg==, + } dependencies: '@types/hast': 2.3.4 hast-util-from-parse5: 7.1.0 @@ -16654,7 +22498,10 @@ packages: dev: false /rehype-remark@9.1.2: - resolution: {integrity: sha512-c0fG3/CrJ95zAQ07xqHSkdpZybwdsY7X5dNWvgL2XqLKZuqmG3+vk6kP/4miCnp+R+x/0uKKRSpfXb9aGR8Z5w==} + resolution: + { + integrity: sha512-c0fG3/CrJ95zAQ07xqHSkdpZybwdsY7X5dNWvgL2XqLKZuqmG3+vk6kP/4miCnp+R+x/0uKKRSpfXb9aGR8Z5w==, + } dependencies: '@types/hast': 2.3.4 '@types/mdast': 3.0.11 @@ -16663,7 +22510,10 @@ packages: dev: false /remark-gfm@1.0.0: - resolution: {integrity: sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==} + resolution: + { + integrity: sha512-KfexHJCiqvrdBZVbQ6RopMZGwaXz6wFJEfByIuEwGf0arvITHjiKKZ1dpXujjH9KZdm1//XJQwgfnJ3lmXaDPA==, + } dependencies: mdast-util-gfm: 0.1.2 micromark-extension-gfm: 0.3.3 @@ -16672,7 +22522,10 @@ packages: dev: false /remark-gfm@3.0.1: - resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} + resolution: + { + integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==, + } dependencies: '@types/mdast': 3.0.11 mdast-util-gfm: 2.0.2 @@ -16683,7 +22536,10 @@ packages: dev: false /remark-license@6.1.0: - resolution: {integrity: sha512-BeAV94QicmKfSmIG6nE4+BFmpQ3lotLAYy5tttdIgtL/dCyYy1dIpejOfs2zX4SVzMxAY4NJJC30tZ4lkSZG8Q==} + resolution: + { + integrity: sha512-BeAV94QicmKfSmIG6nE4+BFmpQ3lotLAYy5tttdIgtL/dCyYy1dIpejOfs2zX4SVzMxAY4NJJC30tZ4lkSZG8Q==, + } dependencies: '@types/mdast': 3.0.11 mdast-util-heading-range: 3.1.0 @@ -16695,7 +22551,10 @@ packages: dev: true /remark-math@4.0.0: - resolution: {integrity: sha512-lH7SoQenXtQrvL0bm+mjZbvOk//YWNuyR+MxV18Qyv8rgFmMEGNuB0TSCQDkoDaiJ40FCnG8lxErc/zhcedYbw==} + resolution: + { + integrity: sha512-lH7SoQenXtQrvL0bm+mjZbvOk//YWNuyR+MxV18Qyv8rgFmMEGNuB0TSCQDkoDaiJ40FCnG8lxErc/zhcedYbw==, + } dependencies: mdast-util-math: 0.1.2 micromark-extension-math: 0.1.2 @@ -16704,7 +22563,10 @@ packages: dev: false /remark-math@5.1.1: - resolution: {integrity: sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==} + resolution: + { + integrity: sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==, + } dependencies: '@types/mdast': 3.0.11 mdast-util-math: 2.0.2 @@ -16713,7 +22575,10 @@ packages: dev: false /remark-parse@10.0.2: - resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} + resolution: + { + integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==, + } dependencies: '@types/mdast': 3.0.11 mdast-util-from-markdown: 1.3.1 @@ -16722,7 +22587,10 @@ packages: - supports-color /remark-parse@9.0.0: - resolution: {integrity: sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==} + resolution: + { + integrity: sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==, + } dependencies: mdast-util-from-markdown: 0.8.5 transitivePeerDependencies: @@ -16730,14 +22598,20 @@ packages: dev: false /remark-stringify@10.0.3: - resolution: {integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==} + resolution: + { + integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==, + } dependencies: '@types/mdast': 3.0.11 mdast-util-to-markdown: 1.5.0 unified: 10.1.2 /remark-toc@8.0.1: - resolution: {integrity: sha512-7he2VOm/cy13zilnOTZcyAoyoolV26ULlon6XyCFU+vG54Z/LWJnwphj/xKIDLOt66QmJUgTyUvLVHi2aAElyg==} + resolution: + { + integrity: sha512-7he2VOm/cy13zilnOTZcyAoyoolV26ULlon6XyCFU+vG54Z/LWJnwphj/xKIDLOt66QmJUgTyUvLVHi2aAElyg==, + } dependencies: '@types/mdast': 3.0.11 mdast-util-toc: 6.1.0 @@ -16745,7 +22619,10 @@ packages: dev: true /remark-usage@10.0.1: - resolution: {integrity: sha512-ZgxtS/bcOKyh6D2M/ldKwtaYlW+f8uvrYH5HUu4Has013H1qY0Qg6wyeHPQ1xsJCu8LG1Jx3Cj0ZsfIaOkhW8A==} + resolution: + { + integrity: sha512-ZgxtS/bcOKyh6D2M/ldKwtaYlW+f8uvrYH5HUu4Has013H1qY0Qg6wyeHPQ1xsJCu8LG1Jx3Cj0ZsfIaOkhW8A==, + } dependencies: '@babel/core': 7.20.5 '@types/mdast': 3.0.11 @@ -16764,7 +22641,10 @@ packages: dev: true /remark@14.0.2: - resolution: {integrity: sha512-A3ARm2V4BgiRXaUo5K0dRvJ1lbogrbXnhkJRmD0yw092/Yl0kOCZt1k9ZeElEwkZsWGsMumz6qL5MfNJH9nOBA==} + resolution: + { + integrity: sha512-A3ARm2V4BgiRXaUo5K0dRvJ1lbogrbXnhkJRmD0yw092/Yl0kOCZt1k9ZeElEwkZsWGsMumz6qL5MfNJH9nOBA==, + } dependencies: '@types/mdast': 3.0.11 remark-parse: 10.0.2 @@ -16775,89 +22655,143 @@ packages: dev: true /remove-trailing-separator@1.1.0: - resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + resolution: + { + integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==, + } dev: false /repeat-element@1.1.4: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==, + } + engines: { node: '>=0.10.0' } dev: false /repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, + } + engines: { node: '>=0.10' } dev: false /request-progress@3.0.0: - resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} + resolution: + { + integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==, + } dependencies: throttleit: 1.0.0 dev: true /require-directory@2.1.1: - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, + } + engines: { node: '>=0.10.0' } /require-from-string@2.0.2: - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, + } + engines: { node: '>=0.10.0' } dev: true /requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + resolution: + { + integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, + } dev: true /requizzle@0.2.4: - resolution: {integrity: sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==} + resolution: + { + integrity: sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==, + } dependencies: lodash: 4.17.21 dev: true /resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + resolution: + { + integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==, + } dev: true /resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, + } + engines: { node: '>=8' } dependencies: resolve-from: 5.0.0 dev: true /resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, + } + engines: { node: '>=4' } /resolve-from@5.0.0: - resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, + } + engines: { node: '>=8' } /resolve-global@1.0.0: - resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==, + } + engines: { node: '>=8' } dependencies: global-dirs: 0.1.1 dev: true /resolve-url@0.2.1: - resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + resolution: + { + integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==, + } deprecated: https://github.com/lydell/resolve-url#deprecated dev: false /resolve.exports@1.1.0: - resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==, + } + engines: { node: '>=10' } /resolve.exports@2.0.0: - resolution: {integrity: sha512-6K/gDlqgQscOlg9fSRpWstA8sYe8rbELsSTNpx+3kTrsVCzvSl0zIvRErM7fdl9ERWDsKnrLnwB+Ne89918XOg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-6K/gDlqgQscOlg9fSRpWstA8sYe8rbELsSTNpx+3kTrsVCzvSl0zIvRErM7fdl9ERWDsKnrLnwB+Ne89918XOg==, + } + engines: { node: '>=10' } /resolve@1.1.7: - resolution: {integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==} + resolution: + { + integrity: sha512-9znBF0vBcaSN3W2j7wKvdERPwqTxSpCq+if5C0WoTCyV9n24rua28jeuQ2pL/HOf+yUe/Mef+H/5p60K0Id3bg==, + } dev: false /resolve@1.22.1: - resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} + resolution: + { + integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==, + } hasBin: true dependencies: is-core-module: 2.11.0 @@ -16865,7 +22799,10 @@ packages: supports-preserve-symlinks-flag: 1.0.0 /resolve@2.0.0-next.4: - resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} + resolution: + { + integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==, + } hasBin: true dependencies: is-core-module: 2.11.0 @@ -16874,40 +22811,61 @@ packages: dev: true /responselike@1.0.2: - resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} + resolution: + { + integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==, + } dependencies: lowercase-keys: 1.0.1 dev: true /responselike@2.0.1: - resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + resolution: + { + integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==, + } dependencies: lowercase-keys: 2.0.0 dev: true /restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, + } + engines: { node: '>=8' } dependencies: onetime: 5.1.2 signal-exit: 3.0.7 /restructure@0.5.4: - resolution: {integrity: sha512-wgNbkrlRpj0NarhUyiCfOXlu8DybDIYRV7MOieKGOl16N7NmAkjTtPhn2F4CBOsyRL8m6RWZLSzjJVVPAkJuiw==} + resolution: + { + integrity: sha512-wgNbkrlRpj0NarhUyiCfOXlu8DybDIYRV7MOieKGOl16N7NmAkjTtPhn2F4CBOsyRL8m6RWZLSzjJVVPAkJuiw==, + } dependencies: browserify-optional: 1.0.1 dev: false /restructure@3.0.0: - resolution: {integrity: sha512-Xj8/MEIhhfj9X2rmD9iJ4Gga9EFqVlpMj3vfLnV2r/Mh5jRMryNV+6lWh9GdJtDBcBSPIqzRdfBQ3wDtNFv/uw==} + resolution: + { + integrity: sha512-Xj8/MEIhhfj9X2rmD9iJ4Gga9EFqVlpMj3vfLnV2r/Mh5jRMryNV+6lWh9GdJtDBcBSPIqzRdfBQ3wDtNFv/uw==, + } dev: false /ret@0.1.15: - resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==, + } + engines: { node: '>=0.12' } /retext-english@4.1.0: - resolution: {integrity: sha512-Pky2idjvgkzfodO0GH9X4IU8LX/d4ULTnLf7S1WsBRlSCh/JdTFPafXZstJqZehtQWNHrgoCqVOiGugsNFYvIQ==} + resolution: + { + integrity: sha512-Pky2idjvgkzfodO0GH9X4IU8LX/d4ULTnLf7S1WsBRlSCh/JdTFPafXZstJqZehtQWNHrgoCqVOiGugsNFYvIQ==, + } dependencies: '@types/nlcst': 1.0.0 parse-english: 5.0.0 @@ -16916,7 +22874,10 @@ packages: dev: false /retext-stringify@3.1.0: - resolution: {integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==} + resolution: + { + integrity: sha512-767TLOaoXFXyOnjx/EggXlb37ZD2u4P1n0GJqVdpipqACsQP+20W+BNpMYrlJkq7hxffnFk+jc6mAK9qrbuB8w==, + } dependencies: '@types/nlcst': 1.0.0 nlcst-to-string: 3.1.1 @@ -16924,98 +22885,152 @@ packages: dev: false /reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, + } + engines: { iojs: '>=1.0.0', node: '>=0.10.0' } /rfdc@1.3.0: - resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} + resolution: + { + integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==, + } dev: true /rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + resolution: + { + integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==, + } hasBin: true dependencies: glob: 7.2.3 dev: true /rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, + } hasBin: true dependencies: glob: 7.2.3 /rollup-pluginutils@2.8.2: - resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==} + resolution: + { + integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==, + } dependencies: estree-walker: 0.6.1 dev: true /rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, + } + engines: { node: '>=10.0.0' } hasBin: true optionalDependencies: fsevents: 2.3.2 dev: true /rollup@3.29.2: - resolution: {integrity: sha512-CJouHoZ27v6siztc21eEQGo0kIcE5D1gVPA571ez0mMYb25LGYGKnVNXpEj5MGlepmDWGXNjDB5q7uNiPHC11A==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} + resolution: + { + integrity: sha512-CJouHoZ27v6siztc21eEQGo0kIcE5D1gVPA571ez0mMYb25LGYGKnVNXpEj5MGlepmDWGXNjDB5q7uNiPHC11A==, + } + engines: { node: '>=14.18.0', npm: '>=8.0.0' } hasBin: true optionalDependencies: fsevents: 2.3.2 /rrweb-cssom@0.6.0: - resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} + resolution: + { + integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==, + } dev: true /rsvp@4.8.5: - resolution: {integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==} - engines: {node: 6.* || >= 7.*} + resolution: + { + integrity: sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==, + } + engines: { node: 6.* || >= 7.* } dev: false /run-async@2.4.1: - resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==, + } + engines: { node: '>=0.12.0' } dev: true /run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, + } dependencies: queue-microtask: 1.2.3 /rxjs@6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} - engines: {npm: '>=2.0.0'} + resolution: + { + integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==, + } + engines: { npm: '>=2.0.0' } dependencies: tslib: 1.14.1 /rxjs@7.8.0: - resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} + resolution: + { + integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==, + } dependencies: tslib: 2.6.2 dev: true /rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + resolution: + { + integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, + } dependencies: tslib: 2.6.2 /sade@1.8.1: - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==, + } + engines: { node: '>=6' } dependencies: mri: 1.2.0 /safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + resolution: + { + integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, + } dev: true /safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, + } /safe-regex-test@1.0.0: - resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} + resolution: + { + integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, + } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.0 @@ -17023,23 +23038,35 @@ packages: dev: true /safe-regex@1.1.0: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + resolution: + { + integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==, + } dependencies: ret: 0.1.15 dev: false /safe-regex@2.1.1: - resolution: {integrity: sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==} + resolution: + { + integrity: sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==, + } dependencies: regexp-tree: 0.1.24 dev: true /safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, + } dev: true /sander@0.5.1: - resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} + resolution: + { + integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==, + } dependencies: es6-promise: 3.3.1 graceful-fs: 4.2.11 @@ -17048,8 +23075,11 @@ packages: dev: true /sane@4.1.0: - resolution: {integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==} - engines: {node: 6.* || 8.* || >= 10.*} + resolution: + { + integrity: sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==, + } + engines: { node: 6.* || 8.* || >= 10.* } deprecated: some dependency vulnerabilities fixed, support for node < 10 dropped, and newer ECMAScript syntax/features added hasBin: true dependencies: @@ -17067,27 +23097,39 @@ packages: dev: false /saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + resolution: + { + integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==, + } + engines: { node: '>=v12.22.7' } dependencies: xmlchars: 2.2.0 dev: true /scheduler@0.17.0: - resolution: {integrity: sha512-7rro8Io3tnCPuY4la/NuI5F2yfESpnfZyT6TtkXnSWVkcu0BCDJ+8gk5ozUaFaxpIyNuWAPXrH0yFcSi28fnDA==} + resolution: + { + integrity: sha512-7rro8Io3tnCPuY4la/NuI5F2yfESpnfZyT6TtkXnSWVkcu0BCDJ+8gk5ozUaFaxpIyNuWAPXrH0yFcSi28fnDA==, + } dependencies: loose-envify: 1.4.0 object-assign: 4.1.1 dev: false /scheduler@0.23.0: - resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + resolution: + { + integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, + } dependencies: loose-envify: 1.4.0 /schema-utils@3.2.0: - resolution: {integrity: sha512-0zTyLGyDJYd/MBxG1AhJkKa6fpEBds4OQO2ut0w7OYG+ZGhGea09lijvzsqegYSik88zc7cUtIlnnO+/BvD6gQ==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-0zTyLGyDJYd/MBxG1AhJkKa6fpEBds4OQO2ut0w7OYG+ZGhGea09lijvzsqegYSik88zc7cUtIlnnO+/BvD6gQ==, + } + engines: { node: '>= 10.13.0' } dependencies: '@types/json-schema': 7.0.12 ajv: 6.12.6 @@ -17095,8 +23137,11 @@ packages: dev: true /schema-utils@4.0.0: - resolution: {integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==, + } + engines: { node: '>= 12.13.0' } dependencies: '@types/json-schema': 7.0.12 ajv: 8.12.0 @@ -17105,7 +23150,10 @@ packages: dev: true /scslre@0.1.6: - resolution: {integrity: sha512-JORxVRlQTfjvlOAaiQKebgFElyAm5/W8b50lgaZ0OkEnKnagJW2ufDh3xRfU75UD9z3FGIu1gL1IyR3Poa6Qmw==} + resolution: + { + integrity: sha512-JORxVRlQTfjvlOAaiQKebgFElyAm5/W8b50lgaZ0OkEnKnagJW2ufDh3xRfU75UD9z3FGIu1gL1IyR3Poa6Qmw==, + } dependencies: refa: 0.9.1 regexp-ast-analysis: 0.2.4 @@ -17113,91 +23161,139 @@ packages: dev: true /secure-compare@3.0.1: - resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} + resolution: + { + integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==, + } dev: true /semver-diff@3.1.1: - resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==, + } + engines: { node: '>=8' } dependencies: semver: 6.3.1 dev: true /semver-regex@4.0.5: - resolution: {integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==, + } + engines: { node: '>=12' } dev: true /semver-truncate@2.0.0: - resolution: {integrity: sha512-Rh266MLDYNeML5h90ttdMwfXe1+Nc4LAWd9X1KdJe8pPHP4kFmvLZALtsMNHNdvTyQygbEC0D59sIz47DIaq8w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Rh266MLDYNeML5h90ttdMwfXe1+Nc4LAWd9X1KdJe8pPHP4kFmvLZALtsMNHNdvTyQygbEC0D59sIz47DIaq8w==, + } + engines: { node: '>=8' } dependencies: semver: 6.3.1 dev: true /semver@5.7.1: - resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + resolution: + { + integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==, + } hasBin: true /semver@6.1.1: - resolution: {integrity: sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==} + resolution: + { + integrity: sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==, + } hasBin: true dev: true /semver@6.3.0: - resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + resolution: + { + integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==, + } hasBin: true /semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + resolution: + { + integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, + } hasBin: true /semver@7.3.4: - resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==, + } + engines: { node: '>=10' } hasBin: true dependencies: lru-cache: 6.0.0 dev: false /semver@7.3.8: - resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==, + } + engines: { node: '>=10' } hasBin: true dependencies: lru-cache: 6.0.0 dev: true /semver@7.5.3: - resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==, + } + engines: { node: '>=10' } hasBin: true dependencies: lru-cache: 6.0.0 /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, + } + engines: { node: '>=10' } hasBin: true dependencies: lru-cache: 6.0.0 /serialize-javascript@6.0.1: - resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} + resolution: + { + integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==, + } dependencies: randombytes: 2.1.0 dev: true /set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + resolution: + { + integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, + } dev: true /set-cookie-parser@2.6.0: - resolution: {integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==} + resolution: + { + integrity: sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==, + } /set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==, + } + engines: { node: '>=0.10.0' } dependencies: extend-shallow: 2.0.1 is-extendable: 0.1.1 @@ -17206,38 +23302,59 @@ packages: dev: false /setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + resolution: + { + integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, + } dev: true /shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==, + } + engines: { node: '>=8' } dependencies: kind-of: 6.0.3 dev: true /shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, + } + engines: { node: '>=0.10.0' } dependencies: shebang-regex: 1.0.0 /shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + } + engines: { node: '>=8' } dependencies: shebang-regex: 3.0.0 /shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, + } + engines: { node: '>=0.10.0' } /shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, + } + engines: { node: '>=8' } /shiki@0.14.1: - resolution: {integrity: sha512-+Jz4nBkCBe0mEDqo1eKRcCdjRtrCjozmcbTUjbPTX7OOJfEbTZzlUWlZtGe3Gb5oV1/jnojhG//YZc3rs9zSEw==} + resolution: + { + integrity: sha512-+Jz4nBkCBe0mEDqo1eKRcCdjRtrCjozmcbTUjbPTX7OOJfEbTZzlUWlZtGe3Gb5oV1/jnojhG//YZc3rs9zSEw==, + } dependencies: ansi-sequence-parser: 1.1.0 jsonc-parser: 3.2.0 @@ -17245,7 +23362,10 @@ packages: vscode-textmate: 8.0.0 /side-channel@1.0.4: - resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + resolution: + { + integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, + } dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.0 @@ -17253,36 +23373,54 @@ packages: dev: true /siginfo@2.0.0: - resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + resolution: + { + integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==, + } dev: true /signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, + } /similarity@1.2.1: - resolution: {integrity: sha512-lMOpWVaWrTnyL+tkvDs8oGV/KAUBQ3wfbZtdiwDcC+KYGlwO8kgtiyag1B6akAjALDMwn5rN5YHHei1hr4X7nw==} + resolution: + { + integrity: sha512-lMOpWVaWrTnyL+tkvDs8oGV/KAUBQ3wfbZtdiwDcC+KYGlwO8kgtiyag1B6akAjALDMwn5rN5YHHei1hr4X7nw==, + } hasBin: true dependencies: levenshtein-edit-distance: 2.0.5 dev: false /simple-swizzle@0.2.2: - resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + resolution: + { + integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==, + } dependencies: is-arrayish: 0.3.2 dev: false /sirv@2.0.2: - resolution: {integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==, + } + engines: { node: '>= 10' } dependencies: '@polka/url': 1.0.0-next.21 mrmime: 1.0.1 totalist: 3.0.0 /sirv@2.0.3: - resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==, + } + engines: { node: '>= 10' } dependencies: '@polka/url': 1.0.0-next.21 mrmime: 1.0.1 @@ -17290,21 +23428,33 @@ packages: dev: true /sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + resolution: + { + integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, + } dev: true /slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, + } + engines: { node: '>=8' } /slash@4.0.0: - resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==, + } + engines: { node: '>=12' } dev: true /slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==, + } + engines: { node: '>=8' } dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 @@ -17312,8 +23462,11 @@ packages: dev: true /slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==, + } + engines: { node: '>=10' } dependencies: ansi-styles: 4.3.0 astral-regex: 2.0.0 @@ -17321,15 +23474,21 @@ packages: dev: true /snake-case@3.0.4: - resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==} + resolution: + { + integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==, + } dependencies: dot-case: 3.0.4 tslib: 2.6.2 dev: true /snapdragon-node@2.1.1: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==, + } + engines: { node: '>=0.10.0' } dependencies: define-property: 1.0.0 isobject: 3.0.1 @@ -17337,15 +23496,21 @@ packages: dev: false /snapdragon-util@3.0.1: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==, + } + engines: { node: '>=0.10.0' } dependencies: kind-of: 3.2.2 dev: false /snapdragon@0.8.2: - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==, + } + engines: { node: '>=0.10.0' } dependencies: base: 0.11.2 debug: 2.6.9 @@ -17360,7 +23525,10 @@ packages: dev: false /sorcery@0.11.0: - resolution: {integrity: sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==} + resolution: + { + integrity: sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==, + } hasBin: true dependencies: '@jridgewell/sourcemap-codec': 1.4.14 @@ -17370,25 +23538,37 @@ packages: dev: true /sort-keys-length@1.0.1: - resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==, + } + engines: { node: '>=0.10.0' } dependencies: sort-keys: 1.1.2 dev: true /sort-keys@1.1.2: - resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==, + } + engines: { node: '>=0.10.0' } dependencies: is-plain-obj: 1.1.0 dev: true /source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, + } + engines: { node: '>=0.10.0' } /source-map-resolve@0.5.3: - resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + resolution: + { + integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==, + } deprecated: See https://github.com/lydell/source-map-resolve#deprecated dependencies: atob: 2.1.2 @@ -17399,31 +23579,46 @@ packages: dev: false /source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + resolution: + { + integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==, + } dependencies: buffer-from: 1.1.2 source-map: 0.6.1 /source-map-support@0.5.19: - resolution: {integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==} + resolution: + { + integrity: sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==, + } dependencies: buffer-from: 1.1.2 source-map: 0.6.1 /source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + resolution: + { + integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, + } dependencies: buffer-from: 1.1.2 source-map: 0.6.1 /source-map-url@0.4.1: - resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + resolution: + { + integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==, + } deprecated: See https://github.com/lydell/source-map-url#deprecated dev: false /source-map@0.1.43: - resolution: {integrity: sha512-VtCvB9SIQhk3aF6h+N85EaqIaBFIAfZ9Cu+NJHHVvc8BbEcnvDcFw6sqQ2dQrT6SlOrZq3tIvyD9+EGq/lJryQ==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-VtCvB9SIQhk3aF6h+N85EaqIaBFIAfZ9Cu+NJHHVvc8BbEcnvDcFw6sqQ2dQrT6SlOrZq3tIvyD9+EGq/lJryQ==, + } + engines: { node: '>=0.8.0' } requiresBuild: true dependencies: amdefine: 1.0.1 @@ -17431,89 +23626,140 @@ packages: optional: true /source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==, + } + engines: { node: '>=0.10.0' } dev: false /source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, + } + engines: { node: '>=0.10.0' } /source-map@0.7.3: - resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==, + } + engines: { node: '>= 8' } dev: true /source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==, + } + engines: { node: '>= 8' } dev: true /sourcemap-codec@1.4.8: - resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + resolution: + { + integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, + } deprecated: Please use @jridgewell/sourcemap-codec instead dev: true /space-separated-tokens@1.1.5: - resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + resolution: + { + integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==, + } dev: false /space-separated-tokens@2.0.2: - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + resolution: + { + integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==, + } dev: false /spdx-correct@3.1.1: - resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} + resolution: + { + integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==, + } dependencies: spdx-expression-parse: 3.0.1 spdx-license-ids: 3.0.12 dev: true /spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + resolution: + { + integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==, + } dev: true /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + resolution: + { + integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, + } dependencies: spdx-exceptions: 2.3.0 spdx-license-ids: 3.0.12 dev: true /spdx-license-ids@3.0.12: - resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} + resolution: + { + integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==, + } dev: true /spdx-license-list@6.6.0: - resolution: {integrity: sha512-vLwdf9AWgdJQmG8cai2HKfkInFsliKaCCOwXmdVonClIhdURTX61KdDOoXC1qcQ7gDaZj+CUTcrMJeAdnCtrKA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-vLwdf9AWgdJQmG8cai2HKfkInFsliKaCCOwXmdVonClIhdURTX61KdDOoXC1qcQ7gDaZj+CUTcrMJeAdnCtrKA==, + } + engines: { node: '>=8' } dev: true /split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==, + } + engines: { node: '>=0.10.0' } dependencies: extend-shallow: 3.0.2 dev: false /split2@3.2.2: - resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + resolution: + { + integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==, + } dependencies: readable-stream: 3.6.2 dev: true /split@1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + resolution: + { + integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==, + } dependencies: through: 2.3.8 dev: true /sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + resolution: + { + integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, + } /sshpk@1.17.0: - resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==, + } + engines: { node: '>=0.10.0' } hasBin: true dependencies: asn1: 0.2.6 @@ -17528,61 +23774,91 @@ packages: dev: true /stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, + } + engines: { node: '>=10' } dependencies: escape-string-regexp: 2.0.0 /stackback@0.0.2: - resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + resolution: + { + integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==, + } dev: true /static-extend@0.1.2: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==, + } + engines: { node: '>=0.10.0' } dependencies: define-property: 0.2.5 object-copy: 0.1.0 dev: false /statuses@2.0.1: - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, + } + engines: { node: '>= 0.8' } dev: true /std-env@3.3.2: - resolution: {integrity: sha512-uUZI65yrV2Qva5gqE0+A7uVAvO40iPo6jGhs7s8keRfHCmtg+uB2X6EiLGCI9IgL1J17xGhvoOqSz79lzICPTA==} + resolution: + { + integrity: sha512-uUZI65yrV2Qva5gqE0+A7uVAvO40iPo6jGhs7s8keRfHCmtg+uB2X6EiLGCI9IgL1J17xGhvoOqSz79lzICPTA==, + } dev: true /stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==, + } + engines: { node: '>= 0.4' } dependencies: internal-slot: 1.0.5 dev: true /streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, + } + engines: { node: '>=10.0.0' } /string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, + } + engines: { node: '>=10' } dependencies: char-regex: 1.0.2 strip-ansi: 6.0.1 /string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, + } + engines: { node: '>=8' } dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 /string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, + } + engines: { node: '>=12' } dependencies: eastasianwidth: 0.2.0 emoji-regex: 9.2.2 @@ -17590,7 +23866,10 @@ packages: dev: false /string.prototype.matchall@4.0.8: - resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} + resolution: + { + integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==, + } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -17603,8 +23882,11 @@ packages: dev: true /string.prototype.trim@1.2.7: - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==, + } + engines: { node: '>= 0.4' } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -17612,7 +23894,10 @@ packages: dev: true /string.prototype.trimend@1.0.6: - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} + resolution: + { + integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, + } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -17620,7 +23905,10 @@ packages: dev: true /string.prototype.trimstart@1.0.6: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} + resolution: + { + integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, + } dependencies: call-bind: 1.0.2 define-properties: 1.2.0 @@ -17628,95 +23916,146 @@ packages: dev: true /string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + resolution: + { + integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, + } dependencies: safe-buffer: 5.1.2 dev: true /string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, + } dependencies: safe-buffer: 5.2.1 /stringify-entities@4.0.3: - resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==} + resolution: + { + integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==, + } dependencies: character-entities-html4: 2.1.0 character-entities-legacy: 3.0.0 dev: false /strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, + } + engines: { node: '>=8' } dependencies: ansi-regex: 5.0.1 /strip-ansi@7.0.1: - resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==, + } + engines: { node: '>=12' } dependencies: ansi-regex: 6.0.1 dev: false /strip-bom@2.0.0: - resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==, + } + engines: { node: '>=0.10.0' } dependencies: is-utf8: 0.2.1 dev: false /strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, + } + engines: { node: '>=4' } /strip-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, + } + engines: { node: '>=8' } /strip-eof@1.0.0: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==, + } + engines: { node: '>=0.10.0' } /strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, + } + engines: { node: '>=6' } dev: true /strip-final-newline@3.0.0: - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, + } + engines: { node: '>=12' } dev: false /strip-indent@3.0.0: - resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==, + } + engines: { node: '>=8' } dependencies: min-indent: 1.0.1 dev: true /strip-json-comments@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==, + } + engines: { node: '>=0.10.0' } dev: true /strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, + } + engines: { node: '>=8' } /strip-literal@1.0.1: - resolution: {integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==} + resolution: + { + integrity: sha512-QZTsipNpa2Ppr6v1AmJHESqJ3Uz247MUS0OjrnnZjFAvEoWqxuyFuXn2xLgMtRnijJShAa1HL0gtJyUs7u7n3Q==, + } dependencies: acorn: 8.8.2 dev: true /strip-outer@2.0.0: - resolution: {integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true /strong-log-transformer@2.1.0: - resolution: {integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==, + } + engines: { node: '>=4' } hasBin: true dependencies: duplexer: 0.1.2 @@ -17724,16 +24063,22 @@ packages: through: 2.3.8 /strtok3@7.0.0: - resolution: {integrity: sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==, + } + engines: { node: '>=14.16' } dependencies: '@tokenizer/token': 0.3.0 peek-readable: 5.0.0 dev: true /styled-jsx@5.1.1(@babel/core@7.20.5)(react@18.2.0): - resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, + } + engines: { node: '>= 12.0.0' } peerDependencies: '@babel/core': '*' babel-plugin-macros: '*' @@ -17749,38 +24094,59 @@ packages: react: 18.2.0 /stylis@4.2.0: - resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + resolution: + { + integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==, + } dev: false /supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + } + engines: { node: '>=4' } dependencies: has-flag: 3.0.0 /supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, + } + engines: { node: '>=8' } dependencies: has-flag: 4.0.0 /supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, + } + engines: { node: '>=10' } dependencies: has-flag: 4.0.0 /supports-color@9.3.1: - resolution: {integrity: sha512-knBY82pjmnIzK3NifMo3RxEIRD9E0kIzV4BKcyTZ9+9kWgLMxd4PrsTSMoFQUabgRBbF8KOLRDCyKgNV+iK44Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-knBY82pjmnIzK3NifMo3RxEIRD9E0kIzV4BKcyTZ9+9kWgLMxd4PrsTSMoFQUabgRBbF8KOLRDCyKgNV+iK44Q==, + } + engines: { node: '>=12' } dev: false /supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, + } + engines: { node: '>= 0.4' } /svelte-check@3.1.4(@babel/core@7.20.5)(postcss@8.4.19)(svelte@3.57.0): - resolution: {integrity: sha512-25Lb46ZS4IK/XpBMe4IBMrtYf23V8alqBX+szXoccb7uM0D2Wqq5rMRzYBONZnFVuU1bQG3R50lyIT5eRewv2g==} + resolution: + { + integrity: sha512-25Lb46ZS4IK/XpBMe4IBMrtYf23V8alqBX+szXoccb7uM0D2Wqq5rMRzYBONZnFVuU1bQG3R50lyIT5eRewv2g==, + } hasBin: true peerDependencies: svelte: ^3.55.0 @@ -17807,16 +24173,22 @@ packages: dev: true /svelte-hmr@0.15.1(svelte@3.57.0): - resolution: {integrity: sha512-BiKB4RZ8YSwRKCNVdNxK/GfY+r4Kjgp9jCLEy0DuqAKfmQtpL38cQK3afdpjw4sqSs4PLi3jIPJIFp259NkZtA==} - engines: {node: ^12.20 || ^14.13.1 || >= 16} + resolution: + { + integrity: sha512-BiKB4RZ8YSwRKCNVdNxK/GfY+r4Kjgp9jCLEy0DuqAKfmQtpL38cQK3afdpjw4sqSs4PLi3jIPJIFp259NkZtA==, + } + engines: { node: ^12.20 || ^14.13.1 || >= 16 } peerDependencies: svelte: '>=3.19.0' dependencies: svelte: 3.57.0 /svelte-preprocess@5.0.3(@babel/core@7.20.5)(postcss@8.4.19)(svelte@3.57.0)(typescript@4.9.5): - resolution: {integrity: sha512-GrHF1rusdJVbOZOwgPWtpqmaexkydznKzy5qIC2FabgpFyKN57bjMUUUqPRfbBXK5igiEWn1uO/DXsa2vJ5VHA==} - engines: {node: '>= 14.10.0'} + resolution: + { + integrity: sha512-GrHF1rusdJVbOZOwgPWtpqmaexkydznKzy5qIC2FabgpFyKN57bjMUUUqPRfbBXK5igiEWn1uO/DXsa2vJ5VHA==, + } + engines: { node: '>= 14.10.0' } requiresBuild: true peerDependencies: '@babel/core': ^7.10.2 @@ -17864,8 +24236,11 @@ packages: dev: true /svelte-preprocess@5.0.3(@babel/core@7.20.5)(postcss@8.4.19)(svelte@3.57.0)(typescript@5.2.2): - resolution: {integrity: sha512-GrHF1rusdJVbOZOwgPWtpqmaexkydznKzy5qIC2FabgpFyKN57bjMUUUqPRfbBXK5igiEWn1uO/DXsa2vJ5VHA==} - engines: {node: '>= 14.10.0'} + resolution: + { + integrity: sha512-GrHF1rusdJVbOZOwgPWtpqmaexkydznKzy5qIC2FabgpFyKN57bjMUUUqPRfbBXK5igiEWn1uO/DXsa2vJ5VHA==, + } + engines: { node: '>= 14.10.0' } requiresBuild: true peerDependencies: '@babel/core': ^7.10.2 @@ -17913,20 +24288,32 @@ packages: dev: true /svelte@3.57.0: - resolution: {integrity: sha512-WMXEvF+RtAaclw0t3bPDTUe19pplMlfyKDsixbHQYgCWi9+O9VN0kXU1OppzrB9gPAvz4NALuoca2LfW2bOjTQ==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-WMXEvF+RtAaclw0t3bPDTUe19pplMlfyKDsixbHQYgCWi9+O9VN0kXU1OppzrB9gPAvz4NALuoca2LfW2bOjTQ==, + } + engines: { node: '>= 8' } /svg-arc-to-cubic-bezier@3.2.0: - resolution: {integrity: sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g==} + resolution: + { + integrity: sha512-djbJ/vZKZO+gPoSDThGNpKDO+o+bAeA4XQKovvkNCqnIS2t+S4qnLAGQhyyrulhCFRl1WWzAp0wUDV8PpTVU3g==, + } dev: false /svg-parser@2.0.4: - resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} + resolution: + { + integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==, + } dev: true /svgo@3.0.2: - resolution: {integrity: sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ==, + } + engines: { node: '>=14.0.0' } hasBin: true dependencies: '@trysound/sax': 0.2.0 @@ -17938,8 +24325,11 @@ packages: dev: true /swr@2.0.3(react@18.2.0): - resolution: {integrity: sha512-sGvQDok/AHEWTPfhUWXEHBVEXmgGnuahyhmRQbjl9XBYxT/MSlAzvXEKQpyM++bMPaI52vcWS2HiKNaW7+9OFw==} - engines: {pnpm: '7'} + resolution: + { + integrity: sha512-sGvQDok/AHEWTPfhUWXEHBVEXmgGnuahyhmRQbjl9XBYxT/MSlAzvXEKQpyM++bMPaI52vcWS2HiKNaW7+9OFw==, + } + engines: { pnpm: '7' } peerDependencies: react: ^16.11.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -17948,12 +24338,18 @@ packages: dev: false /symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + resolution: + { + integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, + } dev: true /sync-fetch@0.4.2: - resolution: {integrity: sha512-vilDD6yTGwyUjm7/W5WUUOCw1GH1aV591zC21XhbV6MJNZqfZcNMs9DVPHzy1UAmQ2GAg6S03F5TQ3paegKSdg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-vilDD6yTGwyUjm7/W5WUUOCw1GH1aV591zC21XhbV6MJNZqfZcNMs9DVPHzy1UAmQ2GAg6S03F5TQ3paegKSdg==, + } + engines: { node: '>=14' } dependencies: buffer: 5.7.1 node-fetch: 2.6.9 @@ -17962,16 +24358,22 @@ packages: dev: false /synckit@0.8.5: - resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==, + } + engines: { node: ^14.18.0 || >=16.0.0 } dependencies: '@pkgr/utils': 2.3.1 tslib: 2.6.2 dev: true /tailwindcss@3.2.7(postcss@8.4.19)(ts-node@10.9.1): - resolution: {integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==} - engines: {node: '>=12.13.0'} + resolution: + { + integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==, + } + engines: { node: '>=12.13.0' } hasBin: true peerDependencies: postcss: ^8.0.9 @@ -18004,13 +24406,19 @@ packages: dev: true /tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, + } + engines: { node: '>=6' } dev: true /tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==, + } + engines: { node: '>=6' } dependencies: bl: 4.1.0 end-of-stream: 1.4.4 @@ -18019,8 +24427,11 @@ packages: readable-stream: 3.6.0 /tar@6.1.11: - resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==, + } + engines: { node: '>= 10' } dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -18031,8 +24442,11 @@ packages: dev: true /tar@6.2.0: - resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==, + } + engines: { node: '>=10' } dependencies: chownr: 2.0.0 fs-minipass: 2.1.0 @@ -18043,8 +24457,11 @@ packages: dev: true /terser-webpack-plugin@5.3.9(@swc/core@1.3.87)(esbuild@0.19.3)(webpack@5.86.0): - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==, + } + engines: { node: '>= 10.13.0' } peerDependencies: '@swc/core': '*' esbuild: '*' @@ -18069,8 +24486,11 @@ packages: dev: true /terser@5.18.0: - resolution: {integrity: sha512-pdL757Ig5a0I+owA42l6tIuEycRuM7FPY4n62h44mRLRfnOxJkkOHd6i89dOpwZlpF6JXBwaAHF6yWzFrt+QyA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-pdL757Ig5a0I+owA42l6tIuEycRuM7FPY4n62h44mRLRfnOxJkkOHd6i89dOpwZlpF6JXBwaAHF6yWzFrt+QyA==, + } + engines: { node: '>=10' } hasBin: true dependencies: '@jridgewell/source-map': 0.3.3 @@ -18080,136 +24500,211 @@ packages: dev: true /test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, + } + engines: { node: '>=8' } dependencies: '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 /text-extensions@1.9.0: - resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==, + } + engines: { node: '>=0.10' } dev: true /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, + } /throttleit@1.0.0: - resolution: {integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==} + resolution: + { + integrity: sha512-rkTVqu6IjfQ/6+uNuuc3sZek4CEYxTJom3IktzgdSxcZqdARuebbA/f4QmAxMQIxqq9ZLEUkSYqvuk1I6VKq4g==, + } dev: true /through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + resolution: + { + integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==, + } dependencies: readable-stream: 2.3.8 xtend: 4.0.2 dev: true /through2@4.0.2: - resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + resolution: + { + integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==, + } dependencies: readable-stream: 3.6.2 dev: true /through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + } /time-span@4.0.0: - resolution: {integrity: sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g==, + } + engines: { node: '>=10' } dependencies: convert-hrtime: 3.0.0 dev: true /time-zone@1.0.0: - resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==, + } + engines: { node: '>=4' } dev: true /tiny-glob@0.2.9: - resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} + resolution: + { + integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==, + } dependencies: globalyzer: 0.1.0 globrex: 0.1.2 /tiny-inflate@1.0.3: - resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} + resolution: + { + integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==, + } dev: false /tinybench@2.5.1: - resolution: {integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==} + resolution: + { + integrity: sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==, + } dev: true /tinycolor2@1.4.2: - resolution: {integrity: sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==} + resolution: + { + integrity: sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==, + } dev: false /tinypool@0.5.0: - resolution: {integrity: sha512-paHQtnrlS1QZYKF/GnLoOM/DN9fqaGOFbCbxzAhwniySnzl9Ebk8w73/dd34DAhe/obUbPAOldTyYXQZxnPBPQ==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-paHQtnrlS1QZYKF/GnLoOM/DN9fqaGOFbCbxzAhwniySnzl9Ebk8w73/dd34DAhe/obUbPAOldTyYXQZxnPBPQ==, + } + engines: { node: '>=14.0.0' } dev: true /tinyspy@2.1.1: - resolution: {integrity: sha512-XPJL2uSzcOyBMky6OFrusqWlzfFrXtE0hPuMgW8A2HmaqrPo4ZQHRN/V0QXN3FSjKxpsbRrFc5LI7KOwBsT1/w==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-XPJL2uSzcOyBMky6OFrusqWlzfFrXtE0hPuMgW8A2HmaqrPo4ZQHRN/V0QXN3FSjKxpsbRrFc5LI7KOwBsT1/w==, + } + engines: { node: '>=14.0.0' } dev: true /tmp-promise@3.0.3: - resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==} + resolution: + { + integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==, + } dependencies: tmp: 0.2.1 dev: false /tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + resolution: + { + integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, + } + engines: { node: '>=0.6.0' } dependencies: os-tmpdir: 1.0.2 dev: true /tmp@0.2.1: - resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} - engines: {node: '>=8.17.0'} + resolution: + { + integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==, + } + engines: { node: '>=8.17.0' } dependencies: rimraf: 3.0.2 /tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + resolution: + { + integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, + } /to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, + } + engines: { node: '>=4' } /to-object-path@0.3.0: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==, + } + engines: { node: '>=0.10.0' } dependencies: kind-of: 3.2.2 dev: false /to-readable-stream@1.0.0: - resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==, + } + engines: { node: '>=6' } dev: true /to-regex-range@2.1.1: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==, + } + engines: { node: '>=0.10.0' } dependencies: is-number: 3.0.0 repeat-string: 1.6.1 dev: false /to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, + } + engines: { node: '>=8.0' } dependencies: is-number: 7.0.0 /to-regex@3.0.2: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==, + } + engines: { node: '>=0.10.0' } dependencies: define-property: 2.0.2 extend-shallow: 3.0.2 @@ -18218,32 +24713,47 @@ packages: dev: false /to-vfile@7.2.4: - resolution: {integrity: sha512-2eQ+rJ2qGbyw3senPI0qjuM7aut8IYXK6AEoOWb+fJx/mQYzviTckm1wDjq91QYHAPBTYzmdJXxMFA6Mk14mdw==} + resolution: + { + integrity: sha512-2eQ+rJ2qGbyw3senPI0qjuM7aut8IYXK6AEoOWb+fJx/mQYzviTckm1wDjq91QYHAPBTYzmdJXxMFA6Mk14mdw==, + } dependencies: is-buffer: 2.0.5 vfile: 5.3.7 dev: true /toidentifier@1.0.1: - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, + } + engines: { node: '>=0.6' } dev: true /token-types@5.0.1: - resolution: {integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==, + } + engines: { node: '>=14.16' } dependencies: '@tokenizer/token': 0.3.0 ieee754: 1.2.1 dev: true /totalist@3.0.0: - resolution: {integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==, + } + engines: { node: '>=6' } /tough-cookie@4.1.2: - resolution: {integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==, + } + engines: { node: '>=6' } dependencies: psl: 1.9.0 punycode: 2.3.0 @@ -18252,8 +24762,11 @@ packages: dev: true /tough-cookie@4.1.3: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==, + } + engines: { node: '>=6' } dependencies: psl: 1.9.0 punycode: 2.3.0 @@ -18262,57 +24775,90 @@ packages: dev: true /tr46@0.0.3: - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + resolution: + { + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, + } /tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==, + } + engines: { node: '>=12' } dependencies: punycode: 2.3.0 dev: true /tr46@4.1.1: - resolution: {integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-2lv/66T7e5yNyhAAC4NaKe5nVavzuGJQVVtRYLyQ2OI8tsJ61PMLlelehb0wi2Hx6+hT/OJUWZcw8MjlSRnxvw==, + } + engines: { node: '>=14' } dependencies: punycode: 2.3.0 dev: true /treeify@1.1.0: - resolution: {integrity: sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==, + } + engines: { node: '>=0.6' } dev: true /trie-prefix-tree@1.5.1: - resolution: {integrity: sha512-Jjvj/dA97wXnabG/NLJUgo4IQMj6vucH+Qxm7of/omfWSmZlPqdRU6Ta4GmQqCZH+n3/iYZUwfvUoEhB0Hs83Q==} + resolution: + { + integrity: sha512-Jjvj/dA97wXnabG/NLJUgo4IQMj6vucH+Qxm7of/omfWSmZlPqdRU6Ta4GmQqCZH+n3/iYZUwfvUoEhB0Hs83Q==, + } dev: false /trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, + } + engines: { node: '>=8' } dev: true /trim-repeated@2.0.0: - resolution: {integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==, + } + engines: { node: '>=12' } dependencies: escape-string-regexp: 5.0.0 dev: true /trim-trailing-lines@2.1.0: - resolution: {integrity: sha512-5UR5Biq4VlVOtzqkm2AZlgvSlDJtME46uV0br0gENbwN4l5+mMKT4b9gJKqWtuL2zAIqajGJGuvbCbcAJUZqBg==} + resolution: + { + integrity: sha512-5UR5Biq4VlVOtzqkm2AZlgvSlDJtME46uV0br0gENbwN4l5+mMKT4b9gJKqWtuL2zAIqajGJGuvbCbcAJUZqBg==, + } dev: false /trough@1.0.5: - resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} + resolution: + { + integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==, + } dev: false /trough@2.1.0: - resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==} + resolution: + { + integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==, + } /ts-jest@29.1.1(@babel/core@7.20.5)(babel-jest@29.4.3)(esbuild@0.19.3)(jest@29.4.3)(typescript@5.2.2): - resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } hasBin: true peerDependencies: '@babel/core': '>=7.0.0-beta.0 <8' @@ -18347,14 +24893,20 @@ packages: dev: true /ts-morph@12.0.0: - resolution: {integrity: sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA==} + resolution: + { + integrity: sha512-VHC8XgU2fFW7yO1f/b3mxKDje1vmyzFXHWzOYmKEkCEwcLjDtbdLgBQviqj4ZwP4MJkQtRo6Ha2I29lq/B+VxA==, + } dependencies: '@ts-morph/common': 0.11.1 code-block-writer: 10.1.1 dev: true /ts-node@10.9.1(@swc/core@1.3.87)(@types/node@18.15.11)(typescript@5.1.6): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + resolution: + { + integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, + } hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -18385,7 +24937,10 @@ packages: yn: 3.1.1 /ts-node@10.9.1(@swc/core@1.3.87)(@types/node@18.15.11)(typescript@5.2.2): - resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + resolution: + { + integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==, + } hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -18416,8 +24971,11 @@ packages: yn: 3.1.1 /ts-node@8.9.1(typescript@4.3.4): - resolution: {integrity: sha512-yrq6ODsxEFTLz0R3BX2myf0WBCSQh9A+py8PBo1dCzWIOcvisbyH6akNKqDHMgXePF2kir5mm5JXJTH3OUJYOQ==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-yrq6ODsxEFTLz0R3BX2myf0WBCSQh9A+py8PBo1dCzWIOcvisbyH6akNKqDHMgXePF2kir5mm5JXJTH3OUJYOQ==, + } + engines: { node: '>=6.0.0' } hasBin: true peerDependencies: typescript: '>=2.7' @@ -18431,12 +24989,18 @@ packages: dev: true /ts-toolbelt@6.15.5: - resolution: {integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==} + resolution: + { + integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==, + } dev: true /tsconfck@2.1.1(typescript@5.2.2): - resolution: {integrity: sha512-ZPCkJBKASZBmBUNqGHmRhdhM8pJYDdOXp4nRgj/O0JwUwsMq50lCDRQP/M5GBNAA0elPrq4gAeu4dkaVCuKWww==} - engines: {node: ^14.13.1 || ^16 || >=18} + resolution: + { + integrity: sha512-ZPCkJBKASZBmBUNqGHmRhdhM8pJYDdOXp4nRgj/O0JwUwsMq50lCDRQP/M5GBNAA0elPrq4gAeu4dkaVCuKWww==, + } + engines: { node: ^14.13.1 || ^16 || >=18 } hasBin: true peerDependencies: typescript: ^4.3.5 || ^5.0.0 @@ -18448,7 +25012,10 @@ packages: dev: true /tsconfig-paths@3.14.2: - resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} + resolution: + { + integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==, + } dependencies: '@types/json5': 0.0.29 json5: 1.0.2 @@ -18457,25 +25024,40 @@ packages: dev: true /tsconfig-paths@4.1.2: - resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==, + } + engines: { node: '>=6' } dependencies: json5: 2.2.3 minimist: 1.2.8 strip-bom: 3.0.0 /tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + resolution: + { + integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, + } /tslib@2.5.0: - resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} + resolution: + { + integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==, + } /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + resolution: + { + integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, + } /tsutils@3.21.0(typescript@5.2.2): - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, + } + engines: { node: '>= 6' } peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: @@ -18484,7 +25066,10 @@ packages: dev: true /tsx@3.12.6: - resolution: {integrity: sha512-q93WgS3lBdHlPgS0h1i+87Pt6n9K/qULIMNYZo07nSeu2z5QE2CellcAZfofVXBo2tQg9av2ZcRMQ2S2i5oadQ==} + resolution: + { + integrity: sha512-q93WgS3lBdHlPgS0h1i+87Pt6n9K/qULIMNYZo07nSeu2z5QE2CellcAZfofVXBo2tQg9av2ZcRMQ2S2i5oadQ==, + } hasBin: true dependencies: '@esbuild-kit/cjs-loader': 2.4.2 @@ -18495,57 +25080,90 @@ packages: dev: true /tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + resolution: + { + integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==, + } dependencies: safe-buffer: 5.2.1 dev: true /tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + resolution: + { + integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==, + } dev: true /type-check@0.3.2: - resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==, + } + engines: { node: '>= 0.8.0' } dependencies: prelude-ls: 1.1.2 dev: true /type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, + } + engines: { node: '>= 0.8.0' } dependencies: prelude-ls: 1.2.1 /type-detect@4.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, + } + engines: { node: '>=4' } /type-fest@0.18.1: - resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==, + } + engines: { node: '>=10' } dev: true /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, + } + engines: { node: '>=10' } /type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, + } + engines: { node: '>=10' } /type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, + } + engines: { node: '>=8' } dev: true /type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, + } + engines: { node: '>=8' } dev: true /typed-array-length@1.0.4: - resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} + resolution: + { + integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, + } dependencies: call-bind: 1.0.2 for-each: 0.3.3 @@ -18553,16 +25171,25 @@ packages: dev: true /typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + resolution: + { + integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==, + } dependencies: is-typedarray: 1.0.0 /typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + resolution: + { + integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==, + } dev: true /typedoc-plugin-markdown@4.0.0-next.3(typedoc@0.23.28): - resolution: {integrity: sha512-Koim98xkXOoY8KPlMNH/cKTfqTEocVEYMa3XZgoPX/DkGp7ioB6nl38p6Snl7rEmhcbHkFktcUoOQLn04Kk3sg==} + resolution: + { + integrity: sha512-Koim98xkXOoY8KPlMNH/cKTfqTEocVEYMa3XZgoPX/DkGp7ioB6nl38p6Snl7rEmhcbHkFktcUoOQLn04Kk3sg==, + } peerDependencies: typedoc: '>=0.23.0' dependencies: @@ -18570,7 +25197,10 @@ packages: dev: true /typedoc-plugin-rename-defaults@0.6.5(typedoc@0.23.28): - resolution: {integrity: sha512-DwkgwRMxgu3UrDR3VUAdnF9jYzM6p7rw6UcVIh4MD7yjEmFDR8WWyOlk6oYgELmRYHxTDx0f0GK6iSgoxSh/Qw==} + resolution: + { + integrity: sha512-DwkgwRMxgu3UrDR3VUAdnF9jYzM6p7rw6UcVIh4MD7yjEmFDR8WWyOlk6oYgELmRYHxTDx0f0GK6iSgoxSh/Qw==, + } peerDependencies: typedoc: 0.22.x || 0.23.x || 0.24.x dependencies: @@ -18578,7 +25208,10 @@ packages: dev: false /typedoc-theme-hierarchy@3.2.0(typedoc@0.23.28): - resolution: {integrity: sha512-NUgwyIFtYRJEi9eOz5lZ1DidD2uEdd0V5mTLFC361doTGdawWPg+ZFlrxsieKZHIasCnBYflq9HrYaM27WGAPA==} + resolution: + { + integrity: sha512-NUgwyIFtYRJEi9eOz5lZ1DidD2uEdd0V5mTLFC361doTGdawWPg+ZFlrxsieKZHIasCnBYflq9HrYaM27WGAPA==, + } peerDependencies: typedoc: ^0.23.6 || ^0.24.0 dependencies: @@ -18587,8 +25220,11 @@ packages: dev: false /typedoc@0.23.28(typescript@5.2.2): - resolution: {integrity: sha512-9x1+hZWTHEQcGoP7qFmlo4unUoVJLB0H/8vfO/7wqTnZxg4kPuji9y3uRzEu0ZKez63OJAUmiGhUrtukC6Uj3w==} - engines: {node: '>= 14.14'} + resolution: + { + integrity: sha512-9x1+hZWTHEQcGoP7qFmlo4unUoVJLB0H/8vfO/7wqTnZxg4kPuji9y3uRzEu0ZKez63OJAUmiGhUrtukC6Uj3w==, + } + engines: { node: '>= 14.14' } hasBin: true peerDependencies: typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x @@ -18600,45 +25236,69 @@ packages: typescript: 5.2.2 /typescript@4.3.4: - resolution: {integrity: sha512-uauPG7XZn9F/mo+7MrsRjyvbxFpzemRjKEZXS4AK83oP2KKOJPvb+9cO/gmnv8arWZvhnjVOXz7B49m1l0e9Ew==} - engines: {node: '>=4.2.0'} + resolution: + { + integrity: sha512-uauPG7XZn9F/mo+7MrsRjyvbxFpzemRjKEZXS4AK83oP2KKOJPvb+9cO/gmnv8arWZvhnjVOXz7B49m1l0e9Ew==, + } + engines: { node: '>=4.2.0' } hasBin: true dev: true /typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} + resolution: + { + integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==, + } + engines: { node: '>=4.2.0' } hasBin: true dev: true /typescript@5.1.6: - resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==} - engines: {node: '>=14.17'} + resolution: + { + integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==, + } + engines: { node: '>=14.17' } hasBin: true /typescript@5.2.2: - resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} - engines: {node: '>=14.17'} + resolution: + { + integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==, + } + engines: { node: '>=14.17' } hasBin: true /uc.micro@1.0.6: - resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} + resolution: + { + integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==, + } dev: true /ufo@1.1.1: - resolution: {integrity: sha512-MvlCc4GHrmZdAllBc0iUDowff36Q9Ndw/UzqmEKyrfSzokTd9ZCy1i+IIk5hrYKkjoYVQyNbrw7/F8XJ2rEwTg==} + resolution: + { + integrity: sha512-MvlCc4GHrmZdAllBc0iUDowff36Q9Ndw/UzqmEKyrfSzokTd9ZCy1i+IIk5hrYKkjoYVQyNbrw7/F8XJ2rEwTg==, + } dev: true /uglify-js@3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==, + } + engines: { node: '>=0.8.0' } hasBin: true requiresBuild: true dev: true optional: true /unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + resolution: + { + integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, + } dependencies: call-bind: 1.0.2 has-bigints: 1.0.2 @@ -18647,68 +25307,104 @@ packages: dev: true /underscore@1.13.6: - resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==} + resolution: + { + integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==, + } dev: true /undici@5.11.0: - resolution: {integrity: sha512-oWjWJHzFet0Ow4YZBkyiJwiK5vWqEYoH7BINzJAJOLedZ++JpAlCbUktW2GQ2DS2FpKmxD/JMtWUUWl1BtghGw==} - engines: {node: '>=12.18'} + resolution: + { + integrity: sha512-oWjWJHzFet0Ow4YZBkyiJwiK5vWqEYoH7BINzJAJOLedZ++JpAlCbUktW2GQ2DS2FpKmxD/JMtWUUWl1BtghGw==, + } + engines: { node: '>=12.18' } dependencies: busboy: 1.6.0 dev: false /undici@5.21.0: - resolution: {integrity: sha512-HOjK8l6a57b2ZGXOcUsI5NLfoTrfmbOl90ixJDl0AEFG4wgHNDQxtZy15/ZQp7HhjkpaGlp/eneMgtsu1dIlUA==} - engines: {node: '>=12.18'} + resolution: + { + integrity: sha512-HOjK8l6a57b2ZGXOcUsI5NLfoTrfmbOl90ixJDl0AEFG4wgHNDQxtZy15/ZQp7HhjkpaGlp/eneMgtsu1dIlUA==, + } + engines: { node: '>=12.18' } dependencies: busboy: 1.6.0 /unherit@3.0.1: - resolution: {integrity: sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==} + resolution: + { + integrity: sha512-akOOQ/Yln8a2sgcLj4U0Jmx0R5jpIg2IUyRrWOzmEbjBtGzBdHtSeFKgoEcoH4KYIG/Pb8GQ/BwtYm0GCq1Sqg==, + } dev: false /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, + } + engines: { node: '>=4' } /unicode-match-property-ecmascript@2.0.0: - resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, + } + engines: { node: '>=4' } dependencies: unicode-canonical-property-names-ecmascript: 2.0.0 unicode-property-aliases-ecmascript: 2.1.0 /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, + } + engines: { node: '>=4' } /unicode-properties@1.4.1: - resolution: {integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==} + resolution: + { + integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==, + } dependencies: base64-js: 1.5.1 unicode-trie: 2.0.0 dev: false /unicode-property-aliases-ecmascript@2.1.0: - resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, + } + engines: { node: '>=4' } /unicode-trie@0.3.1: - resolution: {integrity: sha512-WgVuO0M2jDl7hVfbPgXv2LUrD81HM0bQj/bvLGiw6fJ4Zo8nNFnDrA0/hU2Te/wz6pjxCm5cxJwtLjo2eyV51Q==} + resolution: + { + integrity: sha512-WgVuO0M2jDl7hVfbPgXv2LUrD81HM0bQj/bvLGiw6fJ4Zo8nNFnDrA0/hU2Te/wz6pjxCm5cxJwtLjo2eyV51Q==, + } dependencies: pako: 0.2.9 tiny-inflate: 1.0.3 dev: false /unicode-trie@2.0.0: - resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==} + resolution: + { + integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==, + } dependencies: pako: 0.2.9 tiny-inflate: 1.0.3 dev: false /unified@10.1.2: - resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} + resolution: + { + integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==, + } dependencies: '@types/unist': 2.0.6 bail: 2.0.2 @@ -18719,7 +25415,10 @@ packages: vfile: 5.3.7 /unified@9.2.2: - resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==} + resolution: + { + integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==, + } dependencies: '@types/unist': 2.0.6 bail: 1.0.5 @@ -18731,8 +25430,11 @@ packages: dev: false /union-value@1.0.1: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==, + } + engines: { node: '>=0.10.0' } dependencies: arr-union: 3.1.0 get-value: 2.0.6 @@ -18741,27 +25443,39 @@ packages: dev: false /union@0.5.0: - resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==, + } + engines: { node: '>= 0.8.0' } dependencies: qs: 6.11.0 dev: true /unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==, + } + engines: { node: '>=8' } dependencies: crypto-random-string: 2.0.0 dev: true /unist-builder@3.0.1: - resolution: {integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==} + resolution: + { + integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==, + } dependencies: '@types/unist': 2.0.6 dev: false /unist-util-filter@4.0.1: - resolution: {integrity: sha512-RynicUM/vbOSTSiUK+BnaK9XMfmQUh6gyi7L6taNgc7FIf84GukXVV3ucGzEN/PhUUkdP5hb1MmXc+3cvPUm5Q==} + resolution: + { + integrity: sha512-RynicUM/vbOSTSiUK+BnaK9XMfmQUh6gyi7L6taNgc7FIf84GukXVV3ucGzEN/PhUUkdP5hb1MmXc+3cvPUm5Q==, + } dependencies: '@types/unist': 2.0.6 unist-util-is: 5.2.1 @@ -18769,55 +25483,82 @@ packages: dev: false /unist-util-find-after@4.0.1: - resolution: {integrity: sha512-QO/PuPMm2ERxC6vFXEPtmAutOopy5PknD+Oq64gGwxKtk4xwo9Z97t9Av1obPmGU0IyTa6EKYUfTrK2QJS3Ozw==} + resolution: + { + integrity: sha512-QO/PuPMm2ERxC6vFXEPtmAutOopy5PknD+Oq64gGwxKtk4xwo9Z97t9Av1obPmGU0IyTa6EKYUfTrK2QJS3Ozw==, + } dependencies: '@types/unist': 2.0.6 unist-util-is: 5.2.1 dev: false /unist-util-is@4.1.0: - resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} + resolution: + { + integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==, + } dev: false /unist-util-is@5.2.1: - resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} + resolution: + { + integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==, + } dependencies: '@types/unist': 2.0.6 /unist-util-map@3.1.3: - resolution: {integrity: sha512-4/mDauoxqZ6geK97lJ6n2kDk6JK88Vh+hWMSJqyaaP/7eqN1dDhjcjnNxKNm3YU6Sw7PVJtcFMUbnmHvYzb6Vg==} + resolution: + { + integrity: sha512-4/mDauoxqZ6geK97lJ6n2kDk6JK88Vh+hWMSJqyaaP/7eqN1dDhjcjnNxKNm3YU6Sw7PVJtcFMUbnmHvYzb6Vg==, + } dependencies: '@types/unist': 2.0.6 dev: false /unist-util-modify-children@2.0.0: - resolution: {integrity: sha512-HGrj7JQo9DwZt8XFsX8UD4gGqOsIlCih9opG6Y+N11XqkBGKzHo8cvDi+MfQQgiZ7zXRUiQREYHhjOBHERTMdg==} + resolution: + { + integrity: sha512-HGrj7JQo9DwZt8XFsX8UD4gGqOsIlCih9opG6Y+N11XqkBGKzHo8cvDi+MfQQgiZ7zXRUiQREYHhjOBHERTMdg==, + } dependencies: array-iterate: 1.1.4 dev: false /unist-util-modify-children@3.1.1: - resolution: {integrity: sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==} + resolution: + { + integrity: sha512-yXi4Lm+TG5VG+qvokP6tpnk+r1EPwyYL04JWDxLvgvPV40jANh7nm3udk65OOWquvbMDe+PL9+LmkxDpTv/7BA==, + } dependencies: '@types/unist': 2.0.6 array-iterate: 2.0.1 dev: false /unist-util-position@4.0.4: - resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} + resolution: + { + integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==, + } dependencies: '@types/unist': 2.0.6 dev: false /unist-util-remove-position@4.0.2: - resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} + resolution: + { + integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==, + } dependencies: '@types/unist': 2.0.6 unist-util-visit: 4.1.2 dev: true /unist-util-remove@3.1.1: - resolution: {integrity: sha512-kfCqZK5YVY5yEa89tvpl7KnBBHu2c6CzMkqHUrlOqaRgGOMp0sMvwWOVrbAtj03KhovQB7i96Gda72v/EFE0vw==} + resolution: + { + integrity: sha512-kfCqZK5YVY5yEa89tvpl7KnBBHu2c6CzMkqHUrlOqaRgGOMp0sMvwWOVrbAtj03KhovQB7i96Gda72v/EFE0vw==, + } dependencies: '@types/unist': 2.0.6 unist-util-is: 5.2.1 @@ -18825,7 +25566,10 @@ packages: dev: false /unist-util-select@4.0.3: - resolution: {integrity: sha512-1074+K9VyR3NyUz3lgNtHKm7ln+jSZXtLJM4E22uVuoFn88a/Go2pX8dusrt/W+KWH1ncn8jcd8uCQuvXb/fXA==} + resolution: + { + integrity: sha512-1074+K9VyR3NyUz3lgNtHKm7ln+jSZXtLJM4E22uVuoFn88a/Go2pX8dusrt/W+KWH1ncn8jcd8uCQuvXb/fXA==, + } dependencies: '@types/unist': 2.0.6 css-selector-parser: 1.4.1 @@ -18834,48 +25578,72 @@ packages: dev: false /unist-util-stringify-position@2.0.3: - resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} + resolution: + { + integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==, + } dependencies: '@types/unist': 2.0.6 dev: false /unist-util-stringify-position@3.0.3: - resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} + resolution: + { + integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==, + } dependencies: '@types/unist': 2.0.6 /unist-util-visit-children@1.1.4: - resolution: {integrity: sha512-sA/nXwYRCQVRwZU2/tQWUqJ9JSFM1X3x7JIOsIgSzrFHcfVt6NkzDtKzyxg2cZWkCwGF9CO8x4QNZRJRMK8FeQ==} + resolution: + { + integrity: sha512-sA/nXwYRCQVRwZU2/tQWUqJ9JSFM1X3x7JIOsIgSzrFHcfVt6NkzDtKzyxg2cZWkCwGF9CO8x4QNZRJRMK8FeQ==, + } dev: false /unist-util-visit-children@2.0.2: - resolution: {integrity: sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==} + resolution: + { + integrity: sha512-+LWpMFqyUwLGpsQxpumsQ9o9DG2VGLFrpz+rpVXYIEdPy57GSy5HioC0g3bg/8WP9oCLlapQtklOzQ8uLS496Q==, + } dependencies: '@types/unist': 2.0.6 dev: false /unist-util-visit-parents@3.1.1: - resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + resolution: + { + integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==, + } dependencies: '@types/unist': 2.0.6 unist-util-is: 4.1.0 dev: false /unist-util-visit-parents@4.1.1: - resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==} + resolution: + { + integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==, + } dependencies: '@types/unist': 2.0.6 unist-util-is: 5.2.1 dev: true /unist-util-visit-parents@5.1.3: - resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} + resolution: + { + integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==, + } dependencies: '@types/unist': 2.0.6 unist-util-is: 5.2.1 /unist-util-visit@3.1.0: - resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==} + resolution: + { + integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==, + } dependencies: '@types/unist': 2.0.6 unist-util-is: 5.2.1 @@ -18883,48 +25651,72 @@ packages: dev: true /unist-util-visit@4.1.2: - resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} + resolution: + { + integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==, + } dependencies: '@types/unist': 2.0.6 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 /universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, + } + engines: { node: '>= 4.0.0' } dev: true /universalify@2.0.0: - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, + } + engines: { node: '>= 10.0.0' } /unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, + } + engines: { node: '>= 0.8' } dev: true /unset-value@1.0.0: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==, + } + engines: { node: '>=0.10.0' } dependencies: has-value: 0.3.1 isobject: 3.0.1 dev: false /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==, + } + engines: { node: '>=8' } dev: true /unzipit@1.4.2: - resolution: {integrity: sha512-m7UOmLY0AxrvHs0f1x4FCjH5HJR57a891MaYxIMcfyLwrGWW8GBFjFvacQz/m/QgPvnmq2RVctlEmDKpZp7wfQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-m7UOmLY0AxrvHs0f1x4FCjH5HJR57a891MaYxIMcfyLwrGWW8GBFjFvacQz/m/QgPvnmq2RVctlEmDKpZp7wfQ==, + } + engines: { node: '>=12' } dependencies: uzip-module: 1.0.3 dev: false /update-browserslist-db@1.0.10(browserslist@4.21.4): - resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} + resolution: + { + integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==, + } hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -18934,7 +25726,10 @@ packages: picocolors: 1.0.0 /update-browserslist-db@1.0.13(browserslist@4.21.11): - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + resolution: + { + integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==, + } hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -18944,8 +25739,11 @@ packages: picocolors: 1.0.0 /update-notifier@5.1.0: - resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==, + } + engines: { node: '>=10' } dependencies: boxen: 5.1.2 chalk: 4.1.2 @@ -18964,22 +25762,34 @@ packages: dev: true /uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + } dependencies: punycode: 2.3.0 /urix@0.1.0: - resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + resolution: + { + integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==, + } deprecated: Please see https://github.com/lydell/urix#deprecated dev: false /url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + resolution: + { + integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==, + } dev: true /url-loader@4.1.1(webpack@5.86.0): - resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==, + } + engines: { node: '>= 10.13.0' } peerDependencies: file-loader: '*' webpack: ^4.0.0 || ^5.0.0 @@ -18994,21 +25804,30 @@ packages: dev: true /url-parse-lax@3.0.0: - resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==, + } + engines: { node: '>=4' } dependencies: prepend-http: 2.0.0 dev: true /url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + resolution: + { + integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, + } dependencies: querystringify: 2.2.0 requires-port: 1.0.0 dev: true /use-composed-ref@1.3.0(react@18.2.0): - resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} + resolution: + { + integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -19016,7 +25835,10 @@ packages: dev: false /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} + resolution: + { + integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==, + } peerDependencies: '@types/react': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -19029,7 +25851,10 @@ packages: dev: false /use-latest@1.2.1(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} + resolution: + { + integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==, + } peerDependencies: '@types/react': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -19043,7 +25868,10 @@ packages: dev: false /use-sync-external-store@1.2.0(react@18.2.0): - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + resolution: + { + integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: @@ -19051,25 +25879,40 @@ packages: dev: false /use@3.1.1: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==, + } + engines: { node: '>=0.10.0' } dev: false /util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } /utility-types@3.10.0: - resolution: {integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-O11mqxmi7wMKCo6HKFt5AhO4BwY3VV68YU07tgxfz8zJTIxr4BpsezN49Ffwy9j3ZpwwJp4fkRwjRzq3uWE6Rg==, + } + engines: { node: '>= 4' } dev: false /uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + resolution: + { + integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, + } hasBin: true /uvu@0.5.6: - resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==, + } + engines: { node: '>=8' } hasBin: true dependencies: dequal: 2.0.3 @@ -19078,33 +25921,51 @@ packages: sade: 1.8.1 /uzip-module@1.0.3: - resolution: {integrity: sha512-AMqwWZaknLM77G+VPYNZLEruMGWGzyigPK3/Whg99B3S6vGHuqsyl5ZrOv1UUF3paGK1U6PM0cnayioaryg/fA==} + resolution: + { + integrity: sha512-AMqwWZaknLM77G+VPYNZLEruMGWGzyigPK3/Whg99B3S6vGHuqsyl5ZrOv1UUF3paGK1U6PM0cnayioaryg/fA==, + } dev: false /v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + resolution: + { + integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, + } /v8-compile-cache@2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + resolution: + { + integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==, + } /v8-to-istanbul@9.1.0: - resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==} - engines: {node: '>=10.12.0'} + resolution: + { + integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==, + } + engines: { node: '>=10.12.0' } dependencies: '@jridgewell/trace-mapping': 0.3.18 '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 1.9.0 /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + resolution: + { + integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, + } dependencies: spdx-correct: 3.1.1 spdx-expression-parse: 3.0.1 dev: true /vercel@27.4.0: - resolution: {integrity: sha512-HUDbq5L9ja4gXtS2orfjQYQG6VLN4FOym9dJ8AGZzTrKt5crIKTHpiR6eLB3k4QqATPggORGW7mS6lsmhpnjbQ==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-HUDbq5L9ja4gXtS2orfjQYQG6VLN4FOym9dJ8AGZzTrKt5crIKTHpiR6eLB3k4QqATPggORGW7mS6lsmhpnjbQ==, + } + engines: { node: '>= 14' } hasBin: true requiresBuild: true dependencies: @@ -19125,8 +25986,11 @@ packages: dev: true /verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} - engines: {'0': node >=0.6.0} + resolution: + { + integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==, + } + engines: { '0': node >=0.6.0 } dependencies: assert-plus: 1.0.0 core-util-is: 1.0.2 @@ -19134,34 +25998,49 @@ packages: dev: true /vfile-find-up@6.0.0: - resolution: {integrity: sha512-TPE1tYyHrYxewHxi42F8yP45rY5fK78jiPg9WP1xH5TfAbdncxja5NquZyYSSzG1aHpK98AvUOVJrEOoTonW6w==} + resolution: + { + integrity: sha512-TPE1tYyHrYxewHxi42F8yP45rY5fK78jiPg9WP1xH5TfAbdncxja5NquZyYSSzG1aHpK98AvUOVJrEOoTonW6w==, + } dependencies: to-vfile: 7.2.4 vfile: 5.3.7 dev: true /vfile-location@4.1.0: - resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} + resolution: + { + integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==, + } dependencies: '@types/unist': 2.0.6 vfile: 5.3.7 dev: false /vfile-message@2.0.4: - resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} + resolution: + { + integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==, + } dependencies: '@types/unist': 2.0.6 unist-util-stringify-position: 2.0.3 dev: false /vfile-message@3.1.4: - resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} + resolution: + { + integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==, + } dependencies: '@types/unist': 2.0.6 unist-util-stringify-position: 3.0.3 /vfile-reporter@7.0.5: - resolution: {integrity: sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==} + resolution: + { + integrity: sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==, + } dependencies: '@types/supports-color': 8.1.1 string-width: 5.1.2 @@ -19174,21 +26053,30 @@ packages: dev: false /vfile-sort@3.0.1: - resolution: {integrity: sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==} + resolution: + { + integrity: sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==, + } dependencies: vfile: 5.3.7 vfile-message: 3.1.4 dev: false /vfile-statistics@2.0.1: - resolution: {integrity: sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==} + resolution: + { + integrity: sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==, + } dependencies: vfile: 5.3.7 vfile-message: 3.1.4 dev: false /vfile@4.2.1: - resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} + resolution: + { + integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==, + } dependencies: '@types/unist': 2.0.6 is-buffer: 2.0.5 @@ -19197,7 +26085,10 @@ packages: dev: false /vfile@5.3.7: - resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + resolution: + { + integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==, + } dependencies: '@types/unist': 2.0.6 is-buffer: 2.0.5 @@ -19205,8 +26096,11 @@ packages: vfile-message: 3.1.4 /vite-compatible-readable-stream@3.6.1: - resolution: {integrity: sha512-t20zYkrSf868+j/p31cRIGN28Phrjm3nRSLR2fyc2tiWi4cZGVdv68yNlwnIINTkMTmPoMiSlc0OadaO7DXZaQ==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-t20zYkrSf868+j/p31cRIGN28Phrjm3nRSLR2fyc2tiWi4cZGVdv68yNlwnIINTkMTmPoMiSlc0OadaO7DXZaQ==, + } + engines: { node: '>= 6' } dependencies: inherits: 2.0.4 string_decoder: 1.3.0 @@ -19214,8 +26108,11 @@ packages: dev: false /vite-node@0.31.4(@types/node@18.15.11): - resolution: {integrity: sha512-uzL377GjJtTbuc5KQxVbDu2xfU/x0wVjUtXQR2ihS21q/NK6ROr4oG0rsSkBBddZUVCwzfx22in76/0ZZHXgkQ==} - engines: {node: '>=v14.18.0'} + resolution: + { + integrity: sha512-uzL377GjJtTbuc5KQxVbDu2xfU/x0wVjUtXQR2ihS21q/NK6ROr4oG0rsSkBBddZUVCwzfx22in76/0ZZHXgkQ==, + } + engines: { node: '>=v14.18.0' } hasBin: true dependencies: cac: 6.7.14 @@ -19236,7 +26133,10 @@ packages: dev: true /vite-plugin-eslint@1.8.1(eslint@8.46.0)(vite@4.4.9): - resolution: {integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==} + resolution: + { + integrity: sha512-PqdMf3Y2fLO9FsNPmMX+//2BF5SF8nEWspZdgl4kSt7UvHDRHVVfHvxsD7ULYzZrJDGRxR81Nq7TOFgwMnUang==, + } peerDependencies: eslint: '>=7' vite: '>=2' @@ -19249,7 +26149,10 @@ packages: dev: true /vite-tsconfig-paths@4.2.1(typescript@5.2.2)(vite@4.4.9): - resolution: {integrity: sha512-GNUI6ZgPqT3oervkvzU+qtys83+75N/OuDaQl7HmOqFTb0pjZsuARrRipsyJhJ3enqV8beI1xhGbToR4o78nSQ==} + resolution: + { + integrity: sha512-GNUI6ZgPqT3oervkvzU+qtys83+75N/OuDaQl7HmOqFTb0pjZsuARrRipsyJhJ3enqV8beI1xhGbToR4o78nSQ==, + } peerDependencies: vite: '*' peerDependenciesMeta: @@ -19266,8 +26169,11 @@ packages: dev: true /vite@4.4.9(@types/node@18.15.11): - resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==, + } + engines: { node: ^14.18.0 || >=16.0.0 } hasBin: true peerDependencies: '@types/node': '>= 14' @@ -19301,7 +26207,10 @@ packages: fsevents: 2.3.2 /vitefu@0.2.4(vite@4.4.9): - resolution: {integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==} + resolution: + { + integrity: sha512-fanAXjSaf9xXtOOeno8wZXIhgia+CZury481LsDaV++lSvcU2R9Ch2bPh3PYFyoHW+w9LqAeYRISVQjUIew14g==, + } peerDependencies: vite: ^3.0.0 || ^4.0.0 peerDependenciesMeta: @@ -19311,8 +26220,11 @@ packages: vite: 4.4.9(@types/node@18.15.11) /vitest@0.31.4(@vitest/ui@0.31.4)(jsdom@22.1.0): - resolution: {integrity: sha512-GoV0VQPmWrUFOZSg3RpQAPN+LPmHg2/gxlMNJlyxJihkz6qReHDV6b0pPDcqFLNEPya4tWJ1pgwUNP9MLmUfvQ==} - engines: {node: '>=v14.18.0'} + resolution: + { + integrity: sha512-GoV0VQPmWrUFOZSg3RpQAPN+LPmHg2/gxlMNJlyxJihkz6qReHDV6b0pPDcqFLNEPya4tWJ1pgwUNP9MLmUfvQ==, + } + engines: { node: '>=v14.18.0' } hasBin: true peerDependencies: '@edge-runtime/vm': '*' @@ -19379,65 +26291,101 @@ packages: dev: true /vscode-oniguruma@1.7.0: - resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==} + resolution: + { + integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==, + } /vscode-textmate@8.0.0: - resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==} + resolution: + { + integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==, + } /w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==, + } + engines: { node: '>=14' } dependencies: xml-name-validator: 4.0.0 dev: true /walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + resolution: + { + integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, + } dependencies: makeerror: 1.0.12 /watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==, + } + engines: { node: '>=10.13.0' } dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 dev: true /wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + resolution: + { + integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, + } dependencies: defaults: 1.0.4 dev: true /web-namespaces@2.0.1: - resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + resolution: + { + integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==, + } dev: false /webidl-conversions@3.0.1: - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + resolution: + { + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, + } /webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==, + } + engines: { node: '>=12' } dev: true /webpack-merge@5.8.0: - resolution: {integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==, + } + engines: { node: '>=10.0.0' } dependencies: clone-deep: 4.0.1 wildcard: 2.0.0 dev: true /webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, + } + engines: { node: '>=10.13.0' } dev: true /webpack@5.86.0(@swc/core@1.3.87)(esbuild@0.19.3): - resolution: {integrity: sha512-3BOvworZ8SO/D4GVP+GoRC3fVeg5MO4vzmq8TJJEkdmopxyazGDxN8ClqN12uzrZW9Tv8EED8v5VSb6Sqyi0pg==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-3BOvworZ8SO/D4GVP+GoRC3fVeg5MO4vzmq8TJJEkdmopxyazGDxN8ClqN12uzrZW9Tv8EED8v5VSb6Sqyi0pg==, + } + engines: { node: '>=10.13.0' } hasBin: true peerDependencies: webpack-cli: '*' @@ -19476,46 +26424,67 @@ packages: dev: true /well-known-symbols@2.0.0: - resolution: {integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==, + } + engines: { node: '>=6' } dev: true /whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==, + } + engines: { node: '>=12' } dependencies: iconv-lite: 0.6.3 dev: true /whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==, + } + engines: { node: '>=12' } dev: true /whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==, + } + engines: { node: '>=12' } dependencies: tr46: 3.0.0 webidl-conversions: 7.0.0 dev: true /whatwg-url@12.0.1: - resolution: {integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-Ed/LrqB8EPlGxjS+TrsXcpUond1mhccS3pchLhzSgPCnTimUCKj3IZE75pAs5m6heB2U2TMerKFUXheyHY+VDQ==, + } + engines: { node: '>=14' } dependencies: tr46: 4.1.1 webidl-conversions: 7.0.0 dev: true /whatwg-url@5.0.0: - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + resolution: + { + integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, + } dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 /which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + resolution: + { + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, + } dependencies: is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -19525,7 +26494,10 @@ packages: dev: true /which-collection@1.0.1: - resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} + resolution: + { + integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==, + } dependencies: is-map: 2.0.2 is-set: 2.0.2 @@ -19534,8 +26506,11 @@ packages: dev: true /which-typed-array@1.1.9: - resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==, + } + engines: { node: '>= 0.4' } dependencies: available-typed-arrays: 1.0.5 call-bind: 1.0.2 @@ -19546,21 +26521,30 @@ packages: dev: true /which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + resolution: + { + integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, + } hasBin: true dependencies: isexe: 2.0.0 /which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: { node: '>= 8' } hasBin: true dependencies: isexe: 2.0.0 /why-is-node-running@2.2.2: - resolution: {integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6tSwToZxTOcotxHeA+qGCq1mVzKR3CwcJGmVcY+QE8SHy6TnpFnh8PAvPNHYr7EcuVeG0QSMxtYCuO1ta/G/oA==, + } + engines: { node: '>=8' } hasBin: true dependencies: siginfo: 2.0.0 @@ -19568,47 +26552,71 @@ packages: dev: true /wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} + resolution: + { + integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==, + } dependencies: string-width: 4.2.3 dev: true /widest-line@3.1.0: - resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==, + } + engines: { node: '>=8' } dependencies: string-width: 4.2.3 dev: true /wikibase-sdk@8.1.1: - resolution: {integrity: sha512-1NjMnfNQ4OaLh0dFAeTMvV3vGAq6HXsNKGfYUJYOVyBPGBDMunlY3QZ8+72hLV5FiKmc6Bzg1xbI0jCHfHmIew==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-1NjMnfNQ4OaLh0dFAeTMvV3vGAq6HXsNKGfYUJYOVyBPGBDMunlY3QZ8+72hLV5FiKmc6Bzg1xbI0jCHfHmIew==, + } + engines: { node: '>= 10.0.0' } dev: false /wikidata-sdk@8.1.1: - resolution: {integrity: sha512-KOUhJtpCHg32k/tz7pFj/BaqiYAvYGz4sGzcT15t120832WtfNTGCSeohmln40/JOjpxzfzud/6q2x6Q0Ji5hg==} - engines: {node: '>= 6.4'} + resolution: + { + integrity: sha512-KOUhJtpCHg32k/tz7pFj/BaqiYAvYGz4sGzcT15t120832WtfNTGCSeohmln40/JOjpxzfzud/6q2x6Q0Ji5hg==, + } + engines: { node: '>= 6.4' } deprecated: wikidata-sdk has been renamed wikibase-sdk dependencies: wikibase-sdk: 8.1.1 dev: false /wildcard@2.0.0: - resolution: {integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==} + resolution: + { + integrity: sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw==, + } dev: true /word-wrap@1.2.3: - resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==, + } + engines: { node: '>=0.10.0' } dev: true /wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + resolution: + { + integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==, + } dev: true /wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, + } + engines: { node: '>=8' } dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 @@ -19616,18 +26624,27 @@ packages: dev: true /wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, + } + engines: { node: '>=10' } dependencies: ansi-styles: 4.3.0 string-width: 4.2.3 strip-ansi: 6.0.1 /wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + resolution: + { + integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, + } /write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + resolution: + { + integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==, + } dependencies: imurmurhash: 0.1.4 is-typedarray: 1.0.0 @@ -19635,15 +26652,21 @@ packages: typedarray-to-buffer: 3.1.5 /write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + resolution: + { + integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } dependencies: imurmurhash: 0.1.4 signal-exit: 3.0.7 /ws@8.12.1: - resolution: {integrity: sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-1qo+M9Ba+xNhPB+YTWUlK6M17brTut5EXbcBaMRN5pH5dFrXz7lzz1ChFSUq3bOUl8yEvSenhHmYUNJxFzdJew==, + } + engines: { node: '>=10.0.0' } peerDependencies: bufferutil: ^4.0.1 utf-8-validate: '>=5.0.2' @@ -19655,8 +26678,11 @@ packages: dev: true /ws@8.14.2: - resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==, + } + engines: { node: '>=10.0.0' } peerDependencies: bufferutil: ^4.0.1 utf-8-validate: '>=5.0.2' @@ -19668,7 +26694,10 @@ packages: dev: true /xast-util-from-xml@3.0.0: - resolution: {integrity: sha512-zEfGxnue7vHbayZnRBAjJsjV1dQG6XWKLAzrsPxX2l4WHmqGZxM76XxRblaTHvcOYMFLlnVp3DFcUAl+Qk9SNQ==} + resolution: + { + integrity: sha512-zEfGxnue7vHbayZnRBAjJsjV1dQG6XWKLAzrsPxX2l4WHmqGZxM76XxRblaTHvcOYMFLlnVp3DFcUAl+Qk9SNQ==, + } dependencies: '@rgrove/parse-xml': 4.1.0 '@types/xast': 1.0.2 @@ -19677,13 +26706,19 @@ packages: dev: false /xast-util-to-string@2.0.1: - resolution: {integrity: sha512-2f6lUwOKjQZWU7g62F1hU/qYselOs+dPT/fwj9ecQfJT1J1Fk8gbcW0D+u6MXDntzI4arniqa4hM4P7lL7n6hw==} + resolution: + { + integrity: sha512-2f6lUwOKjQZWU7g62F1hU/qYselOs+dPT/fwj9ecQfJT1J1Fk8gbcW0D+u6MXDntzI4arniqa4hM4P7lL7n6hw==, + } dependencies: '@types/xast': 1.0.2 dev: false /xast-util-to-xml@3.0.2: - resolution: {integrity: sha512-lbnJEVui7Lk9W/TydInkin5OnOyTAr2b4OpK5YjXo94qqoXaR6mFE/evXfOrBev9EnD91r0FOPxrLfTT0qLITQ==} + resolution: + { + integrity: sha512-lbnJEVui7Lk9W/TydInkin5OnOyTAr2b4OpK5YjXo94qqoXaR6mFE/evXfOrBev9EnD91r0FOPxrLfTT0qLITQ==, + } dependencies: '@types/xast': 1.0.2 ccount: 2.0.1 @@ -19691,63 +26726,105 @@ packages: dev: false /xastscript@3.1.1: - resolution: {integrity: sha512-rE7oVPLENyIZNKeRkXE96ao/QiucenYROqdBnEuNNkQHlyxf3vJ5EMNh2QQ4AYhdf9v/dVuxJ7F4u4AaOOhkOA==} + resolution: + { + integrity: sha512-rE7oVPLENyIZNKeRkXE96ao/QiucenYROqdBnEuNNkQHlyxf3vJ5EMNh2QQ4AYhdf9v/dVuxJ7F4u4AaOOhkOA==, + } dependencies: '@types/xast': 1.0.2 dev: false /xdg-basedir@4.0.0: - resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==, + } + engines: { node: '>=8' } dev: true /xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==, + } + engines: { node: '>=12' } dev: true /xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + resolution: + { + integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==, + } dev: true /xmlcreate@2.0.4: - resolution: {integrity: sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==} + resolution: + { + integrity: sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==, + } dev: true /xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, + } + engines: { node: '>=0.4' } /y18n@5.0.8: - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, + } + engines: { node: '>=10' } /yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + resolution: + { + integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, + } dev: true /yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + resolution: + { + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, + } /yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, + } /yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, + } + engines: { node: '>= 6' } /yargs-parser@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, + } + engines: { node: '>=10' } dev: true /yargs-parser@21.1.1: - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, + } + engines: { node: '>=12' } /yargs@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==, + } + engines: { node: '>=10' } dependencies: cliui: 7.0.4 escalade: 3.1.1 @@ -19759,8 +26836,11 @@ packages: dev: true /yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, + } + engines: { node: '>=12' } dependencies: cliui: 8.0.1 escalade: 3.1.1 @@ -19771,27 +26851,42 @@ packages: yargs-parser: 21.1.1 /yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + resolution: + { + integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, + } dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 dev: true /yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, + } + engines: { node: '>=6' } /yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, + } + engines: { node: '>=10' } /yocto-queue@1.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==, + } + engines: { node: '>=12.20' } dev: true /zod-to-json-schema@3.21.4(zod@3.21.4): - resolution: {integrity: sha512-fjUZh4nQ1s6HMccgIeE0VP4QG/YRGPmyjO9sAh890aQKPEk3nqbfUXhMFaC+Dr5KvYBm8BCyvfpZf2jY9aGSsw==} + resolution: + { + integrity: sha512-fjUZh4nQ1s6HMccgIeE0VP4QG/YRGPmyjO9sAh890aQKPEk3nqbfUXhMFaC+Dr5KvYBm8BCyvfpZf2jY9aGSsw==, + } peerDependencies: zod: ^3.21.4 dependencies: @@ -19799,12 +26894,18 @@ packages: dev: false /zod@3.21.4: - resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} + resolution: + { + integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==, + } dev: false /zustand@4.3.7(react@18.2.0): - resolution: {integrity: sha512-dY8ERwB9Nd21ellgkBZFhudER8KVlelZm8388B5nDAXhO/+FZDhYMuRnqDgu5SYyRgz/iaf8RKnbUs/cHfOGlQ==} - engines: {node: '>=12.7.0'} + resolution: + { + integrity: sha512-dY8ERwB9Nd21ellgkBZFhudER8KVlelZm8388B5nDAXhO/+FZDhYMuRnqDgu5SYyRgz/iaf8RKnbUs/cHfOGlQ==, + } + engines: { node: '>=12.7.0' } peerDependencies: immer: '>=9.0' react: '>=16.8' @@ -19819,12 +26920,21 @@ packages: dev: false /zwitch@1.0.5: - resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==} + resolution: + { + integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==, + } dev: false /zwitch@2.0.2: - resolution: {integrity: sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==} + resolution: + { + integrity: sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==, + } /zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + resolution: + { + integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, + } dev: false diff --git a/prettier.config.cjs b/prettier.config.cjs index 2a6ba80b..4db84791 100755 --- a/prettier.config.cjs +++ b/prettier.config.cjs @@ -2,11 +2,12 @@ /** @type {import("prettier").Config} */ module.exports = { plugins: [ - require.resolve("prettier-plugin-svelte"), - require.resolve("prettier-plugin-tailwindcss")], - "semi": false, - "trailingComma": "all", - "singleQuote": true, - "printWidth": 100, - "tabWidth": 2 + require.resolve('prettier-plugin-svelte'), + require.resolve('prettier-plugin-tailwindcss'), + ], + semi: false, + trailingComma: 'all', + singleQuote: true, + printWidth: 100, + tabWidth: 2, } diff --git a/scripts/addToSwagger.mjs b/scripts/addToSwagger.mjs index e0c721c3..075eaa66 100755 --- a/scripts/addToSwagger.mjs +++ b/scripts/addToSwagger.mjs @@ -6,20 +6,9 @@ main() async function main() { const swagger = JSON.parse( - readFileSync( - join( - __dirname, - 'libs', - 'ojs', - 'ojs-client', - 'src', - 'lib', - 'swagger.json' - ), - { - encoding: 'utf-8', - } - ) + readFileSync(join(__dirname, 'libs', 'ojs', 'ojs-client', 'src', 'lib', 'swagger.json'), { + encoding: 'utf-8', + }), ) const defs = swagger.definitions @@ -33,20 +22,11 @@ async function main() { const betterVal = JSON.parse( // readFileSync(new URL('..', import.meta.url, 'schemas', val), { readFileSync( - join( - __dirname, - 'libs', - 'ojs', - 'ojs-client', - 'src', - 'lib', - 'schemas', - `${val}.json` - ), + join(__dirname, 'libs', 'ojs', 'ojs-client', 'src', 'lib', 'schemas', `${val}.json`), { encoding: 'utf-8', - } - ) + }, + ), ) acc[key] = betterVal return acc @@ -63,15 +43,7 @@ async function main() { // writeFileSync(join(__dirname, '..', 'swagger-types.ts'), output) writeFileSync( - join( - __dirname, - 'libs', - 'ojs', - 'ojs-client', - 'src', - 'lib', - 'swagger-types.ts' - ), - output + join(__dirname, 'libs', 'ojs', 'ojs-client', 'src', 'lib', 'swagger-types.ts'), + output, ) } diff --git a/tools/workspace-plugin/src/generators/node-lib/files/lib/package.json__tmpl__ b/tools/workspace-plugin/src/generators/node-lib/files/lib/package.json__tmpl__ index 9472c4b6..daf7defd 100644 --- a/tools/workspace-plugin/src/generators/node-lib/files/lib/package.json__tmpl__ +++ b/tools/workspace-plugin/src/generators/node-lib/files/lib/package.json__tmpl__ @@ -31,6 +31,6 @@ "files": [ "index.d.ts", "index.js", - "./lib" + "/lib" ] } diff --git a/tools/workspace-plugin/src/generators/node-lib/schema.json b/tools/workspace-plugin/src/generators/node-lib/schema.json index c56d9637..5e03cbf5 100644 --- a/tools/workspace-plugin/src/generators/node-lib/schema.json +++ b/tools/workspace-plugin/src/generators/node-lib/schema.json @@ -32,19 +32,12 @@ "linter": { "description": "The tool to use for running lint checks.", "type": "string", - "enum": [ - "eslint", - "tslint" - ], + "enum": ["eslint", "tslint"], "default": "eslint" }, "unitTestRunner": { "type": "string", - "enum": [ - "jest", - "vitest", - "none" - ], + "enum": ["jest", "vitest", "none"], "description": "Test runner to use for unit tests", "default": "vitest" }, @@ -88,10 +81,7 @@ }, "testEnvironment": { "type": "string", - "enum": [ - "jsdom", - "node" - ], + "enum": ["jsdom", "node"], "description": "The test environment to use if unitTestRunner is set to jest", "default": "jsdom" }, @@ -141,16 +131,10 @@ }, "compiler": { "type": "string", - "enum": [ - "tsc", - "swc" - ], + "enum": ["tsc", "swc"], "default": "swc", "description": "The compiler used by the build and test targets." } }, - "required": [ - "name", - "description" - ] + "required": ["name", "description"] }