You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,41 @@
1
1
# Changelog
2
2
3
+
## 0.1.0-alpha.4 (2025-06-04)
4
+
5
+
Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/zeroentropy-ai/zeroentropy-node/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
6
+
7
+
### Features
8
+
9
+
* add SKIP_BREW env var to ./scripts/bootstrap ([#34](https://github.com/zeroentropy-ai/zeroentropy-node/issues/34)) ([1db65f9](https://github.com/zeroentropy-ai/zeroentropy-node/commit/1db65f912a1a5f23668ea2519ac8e1f379f0a806))
* avoid type error in certain environments ([#39](https://github.com/zeroentropy-ai/zeroentropy-node/issues/39)) ([5be66ff](https://github.com/zeroentropy-ai/zeroentropy-node/commit/5be66ffd2783b79bda15848632f46c1a2b0bd53c))
22
+
***client:** fix export map for index exports ([#30](https://github.com/zeroentropy-ai/zeroentropy-node/issues/30)) ([1518181](https://github.com/zeroentropy-ai/zeroentropy-node/commit/1518181a12687feeb94e7634194f73f7c6d2a92b))
23
+
***internal:** work around https://github.com/vercel/next.js/issues/76881 ([#41](https://github.com/zeroentropy-ai/zeroentropy-node/issues/41)) ([a78fd51](https://github.com/zeroentropy-ai/zeroentropy-node/commit/a78fd51e969d8ab08858b5871a86609c8067b8ce))
24
+
25
+
26
+
### Chores
27
+
28
+
***exports:** cleaner resource index imports ([#37](https://github.com/zeroentropy-ai/zeroentropy-node/issues/37)) ([e447d3b](https://github.com/zeroentropy-ai/zeroentropy-node/commit/e447d3b306acdcd7460b8329dd31cc78fedc4388))
29
+
***exports:** stop using path fallbacks ([#38](https://github.com/zeroentropy-ai/zeroentropy-node/issues/38)) ([f7460de](https://github.com/zeroentropy-ai/zeroentropy-node/commit/f7460de48f5deaead21c777199dfb6acacfdf4ff))
30
+
***internal:** codegen related update ([#40](https://github.com/zeroentropy-ai/zeroentropy-node/issues/40)) ([d60d321](https://github.com/zeroentropy-ai/zeroentropy-node/commit/d60d3218f82dc4782cfddb2e164b1e3eb05835c7))
***internal:** remove extra empty newlines ([#36](https://github.com/zeroentropy-ai/zeroentropy-node/issues/36)) ([5b8b92f](https://github.com/zeroentropy-ai/zeroentropy-node/commit/5b8b92f2a64634a3a792b705c066c01132368d3d))
33
+
34
+
35
+
### Documentation
36
+
37
+
* update URLs from stainlessapi.com to stainless.com ([#32](https://github.com/zeroentropy-ai/zeroentropy-node/issues/32)) ([f8ec234](https://github.com/zeroentropy-ai/zeroentropy-node/commit/f8ec2343b8ac63893220f698353a5e127899523f))
38
+
3
39
## 0.1.0-alpha.3 (2025-01-28)
4
40
5
41
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/zeroentropy-ai/zeroentropy-node/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
This library provides convenient access to the ZeroEntropy REST API from server-side TypeScript or JavaScript.
5
+
The ZeroEntropy Node SDK provides convenient access to the [ZeroEntropy REST API](https://docs.zeroentropy.dev/api-reference/) from any TypeScript or JavaScript application.
6
6
7
7
The REST API documentation can be found on [docs.zeroentropy.dev](https://docs.zeroentropy.dev/api-reference). The full API of this library can be found in [api.md](api.md).
8
8
9
+
In order to get an API Key, you can visit our [dashboard](https://dashboard.zeroentropy.dev/).
10
+
9
11
## Installation
10
12
11
13
```sh
@@ -24,17 +26,13 @@ const client = new ZeroEntropy({
24
26
apiKey:process.env['ZEROENTROPY_API_KEY'], // This is the default and can be omitted
25
27
});
26
28
27
-
asyncfunctionmain() {
28
-
constresponse=awaitclient.documents.add({
29
-
collection_name:'example_collection',
30
-
content: { type:'text', text:'Example Content' },
31
-
path:'my_document.txt',
32
-
});
33
-
34
-
console.log(response.message);
35
-
}
29
+
constresponse=awaitclient.documents.add({
30
+
collection_name:'example_collection',
31
+
content: { type:'text', text:'Example Content' },
32
+
path:'my_document.txt',
33
+
});
36
34
37
-
main();
35
+
console.log(response.message);
38
36
```
39
37
40
38
### Request & Response types
@@ -49,11 +47,7 @@ const client = new ZeroEntropy({
49
47
apiKey: process.env['ZEROENTROPY_API_KEY'], // This is the default and can be omitted
Copy file name to clipboardExpand all lines: SECURITY.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,9 @@
2
2
3
3
## Reporting Security Issues
4
4
5
-
This SDK is generated by [Stainless Software Inc](http://stainlessapi.com). Stainless takes security seriously, and encourages you to report any security vulnerability promptly so that appropriate action can be taken.
5
+
This SDK is generated by [Stainless Software Inc](http://stainless.com). Stainless takes security seriously, and encourages you to report any security vulnerability promptly so that appropriate action can be taken.
6
6
7
-
To report a security issue, please contact the Stainless team at security@stainlessapi.com.
7
+
To report a security issue, please contact the Stainless team at security@stainless.com.
8
8
9
9
## Responsible Disclosure
10
10
@@ -16,11 +16,11 @@ before making any information public.
16
16
## Reporting Non-SDK Related Security Issues
17
17
18
18
If you encounter security issues that are not directly related to SDKs but pertain to the services
19
-
or products provided by ZeroEntropy please follow the respective company's security reporting guidelines.
19
+
or products provided by ZeroEntropy, please follow the respective company's security reporting guidelines.
20
20
21
21
### ZeroEntropy Terms and Policies
22
22
23
-
Please contact [email protected] for any questions or concerns regarding security of our services.
23
+
Please contact [email protected] for any questions or concerns regarding the security of our services.
0 commit comments