Skip to content

Commit 0ba7fd6

Browse files
authored
Merge pull request #38 from supermemoryai/release-please--branches--main--changes--next--components--supermemory
release: 3.8.0
2 parents 6288dd6 + 439166c commit 0ba7fd6

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.7.0"
2+
".": "3.8.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 18
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-268046d0d3e461f90719c7aff95adde912763ec5dfdade1f0c25fc8a0cd9b25d.yml
3-
openapi_spec_hash: cc8090e79852ab4566347b41faa409c0
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-ebd5e757d0e76cb83013e01a1e0bb3dba62beb83b2a2ffa28d148ea032e96fd0.yml
3+
openapi_spec_hash: f930474a6ad230545154244045cc602e
44
config_hash: a478b24249ee4f53abfb5787ca4daf8b

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 3.8.0 (2025-11-25)
4+
5+
Full Changelog: [v3.7.0...v3.8.0](https://github.com/supermemoryai/sdk-ts/compare/v3.7.0...v3.8.0)
6+
7+
### Features
8+
9+
* **api:** api update ([29bd70a](https://github.com/supermemoryai/sdk-ts/commit/29bd70a5d1faaf6b0bd1e2d7506f6d6c01328ca9))
10+
* **api:** api update ([482a811](https://github.com/supermemoryai/sdk-ts/commit/482a8111e9ffcd14cce5439e7e9bfa2300621773))
11+
* **api:** api update ([ace4c8b](https://github.com/supermemoryai/sdk-ts/commit/ace4c8b6f94f7a176daf8a4b0de34097da058cab))
12+
313
## 3.7.0 (2025-11-06)
414

515
Full Changelog: [v3.6.0...v3.7.0](https://github.com/supermemoryai/sdk-ts/compare/v3.6.0...v3.7.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "supermemory",
3-
"version": "3.7.0",
3+
"version": "3.8.0",
44
"description": "The official TypeScript library for the Supermemory API",
55
"author": "Supermemory <[email protected]>",
66
"types": "dist/index.d.ts",

src/resources/connections.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class Connections extends APIResource {
1818
* ```
1919
*/
2020
create(
21-
provider: 'notion' | 'google-drive' | 'onedrive',
21+
provider: 'notion' | 'google-drive' | 'onedrive' | 'web-crawler',
2222
body: ConnectionCreateParams | null | undefined = {},
2323
options?: RequestOptions,
2424
): APIPromise<ConnectionCreateResponse> {
@@ -66,7 +66,7 @@ export class Connections extends APIResource {
6666
* ```
6767
*/
6868
deleteByProvider(
69-
provider: 'notion' | 'google-drive' | 'onedrive',
69+
provider: 'notion' | 'google-drive' | 'onedrive' | 'web-crawler',
7070
body: ConnectionDeleteByProviderParams,
7171
options?: RequestOptions,
7272
): APIPromise<ConnectionDeleteByProviderResponse> {
@@ -99,7 +99,7 @@ export class Connections extends APIResource {
9999
* ```
100100
*/
101101
getByTags(
102-
provider: 'notion' | 'google-drive' | 'onedrive',
102+
provider: 'notion' | 'google-drive' | 'onedrive' | 'web-crawler',
103103
body: ConnectionGetByTagsParams,
104104
options?: RequestOptions,
105105
): APIPromise<ConnectionGetByTagsResponse> {
@@ -115,7 +115,7 @@ export class Connections extends APIResource {
115115
* ```
116116
*/
117117
import(
118-
provider: 'notion' | 'google-drive' | 'onedrive',
118+
provider: 'notion' | 'google-drive' | 'onedrive' | 'web-crawler',
119119
body: ConnectionImportParams | null | undefined = {},
120120
options?: RequestOptions,
121121
): APIPromise<string> {
@@ -137,7 +137,7 @@ export class Connections extends APIResource {
137137
* ```
138138
*/
139139
listDocuments(
140-
provider: 'notion' | 'google-drive' | 'onedrive',
140+
provider: 'notion' | 'google-drive' | 'onedrive' | 'web-crawler',
141141
body: ConnectionListDocumentsParams | null | undefined = {},
142142
options?: RequestOptions,
143143
): APIPromise<ConnectionListDocumentsResponse> {

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '3.7.0'; // x-release-please-version
1+
export const VERSION = '3.8.0'; // x-release-please-version

0 commit comments

Comments
 (0)