Update Astro to latest version (5.18.1)
This commit is contained in:
119
.astro/content.d.ts
vendored
119
.astro/content.d.ts
vendored
@@ -15,21 +15,13 @@ declare module 'astro:content' {
|
|||||||
[key: string]: unknown;
|
[key: string]: unknown;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
declare module 'astro:content' {
|
|
||||||
type Flatten<T> = T extends { [K: string]: infer U } ? U : never;
|
type Flatten<T> = T extends { [K: string]: infer U } ? U : never;
|
||||||
|
|
||||||
export type CollectionKey = keyof AnyEntryMap;
|
export type CollectionKey = keyof DataEntryMap;
|
||||||
export type CollectionEntry<C extends CollectionKey> = Flatten<AnyEntryMap[C]>;
|
export type CollectionEntry<C extends CollectionKey> = Flatten<DataEntryMap[C]>;
|
||||||
|
|
||||||
export type ContentCollectionKey = keyof ContentEntryMap;
|
|
||||||
export type DataCollectionKey = keyof DataEntryMap;
|
|
||||||
|
|
||||||
type AllValuesOf<T> = T extends any ? T[keyof T] : never;
|
type AllValuesOf<T> = T extends any ? T[keyof T] : never;
|
||||||
type ValidContentEntrySlug<C extends keyof ContentEntryMap> = AllValuesOf<
|
|
||||||
ContentEntryMap[C]
|
|
||||||
>['slug'];
|
|
||||||
|
|
||||||
export type ReferenceDataEntry<
|
export type ReferenceDataEntry<
|
||||||
C extends CollectionKey,
|
C extends CollectionKey,
|
||||||
@@ -38,41 +30,17 @@ declare module 'astro:content' {
|
|||||||
collection: C;
|
collection: C;
|
||||||
id: E;
|
id: E;
|
||||||
};
|
};
|
||||||
export type ReferenceContentEntry<
|
|
||||||
C extends keyof ContentEntryMap,
|
|
||||||
E extends ValidContentEntrySlug<C> | (string & {}) = string,
|
|
||||||
> = {
|
|
||||||
collection: C;
|
|
||||||
slug: E;
|
|
||||||
};
|
|
||||||
export type ReferenceLiveEntry<C extends keyof LiveContentConfig['collections']> = {
|
export type ReferenceLiveEntry<C extends keyof LiveContentConfig['collections']> = {
|
||||||
collection: C;
|
collection: C;
|
||||||
id: string;
|
id: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** @deprecated Use `getEntry` instead. */
|
export function getCollection<C extends keyof DataEntryMap, E extends CollectionEntry<C>>(
|
||||||
export function getEntryBySlug<
|
|
||||||
C extends keyof ContentEntryMap,
|
|
||||||
E extends ValidContentEntrySlug<C> | (string & {}),
|
|
||||||
>(
|
|
||||||
collection: C,
|
|
||||||
// Note that this has to accept a regular string too, for SSR
|
|
||||||
entrySlug: E,
|
|
||||||
): E extends ValidContentEntrySlug<C>
|
|
||||||
? Promise<CollectionEntry<C>>
|
|
||||||
: Promise<CollectionEntry<C> | undefined>;
|
|
||||||
|
|
||||||
/** @deprecated Use `getEntry` instead. */
|
|
||||||
export function getDataEntryById<C extends keyof DataEntryMap, E extends keyof DataEntryMap[C]>(
|
|
||||||
collection: C,
|
|
||||||
entryId: E,
|
|
||||||
): Promise<CollectionEntry<C>>;
|
|
||||||
|
|
||||||
export function getCollection<C extends keyof AnyEntryMap, E extends CollectionEntry<C>>(
|
|
||||||
collection: C,
|
collection: C,
|
||||||
filter?: (entry: CollectionEntry<C>) => entry is E,
|
filter?: (entry: CollectionEntry<C>) => entry is E,
|
||||||
): Promise<E[]>;
|
): Promise<E[]>;
|
||||||
export function getCollection<C extends keyof AnyEntryMap>(
|
export function getCollection<C extends keyof DataEntryMap>(
|
||||||
collection: C,
|
collection: C,
|
||||||
filter?: (entry: CollectionEntry<C>) => unknown,
|
filter?: (entry: CollectionEntry<C>) => unknown,
|
||||||
): Promise<CollectionEntry<C>[]>;
|
): Promise<CollectionEntry<C>[]>;
|
||||||
@@ -84,14 +52,6 @@ declare module 'astro:content' {
|
|||||||
import('astro').LiveDataCollectionResult<LiveLoaderDataType<C>, LiveLoaderErrorType<C>>
|
import('astro').LiveDataCollectionResult<LiveLoaderDataType<C>, LiveLoaderErrorType<C>>
|
||||||
>;
|
>;
|
||||||
|
|
||||||
export function getEntry<
|
|
||||||
C extends keyof ContentEntryMap,
|
|
||||||
E extends ValidContentEntrySlug<C> | (string & {}),
|
|
||||||
>(
|
|
||||||
entry: ReferenceContentEntry<C, E>,
|
|
||||||
): E extends ValidContentEntrySlug<C>
|
|
||||||
? Promise<CollectionEntry<C>>
|
|
||||||
: Promise<CollectionEntry<C> | undefined>;
|
|
||||||
export function getEntry<
|
export function getEntry<
|
||||||
C extends keyof DataEntryMap,
|
C extends keyof DataEntryMap,
|
||||||
E extends keyof DataEntryMap[C] | (string & {}),
|
E extends keyof DataEntryMap[C] | (string & {}),
|
||||||
@@ -100,15 +60,6 @@ declare module 'astro:content' {
|
|||||||
): E extends keyof DataEntryMap[C]
|
): E extends keyof DataEntryMap[C]
|
||||||
? Promise<DataEntryMap[C][E]>
|
? Promise<DataEntryMap[C][E]>
|
||||||
: Promise<CollectionEntry<C> | undefined>;
|
: Promise<CollectionEntry<C> | undefined>;
|
||||||
export function getEntry<
|
|
||||||
C extends keyof ContentEntryMap,
|
|
||||||
E extends ValidContentEntrySlug<C> | (string & {}),
|
|
||||||
>(
|
|
||||||
collection: C,
|
|
||||||
slug: E,
|
|
||||||
): E extends ValidContentEntrySlug<C>
|
|
||||||
? Promise<CollectionEntry<C>>
|
|
||||||
: Promise<CollectionEntry<C> | undefined>;
|
|
||||||
export function getEntry<
|
export function getEntry<
|
||||||
C extends keyof DataEntryMap,
|
C extends keyof DataEntryMap,
|
||||||
E extends keyof DataEntryMap[C] | (string & {}),
|
E extends keyof DataEntryMap[C] | (string & {}),
|
||||||
@@ -126,47 +77,52 @@ declare module 'astro:content' {
|
|||||||
): Promise<import('astro').LiveDataEntryResult<LiveLoaderDataType<C>, LiveLoaderErrorType<C>>>;
|
): Promise<import('astro').LiveDataEntryResult<LiveLoaderDataType<C>, LiveLoaderErrorType<C>>>;
|
||||||
|
|
||||||
/** Resolve an array of entry references from the same collection */
|
/** Resolve an array of entry references from the same collection */
|
||||||
export function getEntries<C extends keyof ContentEntryMap>(
|
|
||||||
entries: ReferenceContentEntry<C, ValidContentEntrySlug<C>>[],
|
|
||||||
): Promise<CollectionEntry<C>[]>;
|
|
||||||
export function getEntries<C extends keyof DataEntryMap>(
|
export function getEntries<C extends keyof DataEntryMap>(
|
||||||
entries: ReferenceDataEntry<C, keyof DataEntryMap[C]>[],
|
entries: ReferenceDataEntry<C, keyof DataEntryMap[C]>[],
|
||||||
): Promise<CollectionEntry<C>[]>;
|
): Promise<CollectionEntry<C>[]>;
|
||||||
|
|
||||||
export function render<C extends keyof AnyEntryMap>(
|
export function render<C extends keyof DataEntryMap>(
|
||||||
entry: AnyEntryMap[C][string],
|
entry: DataEntryMap[C][string],
|
||||||
): Promise<RenderResult>;
|
): Promise<RenderResult>;
|
||||||
|
|
||||||
export function reference<C extends keyof AnyEntryMap>(
|
export function reference<
|
||||||
|
C extends
|
||||||
|
| keyof DataEntryMap
|
||||||
|
// Allow generic `string` to avoid excessive type errors in the config
|
||||||
|
// if `dev` is not running to update as you edit.
|
||||||
|
// Invalid collection names will be caught at build time.
|
||||||
|
| (string & {}),
|
||||||
|
>(
|
||||||
collection: C,
|
collection: C,
|
||||||
): import('astro/zod').ZodEffects<
|
): import('astro/zod').ZodPipe<
|
||||||
import('astro/zod').ZodString,
|
import('astro/zod').ZodString,
|
||||||
C extends keyof ContentEntryMap
|
import('astro/zod').ZodTransform<
|
||||||
? ReferenceContentEntry<C, ValidContentEntrySlug<C>>
|
C extends keyof DataEntryMap
|
||||||
: ReferenceDataEntry<C, keyof DataEntryMap[C]>
|
? {
|
||||||
|
collection: C;
|
||||||
|
id: string;
|
||||||
|
}
|
||||||
|
: never,
|
||||||
|
string
|
||||||
|
>
|
||||||
>;
|
>;
|
||||||
// Allow generic `string` to avoid excessive type errors in the config
|
|
||||||
// if `dev` is not running to update as you edit.
|
|
||||||
// Invalid collection names will be caught at build time.
|
|
||||||
export function reference<C extends string>(
|
|
||||||
collection: C,
|
|
||||||
): import('astro/zod').ZodEffects<import('astro/zod').ZodString, never>;
|
|
||||||
|
|
||||||
type ReturnTypeOrOriginal<T> = T extends (...args: any[]) => infer R ? R : T;
|
type ReturnTypeOrOriginal<T> = T extends (...args: any[]) => infer R ? R : T;
|
||||||
type InferEntrySchema<C extends keyof AnyEntryMap> = import('astro/zod').infer<
|
type InferEntrySchema<C extends keyof DataEntryMap> = import('astro/zod').infer<
|
||||||
ReturnTypeOrOriginal<Required<ContentConfig['collections'][C]>['schema']>
|
ReturnTypeOrOriginal<Required<ContentConfig['collections'][C]>['schema']>
|
||||||
>;
|
>;
|
||||||
|
type ExtractLoaderConfig<T> = T extends { loader: infer L } ? L : never;
|
||||||
type ContentEntryMap = {
|
type InferLoaderSchema<
|
||||||
|
C extends keyof DataEntryMap,
|
||||||
};
|
L = ExtractLoaderConfig<ContentConfig['collections'][C]>,
|
||||||
|
> = L extends { schema: import('astro/zod').ZodSchema }
|
||||||
|
? import('astro/zod').infer<L['schema']>
|
||||||
|
: any;
|
||||||
|
|
||||||
type DataEntryMap = {
|
type DataEntryMap = {
|
||||||
"blog": Record<string, {
|
"blog": Record<string, {
|
||||||
id: string;
|
id: string;
|
||||||
render(): Render[".md"];
|
body?: string;
|
||||||
slug: string;
|
|
||||||
body: string;
|
|
||||||
collection: "blog";
|
collection: "blog";
|
||||||
data: any;
|
data: any;
|
||||||
rendered?: RenderedContent;
|
rendered?: RenderedContent;
|
||||||
@@ -174,9 +130,7 @@ declare module 'astro:content' {
|
|||||||
}>;
|
}>;
|
||||||
"products": Record<string, {
|
"products": Record<string, {
|
||||||
id: string;
|
id: string;
|
||||||
render(): Render[".md"];
|
body?: string;
|
||||||
slug: string;
|
|
||||||
body: string;
|
|
||||||
collection: "products";
|
collection: "products";
|
||||||
data: any;
|
data: any;
|
||||||
rendered?: RenderedContent;
|
rendered?: RenderedContent;
|
||||||
@@ -185,8 +139,6 @@ declare module 'astro:content' {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
type AnyEntryMap = ContentEntryMap & DataEntryMap;
|
|
||||||
|
|
||||||
type ExtractLoaderTypes<T> = T extends import('astro/loaders').LiveLoader<
|
type ExtractLoaderTypes<T> = T extends import('astro/loaders').LiveLoader<
|
||||||
infer TData,
|
infer TData,
|
||||||
infer TEntryFilter,
|
infer TEntryFilter,
|
||||||
@@ -195,7 +147,6 @@ declare module 'astro:content' {
|
|||||||
>
|
>
|
||||||
? { data: TData; entryFilter: TEntryFilter; collectionFilter: TCollectionFilter; error: TError }
|
? { data: TData; entryFilter: TEntryFilter; collectionFilter: TCollectionFilter; error: TError }
|
||||||
: { data: never; entryFilter: never; collectionFilter: never; error: never };
|
: { data: never; entryFilter: never; collectionFilter: never; error: never };
|
||||||
type ExtractDataType<T> = ExtractLoaderTypes<T>['data'];
|
|
||||||
type ExtractEntryFilterType<T> = ExtractLoaderTypes<T>['entryFilter'];
|
type ExtractEntryFilterType<T> = ExtractLoaderTypes<T>['entryFilter'];
|
||||||
type ExtractCollectionFilterType<T> = ExtractLoaderTypes<T>['collectionFilter'];
|
type ExtractCollectionFilterType<T> = ExtractLoaderTypes<T>['collectionFilter'];
|
||||||
type ExtractErrorType<T> = ExtractLoaderTypes<T>['error'];
|
type ExtractErrorType<T> = ExtractLoaderTypes<T>['error'];
|
||||||
|
|||||||
1569
package-lock.json
generated
1569
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -10,10 +10,10 @@
|
|||||||
"db:seed": "node db/seed.js"
|
"db:seed": "node db/seed.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@astrojs/db": "^0.14.0",
|
"@astrojs/db": "^0.20.1",
|
||||||
"@astrojs/sitemap": "^3.2.0",
|
"@astrojs/sitemap": "^3.7.2",
|
||||||
"@astrojs/tailwind": "^5.1.4",
|
"@astrojs/tailwind": "^5.1.4",
|
||||||
"astro": "^5.1.1",
|
"astro": "^6.1.2",
|
||||||
"astro-consent": "^1.0.0",
|
"astro-consent": "^1.0.0",
|
||||||
"drizzle-orm": "^0.38.2",
|
"drizzle-orm": "^0.38.2",
|
||||||
"tailwindcss": "^3.4.17"
|
"tailwindcss": "^3.4.17"
|
||||||
|
|||||||
Reference in New Issue
Block a user