kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
chore: update eslint config
rodzic
69d6957cba
commit
63f02bf810
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"extends": "@fisch0920/config/tsconfig-node",
|
||||
"include": ["**/*.ts"],
|
||||
"include": ["src"],
|
||||
"exclude": ["node_modules", "dist"]
|
||||
}
|
||||
|
|
|
@ -3,15 +3,14 @@
|
|||
*/
|
||||
|
||||
import {
|
||||
aiFunction,
|
||||
AIFunctionsProvider,
|
||||
aiFunction,
|
||||
assert,
|
||||
getEnv,
|
||||
pick,
|
||||
sanitizeSearchParams
|
||||
} from '@agentic/core'
|
||||
import defaultKy, { type KyInstance } from 'ky'
|
||||
|
||||
import { notion } from './notion'
|
||||
|
||||
/**
|
||||
|
@ -74,7 +73,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
})
|
||||
async getUser(params: notion.GetUserParams): Promise<notion.GetUserResponse> {
|
||||
return this.ky
|
||||
.get(`/users/${params.user_id}`)
|
||||
.get(`/users/${params['user_id']}`)
|
||||
.json<notion.GetUserResponse>()
|
||||
}
|
||||
|
||||
|
@ -126,7 +125,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
})
|
||||
async getPage(params: notion.GetPageParams): Promise<notion.GetPageResponse> {
|
||||
return this.ky
|
||||
.get(`/pages/${params.page_id}`, {
|
||||
.get(`/pages/${params['page_id']}`, {
|
||||
searchParams: sanitizeSearchParams(pick(params, 'filter_properties'))
|
||||
})
|
||||
.json<notion.GetPageResponse>()
|
||||
|
@ -144,7 +143,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
params: notion.UpdatePageParams
|
||||
): Promise<notion.UpdatePageResponse> {
|
||||
return this.ky
|
||||
.patch(`/pages/${params.page_id}`, {
|
||||
.patch(`/pages/${params['page_id']}`, {
|
||||
json: pick(params, 'properties', 'archived')
|
||||
})
|
||||
.json<notion.UpdatePageResponse>()
|
||||
|
@ -162,7 +161,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
params: notion.GetPagePropertyParams
|
||||
): Promise<notion.GetPagePropertyResponse> {
|
||||
return this.ky
|
||||
.get(`/pages/${params.page_id}/properties/${params.property_id}`, {
|
||||
.get(`/pages/${params['page_id']}/properties/${params['property_id']}`, {
|
||||
searchParams: sanitizeSearchParams(
|
||||
pick(params, 'start_cursor', 'page_size')
|
||||
)
|
||||
|
@ -182,7 +181,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
params: notion.GetBlockParams
|
||||
): Promise<notion.GetBlockResponse> {
|
||||
return this.ky
|
||||
.get(`/blocks/${params.block_id}`)
|
||||
.get(`/blocks/${params['block_id']}`)
|
||||
.json<notion.GetBlockResponse>()
|
||||
}
|
||||
|
||||
|
@ -198,7 +197,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
params: notion.DeleteBlockParams
|
||||
): Promise<notion.DeleteBlockResponse> {
|
||||
return this.ky
|
||||
.delete(`/blocks/${params.block_id}`)
|
||||
.delete(`/blocks/${params['block_id']}`)
|
||||
.json<notion.DeleteBlockResponse>()
|
||||
}
|
||||
|
||||
|
@ -214,7 +213,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
params: notion.UpdateBlockParams
|
||||
): Promise<notion.UpdateBlockResponse> {
|
||||
return this.ky
|
||||
.patch(`/blocks/${params.block_id}`, {
|
||||
.patch(`/blocks/${params['block_id']}`, {
|
||||
json: pick(
|
||||
params,
|
||||
'paragraph',
|
||||
|
@ -259,7 +258,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
params: notion.ListBlockChildrenParams
|
||||
): Promise<notion.ListBlockChildrenResponse> {
|
||||
return this.ky
|
||||
.get(`/blocks/${params.block_id}/children`, {
|
||||
.get(`/blocks/${params['block_id']}/children`, {
|
||||
searchParams: sanitizeSearchParams(
|
||||
pick(params, 'start_cursor', 'page_size')
|
||||
)
|
||||
|
@ -279,7 +278,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
params: notion.AppendBlockChildrenParams
|
||||
): Promise<notion.AppendBlockChildrenResponse> {
|
||||
return this.ky
|
||||
.patch(`/blocks/${params.block_id}/children`, {
|
||||
.patch(`/blocks/${params['block_id']}/children`, {
|
||||
json: pick(params, 'children')
|
||||
})
|
||||
.json<notion.AppendBlockChildrenResponse>()
|
||||
|
@ -297,7 +296,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
params: notion.GetDatabaseParams
|
||||
): Promise<notion.GetDatabaseResponse> {
|
||||
return this.ky
|
||||
.get(`/databases/${params.database_id}`)
|
||||
.get(`/databases/${params['database_id']}`)
|
||||
.json<notion.GetDatabaseResponse>()
|
||||
}
|
||||
|
||||
|
@ -313,7 +312,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
params: notion.UpdateDatabaseParams
|
||||
): Promise<notion.UpdateDatabaseResponse> {
|
||||
return this.ky
|
||||
.patch(`/databases/${params.database_id}`, {
|
||||
.patch(`/databases/${params['database_id']}`, {
|
||||
json: pick(
|
||||
params,
|
||||
'title',
|
||||
|
@ -340,7 +339,7 @@ export class NotionClient extends AIFunctionsProvider {
|
|||
params: notion.QueryDatabaseParams
|
||||
): Promise<notion.QueryDatabaseResponse> {
|
||||
return this.ky
|
||||
.post(`/databases/${params.database_id}/query`, {
|
||||
.post(`/databases/${params['database_id']}/query`, {
|
||||
searchParams: sanitizeSearchParams(pick(params, 'filter_properties')),
|
||||
json: pick(
|
||||
params,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"extends": "@fisch0920/config/tsconfig-node",
|
||||
"include": ["src", "bin", "**/*.ts"],
|
||||
"include": ["src", "bin", "fixtures/**/*.ts"],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
|
|
|
@ -19,8 +19,8 @@ catalogs:
|
|||
specifier: ^1.1.0
|
||||
version: 1.1.0
|
||||
'@fisch0920/config':
|
||||
specifier: ^1.0.1
|
||||
version: 1.0.1
|
||||
specifier: ^1.0.2
|
||||
version: 1.0.2
|
||||
'@googleapis/customsearch':
|
||||
specifier: ^3.2.0
|
||||
version: 3.2.0
|
||||
|
@ -202,7 +202,7 @@ importers:
|
|||
devDependencies:
|
||||
'@fisch0920/config':
|
||||
specifier: 'catalog:'
|
||||
version: 1.0.1(@typescript-eslint/parser@8.29.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/utils@8.29.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2))(prettier@3.5.3)(typescript@5.8.2)(vitest@3.1.1(@types/debug@4.1.12)(@types/node@22.13.16)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))
|
||||
version: 1.0.2(@typescript-eslint/parser@8.29.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/utils@8.29.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2))(prettier@3.5.3)(typescript@5.8.2)(vitest@3.1.1(@types/debug@4.1.12)(@types/node@22.13.16)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))
|
||||
'@types/node':
|
||||
specifier: 'catalog:'
|
||||
version: 22.13.16
|
||||
|
@ -1805,8 +1805,8 @@ packages:
|
|||
'@fastify/deepmerge@2.0.2':
|
||||
resolution: {integrity: sha512-3wuLdX5iiiYeZWP6bQrjqhrcvBIf0NHbQH1Ur1WbHvoiuTYUEItgygea3zs8aHpiitn0lOB8gX20u1qO+FDm7Q==}
|
||||
|
||||
'@fisch0920/config@1.0.1':
|
||||
resolution: {integrity: sha512-j3oEfzRHv34sVOXuCO6UZ4032ylKz270gBGiNk5WpyZ2MVaOncywYD5UpxgVeRC56BjAAIljSFx9/kVbHtoV/A==}
|
||||
'@fisch0920/config@1.0.2':
|
||||
resolution: {integrity: sha512-9/44RKlsZZ2Hnq+etYR7YviyjtlMDDCfv9t5RSv3eeG4fLThdyPSmaFp5mL4g26bMZDmUycev0jV1HufmISdSw==}
|
||||
engines: {node: '>=18'}
|
||||
peerDependencies:
|
||||
eslint: '>= 9'
|
||||
|
@ -3576,8 +3576,8 @@ packages:
|
|||
resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
|
||||
engines: {node: '>=16'}
|
||||
|
||||
caniuse-lite@1.0.30001709:
|
||||
resolution: {integrity: sha512-NgL3vUTnDrPCZ3zTahp4fsugQ4dc7EKTSzwQDPEel6DMoMnfH2jhry9n2Zm8onbSR+f/QtKHFOA+iAQu4kbtWA==}
|
||||
caniuse-lite@1.0.30001710:
|
||||
resolution: {integrity: sha512-B5C0I0UmaGqHgo5FuqJ7hBd4L57A4dDD+Xi+XX1nXOoxGeDdY4Ko38qJYOyqznBVJEqON5p8P1x5zRR3+rsnxA==}
|
||||
|
||||
chai@5.2.0:
|
||||
resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==}
|
||||
|
@ -3917,8 +3917,8 @@ packages:
|
|||
ee-first@1.1.1:
|
||||
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
||||
|
||||
electron-to-chromium@1.5.130:
|
||||
resolution: {integrity: sha512-Ou2u7L9j2XLZbhqzyX0jWDj6gA8D3jIfVzt4rikLf3cGBa0VdReuFimBKS9tQJA4+XpeCxj1NoWlfBXzbMa9IA==}
|
||||
electron-to-chromium@1.5.132:
|
||||
resolution: {integrity: sha512-QgX9EBvWGmvSRa74zqfnG7+Eno0Ak0vftBll0Pt2/z5b3bEGYL6OUXLgKPtvx73dn3dvwrlyVkjPKRRlhLYTEg==}
|
||||
|
||||
emoji-regex@10.4.0:
|
||||
resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
|
||||
|
@ -4084,8 +4084,8 @@ packages:
|
|||
peerDependencies:
|
||||
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
|
||||
|
||||
eslint-plugin-react@7.37.4:
|
||||
resolution: {integrity: sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==}
|
||||
eslint-plugin-react@7.37.5:
|
||||
resolution: {integrity: sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==}
|
||||
engines: {node: '>=4'}
|
||||
peerDependencies:
|
||||
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
|
||||
|
@ -7393,7 +7393,7 @@ snapshots:
|
|||
|
||||
'@fastify/deepmerge@2.0.2': {}
|
||||
|
||||
'@fisch0920/config@1.0.1(@typescript-eslint/parser@8.29.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/utils@8.29.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2))(prettier@3.5.3)(typescript@5.8.2)(vitest@3.1.1(@types/debug@4.1.12)(@types/node@22.13.16)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))':
|
||||
'@fisch0920/config@1.0.2(@typescript-eslint/parser@8.29.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(@typescript-eslint/utils@8.29.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2))(prettier@3.5.3)(typescript@5.8.2)(vitest@3.1.1(@types/debug@4.1.12)(@types/node@22.13.16)(jiti@2.4.2)(tsx@4.19.3)(yaml@2.7.0))':
|
||||
dependencies:
|
||||
'@eslint/js': 9.23.0
|
||||
'@total-typescript/ts-reset': 0.6.1
|
||||
|
@ -7404,7 +7404,7 @@ snapshots:
|
|||
eslint-plugin-jest-dom: 5.5.0(eslint@9.23.0(jiti@2.4.2))
|
||||
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.23.0(jiti@2.4.2))
|
||||
eslint-plugin-perfectionist: 4.11.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)
|
||||
eslint-plugin-react: 7.37.4(eslint@9.23.0(jiti@2.4.2))
|
||||
eslint-plugin-react: 7.37.5(eslint@9.23.0(jiti@2.4.2))
|
||||
eslint-plugin-react-hooks: 5.2.0(eslint@9.23.0(jiti@2.4.2))
|
||||
eslint-plugin-security: 3.0.1
|
||||
eslint-plugin-simple-import-sort: 12.1.1(eslint@9.23.0(jiti@2.4.2))
|
||||
|
@ -9299,7 +9299,7 @@ snapshots:
|
|||
|
||||
'@typescript-eslint/utils@8.29.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)':
|
||||
dependencies:
|
||||
'@eslint-community/eslint-utils': 4.5.1(eslint@9.23.0(jiti@2.4.2))
|
||||
'@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2))
|
||||
'@typescript-eslint/scope-manager': 8.29.0
|
||||
'@typescript-eslint/types': 8.29.0
|
||||
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.2)
|
||||
|
@ -9548,7 +9548,7 @@ snapshots:
|
|||
|
||||
array-buffer-byte-length@1.0.2:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
is-array-buffer: 3.0.5
|
||||
|
||||
array-flatten@1.1.1: {}
|
||||
|
@ -9559,7 +9559,7 @@ snapshots:
|
|||
define-properties: 1.2.1
|
||||
es-abstract: 1.23.9
|
||||
es-object-atoms: 1.1.1
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
is-string: 1.1.1
|
||||
|
||||
array.prototype.findlast@1.2.5:
|
||||
|
@ -9610,7 +9610,7 @@ snapshots:
|
|||
define-properties: 1.2.1
|
||||
es-abstract: 1.23.9
|
||||
es-errors: 1.3.0
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
is-array-buffer: 3.0.5
|
||||
|
||||
assertion-error@2.0.1: {}
|
||||
|
@ -9707,8 +9707,8 @@ snapshots:
|
|||
|
||||
browserslist@4.24.4:
|
||||
dependencies:
|
||||
caniuse-lite: 1.0.30001709
|
||||
electron-to-chromium: 1.5.130
|
||||
caniuse-lite: 1.0.30001710
|
||||
electron-to-chromium: 1.5.132
|
||||
node-releases: 2.0.19
|
||||
update-browserslist-db: 1.1.3(browserslist@4.24.4)
|
||||
|
||||
|
@ -9770,7 +9770,7 @@ snapshots:
|
|||
dependencies:
|
||||
call-bind-apply-helpers: 1.0.2
|
||||
es-define-property: 1.0.1
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
set-function-length: 1.2.2
|
||||
|
||||
call-bound@1.0.3:
|
||||
|
@ -9791,7 +9791,7 @@ snapshots:
|
|||
|
||||
camelcase@8.0.0: {}
|
||||
|
||||
caniuse-lite@1.0.30001709: {}
|
||||
caniuse-lite@1.0.30001710: {}
|
||||
|
||||
chai@5.2.0:
|
||||
dependencies:
|
||||
|
@ -9954,19 +9954,19 @@ snapshots:
|
|||
|
||||
data-view-buffer@1.0.2:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
es-errors: 1.3.0
|
||||
is-data-view: 1.0.2
|
||||
|
||||
data-view-byte-length@1.0.2:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
es-errors: 1.3.0
|
||||
is-data-view: 1.0.2
|
||||
|
||||
data-view-byte-offset@1.0.1:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
es-errors: 1.3.0
|
||||
is-data-view: 1.0.2
|
||||
|
||||
|
@ -10108,7 +10108,7 @@ snapshots:
|
|||
|
||||
ee-first@1.1.1: {}
|
||||
|
||||
electron-to-chromium@1.5.130: {}
|
||||
electron-to-chromium@1.5.132: {}
|
||||
|
||||
emoji-regex@10.4.0: {}
|
||||
|
||||
|
@ -10145,7 +10145,7 @@ snapshots:
|
|||
arraybuffer.prototype.slice: 1.0.4
|
||||
available-typed-arrays: 1.0.7
|
||||
call-bind: 1.0.8
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
data-view-buffer: 1.0.2
|
||||
data-view-byte-length: 1.0.2
|
||||
data-view-byte-offset: 1.0.1
|
||||
|
@ -10155,7 +10155,7 @@ snapshots:
|
|||
es-set-tostringtag: 2.1.0
|
||||
es-to-primitive: 1.3.0
|
||||
function.prototype.name: 1.1.8
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
get-proto: 1.0.1
|
||||
get-symbol-description: 1.1.0
|
||||
globalthis: 1.0.4
|
||||
|
@ -10200,13 +10200,13 @@ snapshots:
|
|||
es-iterator-helpers@1.2.1:
|
||||
dependencies:
|
||||
call-bind: 1.0.8
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
define-properties: 1.2.1
|
||||
es-abstract: 1.23.9
|
||||
es-errors: 1.3.0
|
||||
es-set-tostringtag: 2.1.0
|
||||
function-bind: 1.1.2
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
globalthis: 1.0.4
|
||||
gopd: 1.2.0
|
||||
has-property-descriptors: 1.0.2
|
||||
|
@ -10367,7 +10367,7 @@ snapshots:
|
|||
dependencies:
|
||||
eslint: 9.23.0(jiti@2.4.2)
|
||||
|
||||
eslint-plugin-react@7.37.4(eslint@9.23.0(jiti@2.4.2)):
|
||||
eslint-plugin-react@7.37.5(eslint@9.23.0(jiti@2.4.2)):
|
||||
dependencies:
|
||||
array-includes: 3.1.8
|
||||
array.prototype.findlast: 1.2.5
|
||||
|
@ -10784,7 +10784,7 @@ snapshots:
|
|||
function.prototype.name@1.1.8:
|
||||
dependencies:
|
||||
call-bind: 1.0.8
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
define-properties: 1.2.1
|
||||
functions-have-names: 1.2.3
|
||||
hasown: 2.0.2
|
||||
|
@ -10875,9 +10875,9 @@ snapshots:
|
|||
|
||||
get-symbol-description@1.1.0:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
es-errors: 1.3.0
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
|
||||
get-tsconfig@4.10.0:
|
||||
dependencies:
|
||||
|
@ -11098,15 +11098,15 @@ snapshots:
|
|||
is-array-buffer@3.0.5:
|
||||
dependencies:
|
||||
call-bind: 1.0.8
|
||||
call-bound: 1.0.4
|
||||
get-intrinsic: 1.3.0
|
||||
call-bound: 1.0.3
|
||||
get-intrinsic: 1.2.7
|
||||
|
||||
is-arrayish@0.2.1: {}
|
||||
|
||||
is-async-function@2.1.1:
|
||||
dependencies:
|
||||
async-function: 1.0.0
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
get-proto: 1.0.1
|
||||
has-tostringtag: 1.0.2
|
||||
safe-regex-test: 1.1.0
|
||||
|
@ -11117,7 +11117,7 @@ snapshots:
|
|||
|
||||
is-boolean-object@1.2.2:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
has-tostringtag: 1.0.2
|
||||
|
||||
is-builtin-module@5.0.0:
|
||||
|
@ -11132,20 +11132,20 @@ snapshots:
|
|||
|
||||
is-data-view@1.0.2:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
get-intrinsic: 1.3.0
|
||||
call-bound: 1.0.3
|
||||
get-intrinsic: 1.2.7
|
||||
is-typed-array: 1.1.15
|
||||
|
||||
is-date-object@1.1.0:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
has-tostringtag: 1.0.2
|
||||
|
||||
is-extglob@2.1.1: {}
|
||||
|
||||
is-finalizationregistry@1.1.1:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
|
||||
is-fullwidth-code-point@3.0.0: {}
|
||||
|
||||
|
@ -11157,7 +11157,7 @@ snapshots:
|
|||
|
||||
is-generator-function@1.1.0:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
get-proto: 1.0.1
|
||||
has-tostringtag: 1.0.2
|
||||
safe-regex-test: 1.1.0
|
||||
|
@ -11170,7 +11170,7 @@ snapshots:
|
|||
|
||||
is-number-object@1.1.1:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
has-tostringtag: 1.0.2
|
||||
|
||||
is-number@7.0.0: {}
|
||||
|
@ -11187,7 +11187,7 @@ snapshots:
|
|||
|
||||
is-regex@1.2.1:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
gopd: 1.2.0
|
||||
has-tostringtag: 1.0.2
|
||||
hasown: 2.0.2
|
||||
|
@ -11196,7 +11196,7 @@ snapshots:
|
|||
|
||||
is-shared-array-buffer@1.0.4:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
|
||||
is-stream@2.0.1: {}
|
||||
|
||||
|
@ -11206,12 +11206,12 @@ snapshots:
|
|||
|
||||
is-string@1.1.1:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
has-tostringtag: 1.0.2
|
||||
|
||||
is-symbol@1.1.1:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
has-symbols: 1.1.0
|
||||
safe-regex-test: 1.1.0
|
||||
|
||||
|
@ -11225,12 +11225,12 @@ snapshots:
|
|||
|
||||
is-weakref@1.1.1:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
|
||||
is-weakset@2.0.4:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
get-intrinsic: 1.3.0
|
||||
call-bound: 1.0.3
|
||||
get-intrinsic: 1.2.7
|
||||
|
||||
isarray@2.0.5: {}
|
||||
|
||||
|
@ -11242,7 +11242,7 @@ snapshots:
|
|||
dependencies:
|
||||
define-data-property: 1.1.4
|
||||
es-object-atoms: 1.1.1
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
get-proto: 1.0.1
|
||||
has-symbols: 1.1.0
|
||||
set-function-name: 2.0.2
|
||||
|
@ -11678,7 +11678,7 @@ snapshots:
|
|||
object.assign@4.1.7:
|
||||
dependencies:
|
||||
call-bind: 1.0.8
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
define-properties: 1.2.1
|
||||
es-object-atoms: 1.1.1
|
||||
has-symbols: 1.1.0
|
||||
|
@ -11707,7 +11707,7 @@ snapshots:
|
|||
object.values@1.2.1:
|
||||
dependencies:
|
||||
call-bind: 1.0.8
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
define-properties: 1.2.1
|
||||
es-object-atoms: 1.1.1
|
||||
|
||||
|
@ -11811,7 +11811,7 @@ snapshots:
|
|||
|
||||
own-keys@1.0.1:
|
||||
dependencies:
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
object-keys: 1.1.1
|
||||
safe-push-apply: 1.0.0
|
||||
|
||||
|
@ -12154,7 +12154,7 @@ snapshots:
|
|||
es-abstract: 1.23.9
|
||||
es-errors: 1.3.0
|
||||
es-object-atoms: 1.1.1
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
get-proto: 1.0.1
|
||||
which-builtin-type: 1.2.1
|
||||
|
||||
|
@ -12256,8 +12256,8 @@ snapshots:
|
|||
safe-array-concat@1.1.3:
|
||||
dependencies:
|
||||
call-bind: 1.0.8
|
||||
call-bound: 1.0.4
|
||||
get-intrinsic: 1.3.0
|
||||
call-bound: 1.0.3
|
||||
get-intrinsic: 1.2.7
|
||||
has-symbols: 1.1.0
|
||||
isarray: 2.0.5
|
||||
|
||||
|
@ -12270,7 +12270,7 @@ snapshots:
|
|||
|
||||
safe-regex-test@1.1.0:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
es-errors: 1.3.0
|
||||
is-regex: 1.2.1
|
||||
|
||||
|
@ -12354,7 +12354,7 @@ snapshots:
|
|||
define-data-property: 1.1.4
|
||||
es-errors: 1.3.0
|
||||
function-bind: 1.1.2
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
gopd: 1.2.0
|
||||
has-property-descriptors: 1.0.2
|
||||
|
||||
|
@ -12519,12 +12519,12 @@ snapshots:
|
|||
string.prototype.matchall@4.0.12:
|
||||
dependencies:
|
||||
call-bind: 1.0.8
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
define-properties: 1.2.1
|
||||
es-abstract: 1.23.9
|
||||
es-errors: 1.3.0
|
||||
es-object-atoms: 1.1.1
|
||||
get-intrinsic: 1.3.0
|
||||
get-intrinsic: 1.2.7
|
||||
gopd: 1.2.0
|
||||
has-symbols: 1.1.0
|
||||
internal-slot: 1.1.0
|
||||
|
@ -12540,7 +12540,7 @@ snapshots:
|
|||
string.prototype.trim@1.2.10:
|
||||
dependencies:
|
||||
call-bind: 1.0.8
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
define-data-property: 1.1.4
|
||||
define-properties: 1.2.1
|
||||
es-abstract: 1.23.9
|
||||
|
@ -12550,7 +12550,7 @@ snapshots:
|
|||
string.prototype.trimend@1.0.9:
|
||||
dependencies:
|
||||
call-bind: 1.0.8
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
define-properties: 1.2.1
|
||||
es-object-atoms: 1.1.1
|
||||
|
||||
|
@ -12815,7 +12815,7 @@ snapshots:
|
|||
|
||||
typed-array-buffer@1.0.3:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
es-errors: 1.3.0
|
||||
is-typed-array: 1.1.15
|
||||
|
||||
|
@ -12865,7 +12865,7 @@ snapshots:
|
|||
|
||||
unbox-primitive@1.1.0:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
has-bigints: 1.1.0
|
||||
has-symbols: 1.1.0
|
||||
which-boxed-primitive: 1.1.1
|
||||
|
@ -13020,7 +13020,7 @@ snapshots:
|
|||
|
||||
which-builtin-type@1.2.1:
|
||||
dependencies:
|
||||
call-bound: 1.0.4
|
||||
call-bound: 1.0.3
|
||||
function.prototype.name: 1.1.8
|
||||
has-tostringtag: 1.0.2
|
||||
is-async-function: 2.1.1
|
||||
|
|
|
@ -10,7 +10,7 @@ catalog:
|
|||
'@apidevtools/swagger-parser': ^10.1.1
|
||||
'@dexaai/dexter': ^4.1.1
|
||||
'@e2b/code-interpreter': ^1.1.0
|
||||
'@fisch0920/config': ^1.0.1
|
||||
'@fisch0920/config': ^1.0.2
|
||||
'@langchain/core': ^0.3.43
|
||||
'@langchain/openai': ^0.5.2
|
||||
'@mastra/core': ^0.7.0
|
||||
|
|
Ładowanie…
Reference in New Issue