@oursprivacy/server-sdk 0.7.0 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/LICENSE +1 -1
- package/README.md +14 -10
- package/package.json +1 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.7.2 (2026-01-07)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.7.1...v0.7.2](https://github.com/with-ours/ingest-sdk-nodejs/compare/v0.7.1...v0.7.2)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* break long lines in snippets into multiline ([ef4799c](https://github.com/with-ours/ingest-sdk-nodejs/commit/ef4799ce7a2315b1c097d3362e2d77c461bfcae8))
|
|
10
|
+
|
|
11
|
+
## 0.7.1 (2026-01-06)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.7.0...v0.7.1](https://github.com/with-ours/ingest-sdk-nodejs/compare/v0.7.0...v0.7.1)
|
|
14
|
+
|
|
15
|
+
### Chores
|
|
16
|
+
|
|
17
|
+
* **internal:** codegen related update ([8f62abb](https://github.com/with-ours/ingest-sdk-nodejs/commit/8f62abb38ddc06bdd54a8bcdd9d6294027a73839))
|
|
18
|
+
|
|
3
19
|
## 0.7.0 (2025-12-17)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v0.6.0...v0.7.0](https://github.com/with-ours/ingest-sdk-nodejs/compare/v0.6.0...v0.7.0)
|
package/LICENSE
CHANGED
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright 2026 Ours Privacy
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
package/README.md
CHANGED
|
@@ -53,15 +53,17 @@ a subclass of `APIError` will be thrown:
|
|
|
53
53
|
|
|
54
54
|
<!-- prettier-ignore -->
|
|
55
55
|
```ts
|
|
56
|
-
const response = await client.track
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
56
|
+
const response = await client.track
|
|
57
|
+
.event({ token: 'REPLACE_ME', event: 'REPLACE_ME' })
|
|
58
|
+
.catch(async (err) => {
|
|
59
|
+
if (err instanceof OursPrivacy.APIError) {
|
|
60
|
+
console.log(err.status); // 400
|
|
61
|
+
console.log(err.name); // BadRequestError
|
|
62
|
+
console.log(err.headers); // {server: 'nginx', ...}
|
|
63
|
+
} else {
|
|
64
|
+
throw err;
|
|
65
|
+
}
|
|
66
|
+
});
|
|
65
67
|
```
|
|
66
68
|
|
|
67
69
|
Error codes are as follows:
|
|
@@ -133,7 +135,9 @@ Unlike `.asResponse()` this method consumes the body, returning once it is parse
|
|
|
133
135
|
```ts
|
|
134
136
|
const client = new OursPrivacy();
|
|
135
137
|
|
|
136
|
-
const response = await client.track
|
|
138
|
+
const response = await client.track
|
|
139
|
+
.event({ token: 'REPLACE_ME', event: 'REPLACE_ME' })
|
|
140
|
+
.asResponse();
|
|
137
141
|
console.log(response.headers.get('X-My-Header'));
|
|
138
142
|
console.log(response.statusText); // access the underlying Response object
|
|
139
143
|
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.7.
|
|
1
|
+
export const VERSION = '0.7.2'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.7.
|
|
1
|
+
export declare const VERSION = "0.7.2";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.7.
|
|
1
|
+
export declare const VERSION = "0.7.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.7.
|
|
1
|
+
export const VERSION = '0.7.2'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|