1.0.1 fix typing

This commit is contained in:
Adam Matthiesen 2024-01-14 23:58:29 -08:00
parent be76428aae
commit 0d265fbd02
2 changed files with 3 additions and 2 deletions

3
index.d.ts vendored
View File

@ -51,6 +51,7 @@ export interface Settings extends Metadata, CodeInjection, SocialMedia {
description?: string | undefined;
logo?: string | undefined;
icon?: string | undefined;
accent_color?: Nullable<string> | undefined;
cover_image?: string | undefined;
facebook?: string | undefined;
twitter?: string | undefined;
@ -70,7 +71,7 @@ export interface Settings extends Metadata, CodeInjection, SocialMedia {
url: string;
}>
| undefined;
url?: string | undefined;
url?: string;
}
export interface Author extends Identification, Metadata {

View File

@ -1,7 +1,7 @@
{
"name": "@adammatthiesen/astro-ghostcms",
"description": "Astro GhostCMS integration to allow easier importing of GhostCMS Content",
"version": "1.0.0",
"version": "1.0.1",
"author": "Adam Matthiesen <adam@matthiesen.xyz>",
"type": "module",
"license": "MIT",