This commit is contained in:
2025-10-14 13:45:37 +02:00
parent 2e1157616f
commit 7b7a4e5709
3 changed files with 5 additions and 4 deletions

View File

@@ -3,10 +3,11 @@
import type { Collection, TypedPocketbase } from "./schemas";
import type { LoaderContext } from "astro/loaders";
import Pocketbase from "pocketbase";
import type AdminAuthResponse from "pocketbase";
import Client from "pocketbase";
import type { RecordAuthResponse, } from "pocketbase";
let pocketbase: TypedPocketbase;
let auth: Promise<AdminAuthResponse>;
let auth: Promise<RecordAuthResponse<Client>>;
let isAuthenticating = false;
export function pocketbaseLoader({ collection }: PocketbaseLoaderOptions) {

View File

@@ -2,7 +2,7 @@
"lockfileVersion": 1,
"workspaces": {
"": {
"name": "astro-pocketbase-continued",
"name": "astro-pocketbase-continue",
"dependencies": {
"astro-integration-kit": "^0.19.0",
"dotenv": "^17.2.3",

View File

@@ -1,5 +1,5 @@
{
"name": "astro-pocketbase-continued",
"name": "astro-pocketbase-continue",
"version": "0.12.0",
"description": "Astro integration to ease the use of PocketBase in your Astro projects",
"author": {