diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 07509b4..32b319f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.9" + ".": "0.0.10" } diff --git a/.stats.yml b/.stats.yml index 453587a..9aa0349 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,2 +1,2 @@ configured_endpoints: 40 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/plastic-labs%2Fhoncho-96679f6cf67d77d1e9587886a8cdbb6e2a132b9f8abd22c056e479fe3ff89a6f.yml +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/plastic-labs%2Fhoncho-e4c301de216e3c01c130dfbf82f7d5272939867cc4b452aa00d6f0e081767bec.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index 78d7fc2..b6c1ed8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.0.10 (2024-11-15) + +Full Changelog: [v0.0.9...v0.0.10](https://github.com/plastic-labs/honcho-node/compare/v0.0.9...v0.0.10) + +### Features + +* **api:** api update ([#59](https://github.com/plastic-labs/honcho-node/issues/59)) ([aeac0e4](https://github.com/plastic-labs/honcho-node/commit/aeac0e4110048c0860c984b92a2401eb34a13b8a)) + + +### Chores + +* rebuild project due to codegen change ([#56](https://github.com/plastic-labs/honcho-node/issues/56)) ([126da8f](https://github.com/plastic-labs/honcho-node/commit/126da8f6c1b627b19a7b4900ad8a84c19da6799d)) +* rebuild project due to codegen change ([#58](https://github.com/plastic-labs/honcho-node/issues/58)) ([3e76822](https://github.com/plastic-labs/honcho-node/commit/3e768223717585f365825ced6c88bb33f7cd8ddb)) + ## 0.0.9 (2024-11-08) Full Changelog: [v0.0.8...v0.0.9](https://github.com/plastic-labs/honcho-node/compare/v0.0.8...v0.0.9) diff --git a/README.md b/README.md index 0028d48..6d749f5 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ for (const user of page.items) { // Convenience methods are provided for manually paginating: while (page.hasNextPage()) { - page = page.getNextPage(); + page = await page.getNextPage(); // ... } ``` @@ -316,6 +316,15 @@ TypeScript >= 4.5 is supported. The following runtimes are supported: +- Web browsers (Up-to-date Chrome, Firefox, Safari, Edge, and more) +- Node.js 18 LTS or later ([non-EOL](https://endoflife.date/nodejs)) versions. +- Deno v1.28.0 or higher, using `import Honcho from "npm:honcho-ai"`. +- Bun 1.0 or later. +- Cloudflare Workers. +- Vercel Edge Runtime. +- Jest 28 or greater with the `"node"` environment (`"jsdom"` is not supported at this time). +- Nitro v2.6 or greater. + Note that React Native is not supported at this time. If you are interested in other runtime environments, please open or upvote an issue on GitHub. diff --git a/api.md b/api.md index b3a349c..4da7977 100644 --- a/api.md +++ b/api.md @@ -116,4 +116,4 @@ Methods: - client.apps.users.collections.documents.list(appId, userId, collectionId, { ...params }) -> DocumentsPage - client.apps.users.collections.documents.delete(appId, userId, collectionId, documentId) -> unknown - client.apps.users.collections.documents.get(appId, userId, collectionId, documentId) -> Document -- client.apps.users.collections.documents.query(appId, userId, collectionId, { ...params }) -> DocumentQueryResponse +- client.apps.users.collections.documents.query(appId, userId, collectionId, { ...params }) -> DocumentQueryResponse diff --git a/package.json b/package.json index 5ae029d..f0c6546 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "honcho-ai", - "version": "0.0.9", + "version": "0.0.10", "description": "The official TypeScript library for the Honcho API", "author": "Honcho ", "types": "dist/index.d.ts", @@ -45,7 +45,6 @@ "jest": "^29.4.0", "prettier": "^3.0.0", "ts-jest": "^29.1.0", - "ts-morph": "^19.0.0", "ts-node": "^10.5.0", "tsc-multi": "^1.1.0", "tsconfig-paths": "^4.0.0", diff --git a/src/index.ts b/src/index.ts index 06dfc8c..b432075 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,7 +14,6 @@ const environments = { local: 'http://localhost:8000', }; type Environment = keyof typeof environments; - export interface ClientOptions { /** * Defaults to process.env['HONCHO_API_KEY']. @@ -180,6 +179,22 @@ export class Honcho extends Core.APIClient { static fileFromPath = Uploads.fileFromPath; } +Honcho.Apps = Apps; +export declare namespace Honcho { + export type RequestOptions = Core.RequestOptions; + + export import Page = Pagination.Page; + export { type PageParams as PageParams, type PageResponse as PageResponse }; + + export { + Apps as Apps, + type App as App, + type AppCreateParams as AppCreateParams, + type AppUpdateParams as AppUpdateParams, + }; +} + +export { toFile, fileFromPath } from './uploads'; export { HonchoError, APIError, @@ -196,23 +211,4 @@ export { UnprocessableEntityError, } from './error'; -export import toFile = Uploads.toFile; -export import fileFromPath = Uploads.fileFromPath; - -Honcho.Apps = Apps; - -export declare namespace Honcho { - export type RequestOptions = Core.RequestOptions; - - export import Page = Pagination.Page; - export { type PageParams as PageParams, type PageResponse as PageResponse }; - - export { - Apps as Apps, - type App as App, - type AppCreateParams as AppCreateParams, - type AppUpdateParams as AppUpdateParams, - }; -} - export default Honcho; diff --git a/src/resources/apps/apps.ts b/src/resources/apps/apps.ts index a5d2102..cf7db2e 100644 --- a/src/resources/apps/apps.ts +++ b/src/resources/apps/apps.ts @@ -17,11 +17,7 @@ export class Apps extends APIResource { users: UsersAPI.Users = new UsersAPI.Users(this._client); /** - * Create an App - * - * Args: app (schemas.AppCreate): The App object containing any metadata - * - * Returns: schemas.App: Created App object + * Create a new App */ create(body: AppCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this._client.post('/v1/apps', { body, ...options }); @@ -29,11 +25,6 @@ export class Apps extends APIResource { /** * Update an App - * - * Args: app_id (str): The ID of the app to update app (schemas.AppUpdate): The App - * object containing any new metadata - * - * Returns: schemas.App: The App object of the updated App */ update(appId: string, body: AppUpdateParams, options?: Core.RequestOptions): Core.APIPromise { return this._client.put(`/v1/apps/${appId}`, { body, ...options }); @@ -41,10 +32,6 @@ export class Apps extends APIResource { /** * Get an App by ID - * - * Args: app_id (str): The ID of the app - * - * Returns: schemas.App: App object */ get(appId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/v1/apps/${appId}`, options); @@ -52,10 +39,6 @@ export class Apps extends APIResource { /** * Get an App by Name - * - * Args: app_name (str): The name of the app - * - * Returns: schemas.App: App object */ getByName(name: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/v1/apps/name/${name}`, options); @@ -63,10 +46,6 @@ export class Apps extends APIResource { /** * Get or Create an App - * - * Args: app_name (str): The name of the app - * - * Returns: schemas.App: App object */ getOrCreate(name: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/v1/apps/get_or_create/${name}`, options); diff --git a/src/resources/apps/users/collections/collections.ts b/src/resources/apps/users/collections/collections.ts index acc78e4..904cfb0 100644 --- a/src/resources/apps/users/collections/collections.ts +++ b/src/resources/apps/users/collections/collections.ts @@ -21,7 +21,7 @@ export class Collections extends APIResource { documents: DocumentsAPI.Documents = new DocumentsAPI.Documents(this._client); /** - * Create Collection + * Create a new Collection */ create( appId: string, @@ -33,7 +33,7 @@ export class Collections extends APIResource { } /** - * Update Collection + * Update a Collection's name or metadata */ update( appId: string, @@ -50,11 +50,6 @@ export class Collections extends APIResource { /** * Get All Collections for a User - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * - * Returns: list[schemas.Collection]: List of Collection objects */ list( appId: string, @@ -72,7 +67,7 @@ export class Collections extends APIResource { } /** - * Delete Collection + * Delete a Collection and its documents */ delete( appId: string, @@ -84,7 +79,7 @@ export class Collections extends APIResource { } /** - * Get Collection By Id + * Get a Collection by ID */ get( appId: string, @@ -96,7 +91,7 @@ export class Collections extends APIResource { } /** - * Get Collection By Name + * Get a Collection by Name */ getByName( appId: string, diff --git a/src/resources/apps/users/collections/documents.ts b/src/resources/apps/users/collections/documents.ts index 1bb5a8a..998a0fe 100644 --- a/src/resources/apps/users/collections/documents.ts +++ b/src/resources/apps/users/collections/documents.ts @@ -6,7 +6,7 @@ import { Page, type PageParams } from '../../../../pagination'; export class Documents extends APIResource { /** - * Create Document + * Embed text as a vector and create a Document */ create( appId: string, @@ -22,7 +22,7 @@ export class Documents extends APIResource { } /** - * Update Document + * Update the content and/or the metadata of a Document */ update( appId: string, @@ -39,7 +39,7 @@ export class Documents extends APIResource { } /** - * Get Documents + * Get all of the Documents in a Collection */ list( appId: string, @@ -57,7 +57,7 @@ export class Documents extends APIResource { } /** - * Delete Document + * Delete a Document by ID */ delete( appId: string, @@ -73,7 +73,7 @@ export class Documents extends APIResource { } /** - * Get Document + * Get a document by ID */ get( appId: string, @@ -89,19 +89,19 @@ export class Documents extends APIResource { } /** - * Query Documents + * Cosine Similarity Search for Documents */ query( appId: string, userId: string, collectionId: string, - query: DocumentQueryParams, + body: DocumentQueryParams, options?: Core.RequestOptions, ): Core.APIPromise { - return this._client.get(`/v1/apps/${appId}/users/${userId}/collections/${collectionId}/documents/query`, { - query, - ...options, - }); + return this._client.post( + `/v1/apps/${appId}/users/${userId}/collections/${collectionId}/documents/query`, + { body, ...options }, + ); } } @@ -162,7 +162,7 @@ export interface DocumentListParams extends PageParams { export interface DocumentQueryParams { query: string; - filter?: string | null; + filter?: Record | null; top_k?: number; } diff --git a/src/resources/apps/users/metamessages.ts b/src/resources/apps/users/metamessages.ts index 6c91d94..7b69067 100644 --- a/src/resources/apps/users/metamessages.ts +++ b/src/resources/apps/users/metamessages.ts @@ -9,14 +9,6 @@ import { type PageParams } from '../../../pagination'; export class Metamessages extends APIResource { /** * Paginate through the user metamessages for a user - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * reverse (bool): Whether to reverse the order of the metamessages - * - * Returns: list[schemas.Message]: List of Message objects - * - * Raises: HTTPException: If the session is not found */ list( appId: string, diff --git a/src/resources/apps/users/sessions/messages.ts b/src/resources/apps/users/sessions/messages.ts index 8eb493f..fa04be9 100644 --- a/src/resources/apps/users/sessions/messages.ts +++ b/src/resources/apps/users/sessions/messages.ts @@ -7,16 +7,6 @@ import { Page, type PageParams } from '../../../../pagination'; export class Messages extends APIResource { /** * Adds a message to a session - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * session_id (int): The ID of the Session to add the message to message - * (schemas.MessageCreate): The Message object to add containing the message - * content and type - * - * Returns: schemas.Message: The Message object of the added message - * - * Raises: HTTPException: If the session is not found */ create( appId: string, @@ -32,7 +22,7 @@ export class Messages extends APIResource { } /** - * Update's the metadata of a message + * Update the metadata of a Message */ update( appId: string, @@ -50,15 +40,6 @@ export class Messages extends APIResource { /** * Get all messages for a session - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * session_id (int): The ID of the Session to retrieve reverse (bool): Whether to - * reverse the order of the messages - * - * Returns: list[schemas.Message]: List of Message objects - * - * Raises: HTTPException: If the session is not found */ list( appId: string, @@ -76,7 +57,7 @@ export class Messages extends APIResource { } /** - * Get Message + * Get a Message by ID */ get( appId: string, diff --git a/src/resources/apps/users/sessions/metamessages.ts b/src/resources/apps/users/sessions/metamessages.ts index efa8d02..19807f1 100644 --- a/src/resources/apps/users/sessions/metamessages.ts +++ b/src/resources/apps/users/sessions/metamessages.ts @@ -7,15 +7,6 @@ import { Page, type PageParams } from '../../../../pagination'; export class Metamessages extends APIResource { /** * Adds a message to a session - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * session_id (int): The ID of the Session to add the message to metamessage - * (schemas.MeteamessageCreate): The metamessage creation object - * - * Returns: schemas.Metamessage: The Metamessage object of the added metamessage - * - * Raises: HTTPException: If the session is not found */ create( appId: string, @@ -49,15 +40,6 @@ export class Metamessages extends APIResource { /** * Get all messages for a session - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * session_id (int): The ID of the Session to retrieve reverse (bool): Whether to - * reverse the order of the metamessages - * - * Returns: list[schemas.Message]: List of Message objects - * - * Raises: HTTPException: If the session is not found */ list( appId: string, @@ -76,14 +58,6 @@ export class Metamessages extends APIResource { /** * Get a specific Metamessage by ID - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * session_id (int): The ID of the Session to retrieve - * - * Returns: schemas.Session: The Session object of the requested Session - * - * Raises: HTTPException: If the session is not found */ get( appId: string, diff --git a/src/resources/apps/users/sessions/sessions.ts b/src/resources/apps/users/sessions/sessions.ts index 43fb4c7..2076ecd 100644 --- a/src/resources/apps/users/sessions/sessions.ts +++ b/src/resources/apps/users/sessions/sessions.ts @@ -32,12 +32,6 @@ export class Sessions extends APIResource { /** * Create a Session for a User - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * session (schemas.SessionCreate): The Session object containing any metadata - * - * Returns: schemas.Session: The Session object of the new Session */ create( appId: string, @@ -50,13 +44,6 @@ export class Sessions extends APIResource { /** * Update the metadata of a Session - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * session_id (str): The ID of the Session to update session - * (schemas.SessionUpdate): The Session object containing any new metadata - * - * Returns: schemas.Session: The Session object of the updated Session */ update( appId: string, @@ -70,11 +57,6 @@ export class Sessions extends APIResource { /** * Get All Sessions for a User - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * - * Returns: list[schemas.Session]: List of Session objects */ list( appId: string, @@ -93,14 +75,6 @@ export class Sessions extends APIResource { /** * Delete a session by marking it as inactive - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * session_id (str): The ID of the Session to delete - * - * Returns: dict: A message indicating that the session was deleted - * - * Raises: HTTPException: If the session is not found */ delete( appId: string, @@ -112,7 +86,7 @@ export class Sessions extends APIResource { } /** - * Chat + * Chat with the Dialectic API */ chat( appId: string, @@ -128,7 +102,7 @@ export class Sessions extends APIResource { } /** - * Clone Session + * Clone a session for a user, optionally will deep clone metamessages as well */ clone( appId: string, @@ -161,14 +135,6 @@ export class Sessions extends APIResource { /** * Get a specific session for a user by ID - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * session_id (str): The ID of the Session to retrieve - * - * Returns: schemas.Session: The Session object of the requested Session - * - * Raises: HTTPException: If the session is not found */ get( appId: string, @@ -180,7 +146,7 @@ export class Sessions extends APIResource { } /** - * Get Chat Stream + * Stream Results from the Dialectic API */ stream( appId: string, diff --git a/src/resources/apps/users/users.ts b/src/resources/apps/users/users.ts index 3b3eb37..ff2c7da 100644 --- a/src/resources/apps/users/users.ts +++ b/src/resources/apps/users/users.ts @@ -39,25 +39,14 @@ export class Users extends APIResource { collections: CollectionsAPI.Collections = new CollectionsAPI.Collections(this._client); /** - * Create a User - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user (schemas.UserCreate): The User object containing any metadata - * - * Returns: schemas.User: Created User object + * Create a new User */ create(appId: string, body: UserCreateParams, options?: Core.RequestOptions): Core.APIPromise { return this._client.post(`/v1/apps/${appId}/users`, { body, ...options }); } /** - * Update a User - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * user (schemas.UserCreate): The User object containing any metadata - * - * Returns: schemas.User: Updated User object + * Update a User's name and/or metadata */ update( appId: string, @@ -70,11 +59,6 @@ export class Users extends APIResource { /** * Get All Users for an App - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho - * - * Returns: list[schemas.User]: List of User objects */ list( appId: string, @@ -91,36 +75,21 @@ export class Users extends APIResource { } /** - * Get a User - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * - * Returns: schemas.User: User object + * Get a User by ID */ get(appId: string, userId: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/v1/apps/${appId}/users/${userId}`, options); } /** - * Get a User - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * - * Returns: schemas.User: User object + * Get a User by name */ getByName(appId: string, name: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/v1/apps/${appId}/users/name/${name}`, options); } /** - * Get or Create a User - * - * Args: app_id (str): The ID of the app representing the client application using - * honcho user_id (str): The User ID representing the user, managed by the user - * - * Returns: schemas.User: User object + * Get a User or create a new one by the input name */ getOrCreate(appId: string, name: string, options?: Core.RequestOptions): Core.APIPromise { return this._client.get(`/v1/apps/${appId}/users/get_or_create/${name}`, options); diff --git a/src/version.ts b/src/version.ts index 2287ba2..1d54c44 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.0.9'; // x-release-please-version +export const VERSION = '0.0.10'; // x-release-please-version diff --git a/tests/api-resources/apps/users/collections/documents.test.ts b/tests/api-resources/apps/users/collections/documents.test.ts index 35f8cbb..a551371 100644 --- a/tests/api-resources/apps/users/collections/documents.test.ts +++ b/tests/api-resources/apps/users/collections/documents.test.ts @@ -138,7 +138,7 @@ describe('resource documents', () => { 'app_id', 'user_id', 'collection_id', - { query: 'query', filter: 'filter', top_k: 0 }, + { query: 'query', filter: { foo: 'bar' }, top_k: 0 }, ); }); }); diff --git a/yarn.lock b/yarn.lock index 14e8a75..bfd47d8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -759,16 +759,6 @@ dependencies: "@swc/counter" "^0.1.3" -"@ts-morph/common@~0.20.0": - version "0.20.0" - resolved "https://registry.yarnpkg.com/@ts-morph/common/-/common-0.20.0.tgz#3f161996b085ba4519731e4d24c35f6cba5b80af" - integrity sha512-7uKjByfbPpwuzkstL3L5MQyuXPSKdoNG93Fmi2JoDcTf3pEP731JdRFAduRVkOs8oqxPsXKA+ScrWkdQ8t/I+Q== - dependencies: - fast-glob "^3.2.12" - minimatch "^7.4.3" - mkdirp "^2.1.6" - path-browserify "^1.0.1" - "@tsconfig/node10@^1.0.7": version "1.0.8" resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" @@ -1315,11 +1305,6 @@ co@^4.6.0: resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== -code-block-writer@^12.0.0: - version "12.0.0" - resolved "https://registry.yarnpkg.com/code-block-writer/-/code-block-writer-12.0.0.tgz#4dd58946eb4234105aff7f0035977b2afdc2a770" - integrity sha512-q4dMFMlXtKR3XNBHyMHt/3pwYNA69EDk00lloMOaaUMKPUXBw6lpXtbu3MMVG6/uOihGnRDOlkyqsONEUj60+w== - collect-v8-coverage@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" @@ -2680,23 +2665,11 @@ minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: dependencies: brace-expansion "^1.1.7" -minimatch@^7.4.3: - version "7.4.6" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-7.4.6.tgz#845d6f254d8f4a5e4fd6baf44d5f10c8448365fb" - integrity sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw== - dependencies: - brace-expansion "^2.0.1" - minimist@^1.2.6: version "1.2.6" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== -mkdirp@^2.1.6: - version "2.1.6" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-2.1.6.tgz#964fbcb12b2d8c5d6fbc62a963ac95a273e2cc19" - integrity sha512-+hEnITedc8LAtIP9u3HJDFIdcLV2vXP33sqLLIzkv1Db1zO/1OxbvYf0Y1OC/S/Qo5dxHXepofhmxL02PsKe+A== - ms@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" @@ -2860,11 +2833,6 @@ parse-json@^5.2.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" -path-browserify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" - integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== - path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" @@ -3283,14 +3251,6 @@ ts-jest@^29.1.0: semver "^7.5.3" yargs-parser "^21.0.1" -ts-morph@^19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/ts-morph/-/ts-morph-19.0.0.tgz#43e95fb0156c3fe3c77c814ac26b7d0be2f93169" - integrity sha512-D6qcpiJdn46tUqV45vr5UGM2dnIEuTGNxVhg0sk5NX11orcouwj6i1bMqZIz2mZTZB1Hcgy7C3oEVhAT+f6mbQ== - dependencies: - "@ts-morph/common" "~0.20.0" - code-block-writer "^12.0.0" - ts-node@^10.5.0: version "10.7.0" resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.7.0.tgz#35d503d0fab3e2baa672a0e94f4b40653c2463f5"