File tree Expand file tree Collapse file tree 9 files changed +30
-13
lines changed Expand file tree Collapse file tree 9 files changed +30
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 3.0.0-alpha.23 "
2
+ "." : " 3.0.0-alpha.24 "
3
3
}
Original file line number Diff line number Diff line change 1
1
configured_endpoints : 18
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-d52acd1a525b4bfe9f4befcc3a645f5d1289d75e7bad999cf1330e539b2ed84e .yml
3
- openapi_spec_hash : c34df5406cfa4d245812d30f99d28116
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-3d4dd8ac24dba1f3cd5632eedbabafdac2ca7a2c4b99376d0896437497992861 .yml
3
+ openapi_spec_hash : 2ae20c06f18b7be58fabcfd6db1b5acf
4
4
config_hash : 9b9291a6c872b063900a46386729ba3c
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 3.0.0-alpha.24 (2025-08-24)
4
+
5
+ Full Changelog: [ v3.0.0-alpha.23...v3.0.0-alpha.24] ( https://github.com/supermemoryai/sdk-ts/compare/v3.0.0-alpha.23...v3.0.0-alpha.24 )
6
+
7
+ ### Features
8
+
9
+ * ** api:** api update ([ d15cac5] ( https://github.com/supermemoryai/sdk-ts/commit/d15cac59b4a9b9c0b39ffea84cf8126a16894445 ) )
10
+ * ** api:** api update ([ c1967bf] ( https://github.com/supermemoryai/sdk-ts/commit/c1967bf3a96ddbf100a1ddb829b226a120b95350 ) )
11
+ * ** mcp:** add code execution tool ([ 7f46f73] ( https://github.com/supermemoryai/sdk-ts/commit/7f46f73f34099dddcd536493bf79fd077a7f8bc6 ) )
12
+
13
+
14
+ ### Chores
15
+
16
+ * add package to package.json ([ 46dddb3] ( https://github.com/supermemoryai/sdk-ts/commit/46dddb3272e67125c3ec2258ee095769f8b2c846 ) )
17
+ * ** client:** qualify global Blob ([ 652941a] ( https://github.com/supermemoryai/sdk-ts/commit/652941aeb0483c7ee73071c2285c70a4e143d8fc ) )
18
+ * update CI script ([ d80ffc7] ( https://github.com/supermemoryai/sdk-ts/commit/d80ffc75a36ca9e2241db6171956a87b0a3cf251 ) )
19
+
3
20
## 3.0.0-alpha.23 (2025-08-16)
4
21
5
22
Full Changelog: [ v3.0.0-alpha.22...v3.0.0-alpha.23] ( https://github.com/supermemoryai/sdk-ts/compare/v3.0.0-alpha.22...v3.0.0-alpha.23 )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " supermemory" ,
3
- "version" : " 3.0.0-alpha.23 " ,
3
+ "version" : " 3.0.0-alpha.24 " ,
4
4
"description" : " The official TypeScript library for the Supermemory API" ,
5
5
"author" :
" Supermemory <[email protected] >" ,
6
6
"types" : " dist/index.d.ts" ,
44
44
"publint" : " ^0.2.12" ,
45
45
"ts-jest" : " ^29.1.0" ,
46
46
"ts-node" : " ^10.5.0" ,
47
- "tsc-multi" : " https://github.com/stainless-api/tsc-multi/releases/download/v1.1.8 /tsc-multi.tgz" ,
47
+ "tsc-multi" : " https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9 /tsc-multi.tgz" ,
48
48
"tsconfig-paths" : " ^4.0.0" ,
49
+ "tslib" : " ^2.8.1" ,
49
50
"typescript" : " 5.8.3" ,
50
51
"typescript-eslint" : " 8.31.1"
51
52
},
Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ echo "==> Installing Node dependencies…"
15
15
16
16
PACKAGE_MANAGER=$( command -v yarn > /dev/null 2>&1 && echo " yarn" || echo " npm" )
17
17
18
- $PACKAGE_MANAGER install
18
+ $PACKAGE_MANAGER install " $@ "
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ if [[ "$SIGNED_URL" == "null" ]]; then
12
12
exit 1
13
13
fi
14
14
15
- UPLOAD_RESPONSE=$( tar -cz dist | curl -v -X PUT \
15
+ UPLOAD_RESPONSE=$( tar -cz " ${BUILD_PATH :- dist} " | curl -v -X PUT \
16
16
-H " Content-Type: application/gzip" \
17
17
--data-binary @- " $SIGNED_URL " 2>&1 )
18
18
Original file line number Diff line number Diff line change @@ -717,7 +717,7 @@ export class Supermemory {
717
717
// Preserve legacy string encoding behavior for now
718
718
headers . values . has ( 'content-type' ) ) ||
719
719
// `Blob` is superset of `File`
720
- body instanceof Blob ||
720
+ ( ( globalThis as any ) . Blob && body instanceof ( globalThis as any ) . Blob ) ||
721
721
// `FormData` -> `multipart/form-data`
722
722
body instanceof FormData ||
723
723
// `URLSearchParams` -> `application/x-www-form-urlencoded`
Original file line number Diff line number Diff line change 1
- export const VERSION = '3.0.0-alpha.23 ' ; // x-release-please-version
1
+ export const VERSION = '3.0.0-alpha.24 ' ; // x-release-please-version
Original file line number Diff line number Diff line change @@ -3283,10 +3283,9 @@ ts-node@^10.5.0:
3283
3283
v8-compile-cache-lib "^3.0.0"
3284
3284
yn "3.1.1"
3285
3285
3286
- " tsc-multi@https://github.com/stainless-api/tsc-multi/releases/download/v1.1.8/tsc-multi.tgz " :
3287
- version "1.1.8"
3288
- uid f544b359b8f05e607771ffacc280e58201476b04
3289
- resolved "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.8/tsc-multi.tgz#f544b359b8f05e607771ffacc280e58201476b04"
3286
+ " tsc-multi@https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz " :
3287
+ version "1.1.9"
3288
+ resolved "https://github.com/stainless-api/tsc-multi/releases/download/v1.1.9/tsc-multi.tgz#777f6f5d9e26bf0e94e5170990dd3a841d6707cd"
3290
3289
dependencies :
3291
3290
debug "^4.3.7"
3292
3291
fast-glob "^3.3.2"
You can’t perform that action at this time.
0 commit comments