Skip to content

Commit 95d6c8c

Browse files
authored
Merge pull request #7 from ZoriHQ/release-please--branches--main--changes--next--components--zorihq
release: 0.4.1
2 parents 6eded72 + 4b67451 commit 95d6c8c

6 files changed

Lines changed: 17 additions & 7 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.4.0"
2+
".": "0.4.1"
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/zorihq%2Fzoriapi-3606e58922dd53d9875746e13938552b96589d6024b49e33d5a3aee2c3934290.yml
3-
openapi_spec_hash: 609351392ce4dff195fee29d942fc437
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/zorihq%2Fzoriapi-acf4918b01172ffe3ae4c34dc69084ee67c81d3081611f6407d8bf55eead07e3.yml
3+
openapi_spec_hash: 5ccb0a3eca0814d90f29b55aa7a6addf
44
config_hash: ff14aa5e5e62c91fbfaee8e082fad64a

CHANGELOG.md

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

3+
## 0.4.1 (2025-10-19)
4+
5+
Full Changelog: [v0.4.0...v0.4.1](https://github.com/ZoriHQ/typescript-api-sdk/compare/v0.4.0...v0.4.1)
6+
7+
### Bug Fixes
8+
9+
* **api/analytics:** added % to responses ([a1ee8a4](https://github.com/ZoriHQ/typescript-api-sdk/commit/a1ee8a4417ca0057efd528a0c1731d45aa6ca879))
10+
311
## 0.4.0 (2025-10-19)
412

513
Full Changelog: [v0.3.0...v0.4.0](https://github.com/ZoriHQ/typescript-api-sdk/compare/v0.3.0...v0.4.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zorihq",
3-
"version": "0.4.0",
3+
"version": "0.4.1",
44
"description": "The official TypeScript library for the Zoriapi API",
55
"author": "Zoriapi <supportsdk@zorihq.com>",
66
"types": "dist/index.d.ts",

src/resources/v1/analytics/analytics.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ export class Analytics extends APIResource {
2222
export interface CountryDataPoint {
2323
country_code?: string;
2424

25+
percentage?: number;
26+
2527
unique_visitors?: number;
2628
}
2729

@@ -34,6 +36,8 @@ export interface EventsOverTimeDataPoint {
3436
export interface OriginDataPoint {
3537
origin?: string;
3638

39+
percentage?: number;
40+
3741
unique_visitors?: number;
3842
}
3943

@@ -106,8 +110,6 @@ export interface VisitorDataPoint {
106110

107111
mobile?: number;
108112

109-
tablet?: number;
110-
111113
timestamp?: string;
112114

113115
unknown?: number;

src/version.ts

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

0 commit comments

Comments
 (0)