diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2a266f8..573f090 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.7.0" + ".": "3.8.0" } diff --git a/.stats.yml b/.stats.yml index 8bb9881..364814f 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 18 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-268046d0d3e461f90719c7aff95adde912763ec5dfdade1f0c25fc8a0cd9b25d.yml -openapi_spec_hash: cc8090e79852ab4566347b41faa409c0 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-ebd5e757d0e76cb83013e01a1e0bb3dba62beb83b2a2ffa28d148ea032e96fd0.yml +openapi_spec_hash: f930474a6ad230545154244045cc602e config_hash: a478b24249ee4f53abfb5787ca4daf8b diff --git a/CHANGELOG.md b/CHANGELOG.md index 2adaf06..6fb21a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 3.8.0 (2025-11-25) + +Full Changelog: [v3.7.0...v3.8.0](https://github.com/supermemoryai/sdk-ts/compare/v3.7.0...v3.8.0) + +### Features + +* **api:** api update ([29bd70a](https://github.com/supermemoryai/sdk-ts/commit/29bd70a5d1faaf6b0bd1e2d7506f6d6c01328ca9)) +* **api:** api update ([482a811](https://github.com/supermemoryai/sdk-ts/commit/482a8111e9ffcd14cce5439e7e9bfa2300621773)) +* **api:** api update ([ace4c8b](https://github.com/supermemoryai/sdk-ts/commit/ace4c8b6f94f7a176daf8a4b0de34097da058cab)) + ## 3.7.0 (2025-11-06) Full Changelog: [v3.6.0...v3.7.0](https://github.com/supermemoryai/sdk-ts/compare/v3.6.0...v3.7.0) diff --git a/package.json b/package.json index 1d3d6c3..b7e885d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "supermemory", - "version": "3.7.0", + "version": "3.8.0", "description": "The official TypeScript library for the Supermemory API", "author": "Supermemory ", "types": "dist/index.d.ts", diff --git a/src/resources/connections.ts b/src/resources/connections.ts index 8e33f2f..7f04d16 100644 --- a/src/resources/connections.ts +++ b/src/resources/connections.ts @@ -18,7 +18,7 @@ export class Connections extends APIResource { * ``` */ create( - provider: 'notion' | 'google-drive' | 'onedrive', + provider: 'notion' | 'google-drive' | 'onedrive' | 'web-crawler', body: ConnectionCreateParams | null | undefined = {}, options?: RequestOptions, ): APIPromise { @@ -66,7 +66,7 @@ export class Connections extends APIResource { * ``` */ deleteByProvider( - provider: 'notion' | 'google-drive' | 'onedrive', + provider: 'notion' | 'google-drive' | 'onedrive' | 'web-crawler', body: ConnectionDeleteByProviderParams, options?: RequestOptions, ): APIPromise { @@ -99,7 +99,7 @@ export class Connections extends APIResource { * ``` */ getByTags( - provider: 'notion' | 'google-drive' | 'onedrive', + provider: 'notion' | 'google-drive' | 'onedrive' | 'web-crawler', body: ConnectionGetByTagsParams, options?: RequestOptions, ): APIPromise { @@ -115,7 +115,7 @@ export class Connections extends APIResource { * ``` */ import( - provider: 'notion' | 'google-drive' | 'onedrive', + provider: 'notion' | 'google-drive' | 'onedrive' | 'web-crawler', body: ConnectionImportParams | null | undefined = {}, options?: RequestOptions, ): APIPromise { @@ -137,7 +137,7 @@ export class Connections extends APIResource { * ``` */ listDocuments( - provider: 'notion' | 'google-drive' | 'onedrive', + provider: 'notion' | 'google-drive' | 'onedrive' | 'web-crawler', body: ConnectionListDocumentsParams | null | undefined = {}, options?: RequestOptions, ): APIPromise { diff --git a/src/version.ts b/src/version.ts index dd90c73..315b1f9 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '3.7.0'; // x-release-please-version +export const VERSION = '3.8.0'; // x-release-please-version