This commit is contained in:
2025-10-10 17:02:41 +00:00
parent b289cb67cf
commit 00dd0c69a5
4 changed files with 8166 additions and 8 deletions

8158
deno.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -17,7 +17,7 @@
"@git.zone/tsbuild": "^2.6.8", "@git.zone/tsbuild": "^2.6.8",
"@git.zone/tsbundle": "^2.5.1", "@git.zone/tsbundle": "^2.5.1",
"@git.zone/tsrun": "^1.3.3", "@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^2.4.1", "@git.zone/tstest": "^2.4.2",
"@push.rocks/qenv": "^6.1.3", "@push.rocks/qenv": "^6.1.3",
"@push.rocks/tapbundle": "^6.0.3", "@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^22.12.0" "@types/node": "^22.12.0"

10
pnpm-lock.yaml generated
View File

@@ -22,8 +22,8 @@ importers:
specifier: ^1.3.3 specifier: ^1.3.3
version: 1.3.3 version: 1.3.3
'@git.zone/tstest': '@git.zone/tstest':
specifier: ^2.4.1 specifier: ^2.4.2
version: 2.4.1(@aws-sdk/credential-providers@3.734.0)(socks@2.8.7)(typescript@5.9.2) version: 2.4.2(@aws-sdk/credential-providers@3.734.0)(socks@2.8.7)(typescript@5.9.2)
'@push.rocks/qenv': '@push.rocks/qenv':
specifier: ^6.1.3 specifier: ^6.1.3
version: 6.1.3 version: 6.1.3
@@ -667,8 +667,8 @@ packages:
resolution: {integrity: sha512-DDzWunkxXLtXJTxBf4EioXLwhuqdA2VzdTmOzWrw4Z4Qnms/YM67q36yajwNohAajPYyRz5DayU0ikrceFXyVw==} resolution: {integrity: sha512-DDzWunkxXLtXJTxBf4EioXLwhuqdA2VzdTmOzWrw4Z4Qnms/YM67q36yajwNohAajPYyRz5DayU0ikrceFXyVw==}
hasBin: true hasBin: true
'@git.zone/tstest@2.4.1': '@git.zone/tstest@2.4.2':
resolution: {integrity: sha512-kOZQbqAHSlskQ24LA2QlhHn8ac//VUIP3hYkga4ZuWgmReJ730ZZ8yYsiSU3sZB0alC/YZPirvM7JRHKH1/xww==} resolution: {integrity: sha512-Lcxuruk/ii1xFKNbf2b1lVYtl9d8ppTpqfF7qtWlcEMdLYW4/42wZ3dcG+jQlCPikQngEYfqSVaJSLyAWzkEGQ==}
hasBin: true hasBin: true
'@hapi/bourne@3.0.0': '@hapi/bourne@3.0.0':
@@ -5731,7 +5731,7 @@ snapshots:
'@push.rocks/smartshell': 3.2.2 '@push.rocks/smartshell': 3.2.2
tsx: 4.19.2 tsx: 4.19.2
'@git.zone/tstest@2.4.1(@aws-sdk/credential-providers@3.734.0)(socks@2.8.7)(typescript@5.9.2)': '@git.zone/tstest@2.4.2(@aws-sdk/credential-providers@3.734.0)(socks@2.8.7)(typescript@5.9.2)':
dependencies: dependencies:
'@api.global/typedserver': 3.0.79 '@api.global/typedserver': 3.0.79
'@git.zone/tsbundle': 2.5.1 '@git.zone/tsbundle': 2.5.1

View File

@@ -5,8 +5,8 @@
import { generateToken } from './ghost.jwt.js'; import { generateToken } from './ghost.jwt.js';
import type { THttpMethod, IBrowseOptions, IGhostAPIResponse, IGhostErrorResponse } from './ghost.types.js'; import type { THttpMethod, IBrowseOptions, IGhostAPIResponse, IGhostErrorResponse } from './ghost.types.js';
import * as fs from 'fs'; import * as fs from 'node:fs';
import * as path from 'path'; import * as path from 'node:path';
export interface IGhostAdminAPIOptions { export interface IGhostAdminAPIOptions {
url: string; url: string;