chore: update generated types

This commit is contained in:
Peter Steinberger
2026-01-04 02:18:21 +01:00
parent d104bed8fb
commit 6c4d62777e
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
"files": {
"includes": [
"**",
+8
View File
@@ -12,12 +12,16 @@ import type * as auth from "../auth.js";
import type * as comments from "../comments.js";
import type * as downloads from "../downloads.js";
import type * as http from "../http.js";
import type * as httpApi from "../httpApi.js";
import type * as lib_access from "../lib/access.js";
import type * as lib_apiTokenAuth from "../lib/apiTokenAuth.js";
import type * as lib_embeddings from "../lib/embeddings.js";
import type * as lib_skills from "../lib/skills.js";
import type * as lib_tokens from "../lib/tokens.js";
import type * as search from "../search.js";
import type * as skills from "../skills.js";
import type * as stars from "../stars.js";
import type * as tokens from "../tokens.js";
import type * as uploads from "../uploads.js";
import type * as users from "../users.js";
@@ -32,12 +36,16 @@ declare const fullApi: ApiFromModules<{
comments: typeof comments;
downloads: typeof downloads;
http: typeof http;
httpApi: typeof httpApi;
"lib/access": typeof lib_access;
"lib/apiTokenAuth": typeof lib_apiTokenAuth;
"lib/embeddings": typeof lib_embeddings;
"lib/skills": typeof lib_skills;
"lib/tokens": typeof lib_tokens;
search: typeof search;
skills: typeof skills;
stars: typeof stars;
tokens: typeof tokens;
uploads: typeof uploads;
users: typeof users;
}>;