zorihq 0.15.0 → 0.18.0
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 +24 -0
- package/client.d.mts +4 -4
- package/client.d.mts.map +1 -1
- package/client.d.ts +4 -4
- package/client.d.ts.map +1 -1
- package/client.js +15 -9
- package/client.js.map +1 -1
- package/client.mjs +15 -9
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/v1/analytics/analytics.d.mts +128 -27
- package/resources/v1/analytics/analytics.d.mts.map +1 -1
- package/resources/v1/analytics/analytics.d.ts +128 -27
- package/resources/v1/analytics/analytics.d.ts.map +1 -1
- package/resources/v1/analytics/analytics.js +8 -14
- package/resources/v1/analytics/analytics.js.map +1 -1
- package/resources/v1/analytics/analytics.mjs +8 -14
- package/resources/v1/analytics/analytics.mjs.map +1 -1
- package/resources/v1/analytics/index.d.mts +2 -4
- package/resources/v1/analytics/index.d.mts.map +1 -1
- package/resources/v1/analytics/index.d.ts +2 -4
- package/resources/v1/analytics/index.d.ts.map +1 -1
- package/resources/v1/analytics/index.js +1 -5
- package/resources/v1/analytics/index.js.map +1 -1
- package/resources/v1/analytics/index.mjs +0 -2
- package/resources/v1/analytics/index.mjs.map +1 -1
- package/resources/v1/analytics/tiles.d.mts +148 -127
- package/resources/v1/analytics/tiles.d.mts.map +1 -1
- package/resources/v1/analytics/tiles.d.ts +148 -127
- package/resources/v1/analytics/tiles.d.ts.map +1 -1
- package/resources/v1/analytics/tiles.js +102 -42
- package/resources/v1/analytics/tiles.js.map +1 -1
- package/resources/v1/analytics/tiles.mjs +102 -42
- package/resources/v1/analytics/tiles.mjs.map +1 -1
- package/resources/v1/index.d.mts +1 -1
- package/resources/v1/index.d.mts.map +1 -1
- package/resources/v1/index.d.ts +1 -1
- package/resources/v1/index.d.ts.map +1 -1
- package/resources/v1/index.js.map +1 -1
- package/resources/v1/index.mjs.map +1 -1
- package/resources/v1/v1.d.mts +2 -2
- package/resources/v1/v1.d.mts.map +1 -1
- package/resources/v1/v1.d.ts +2 -2
- package/resources/v1/v1.d.ts.map +1 -1
- package/resources/v1/v1.js.map +1 -1
- package/resources/v1/v1.mjs.map +1 -1
- package/src/client.ts +20 -14
- package/src/resources/v1/analytics/analytics.ts +246 -92
- package/src/resources/v1/analytics/index.ts +42 -30
- package/src/resources/v1/analytics/tiles.ts +207 -182
- package/src/resources/v1/index.ts +25 -2
- package/src/resources/v1/v1.ts +50 -4
- 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/resources/v1/analytics/sessions.d.mts +0 -4
- package/resources/v1/analytics/sessions.d.mts.map +0 -1
- package/resources/v1/analytics/sessions.d.ts +0 -4
- package/resources/v1/analytics/sessions.d.ts.map +0 -1
- package/resources/v1/analytics/sessions.js +0 -9
- package/resources/v1/analytics/sessions.js.map +0 -1
- package/resources/v1/analytics/sessions.mjs +0 -5
- package/resources/v1/analytics/sessions.mjs.map +0 -1
- package/resources/v1/analytics/users.d.mts +0 -4
- package/resources/v1/analytics/users.d.mts.map +0 -1
- package/resources/v1/analytics/users.d.ts +0 -4
- package/resources/v1/analytics/users.d.ts.map +0 -1
- package/resources/v1/analytics/users.js +0 -9
- package/resources/v1/analytics/users.js.map +0 -1
- package/resources/v1/analytics/users.mjs +0 -5
- package/resources/v1/analytics/users.mjs.map +0 -1
- package/src/resources/v1/analytics/sessions.ts +0 -5
- package/src/resources/v1/analytics/users.ts +0 -5
|
@@ -2,23 +2,46 @@
|
|
|
2
2
|
|
|
3
3
|
export {
|
|
4
4
|
Analytics,
|
|
5
|
+
type BounceRateResponse,
|
|
6
|
+
type CardPrecision,
|
|
5
7
|
type ChurnRateResponse,
|
|
6
8
|
type CohortAnalysisResponse,
|
|
7
9
|
type CohortData,
|
|
10
|
+
type CountryTrafficSourceData,
|
|
11
|
+
type CountryTrafficSourceResponse,
|
|
12
|
+
type DauResponse,
|
|
13
|
+
type EntryPagesData,
|
|
14
|
+
type EntryPagesResponse,
|
|
8
15
|
type EventFilterOptionsResponse,
|
|
9
16
|
type EventsOverTimeDataPoint,
|
|
17
|
+
type ExitPagesData,
|
|
18
|
+
type ExitPagesResponse,
|
|
10
19
|
type ManualIdentifyRequest,
|
|
11
20
|
type ManualIdentifyResponse,
|
|
21
|
+
type MauResponse,
|
|
22
|
+
type PagesPerSessionResponse,
|
|
12
23
|
type RecentEvent,
|
|
13
24
|
type RecentEventsResponse,
|
|
25
|
+
type RefererTrafficSourceData,
|
|
26
|
+
type RefererTrafficSourceResponse,
|
|
27
|
+
type ReturnRateResponse,
|
|
28
|
+
type SessionDurationResponse,
|
|
29
|
+
type TimeBetweenVisitsResponse,
|
|
30
|
+
type TimelineTileData,
|
|
31
|
+
type TimelineTileResponse,
|
|
14
32
|
type TopVisitor,
|
|
15
33
|
type TopVisitorsResponse,
|
|
34
|
+
type UniqueSessionsResponse,
|
|
35
|
+
type UniqueVisitorsResponse,
|
|
36
|
+
type UtmTrafficSourceResponse,
|
|
16
37
|
type VisitorDataPoint,
|
|
17
38
|
type VisitorEvent,
|
|
18
39
|
type VisitorProfileResponse,
|
|
40
|
+
type VisitorsByBrowserResponse,
|
|
19
41
|
type VisitorsByDeviceResponse,
|
|
20
|
-
type
|
|
21
|
-
type
|
|
42
|
+
type VisitorsByOsResponse,
|
|
43
|
+
type WauResponse,
|
|
44
|
+
type AnalyticsTimelineParams,
|
|
22
45
|
} from './analytics/index';
|
|
23
46
|
export { Auth, type LoginRequest, type LoginResponse, type AuthLoginParams } from './auth';
|
|
24
47
|
export {
|
package/src/resources/v1/v1.ts
CHANGED
|
@@ -18,23 +18,46 @@ import {
|
|
|
18
18
|
import * as AnalyticsAPI from './analytics/analytics';
|
|
19
19
|
import {
|
|
20
20
|
Analytics,
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
AnalyticsTimelineParams,
|
|
22
|
+
BounceRateResponse,
|
|
23
|
+
CardPrecision,
|
|
23
24
|
ChurnRateResponse,
|
|
24
25
|
CohortAnalysisResponse,
|
|
25
26
|
CohortData,
|
|
27
|
+
CountryTrafficSourceData,
|
|
28
|
+
CountryTrafficSourceResponse,
|
|
29
|
+
DauResponse,
|
|
30
|
+
EntryPagesData,
|
|
31
|
+
EntryPagesResponse,
|
|
26
32
|
EventFilterOptionsResponse,
|
|
27
33
|
EventsOverTimeDataPoint,
|
|
34
|
+
ExitPagesData,
|
|
35
|
+
ExitPagesResponse,
|
|
28
36
|
ManualIdentifyRequest,
|
|
29
37
|
ManualIdentifyResponse,
|
|
38
|
+
MauResponse,
|
|
39
|
+
PagesPerSessionResponse,
|
|
30
40
|
RecentEvent,
|
|
31
41
|
RecentEventsResponse,
|
|
42
|
+
RefererTrafficSourceData,
|
|
43
|
+
RefererTrafficSourceResponse,
|
|
44
|
+
ReturnRateResponse,
|
|
45
|
+
SessionDurationResponse,
|
|
46
|
+
TimeBetweenVisitsResponse,
|
|
47
|
+
TimelineTileData,
|
|
48
|
+
TimelineTileResponse,
|
|
32
49
|
TopVisitor,
|
|
33
50
|
TopVisitorsResponse,
|
|
51
|
+
UniqueSessionsResponse,
|
|
52
|
+
UniqueVisitorsResponse,
|
|
53
|
+
UtmTrafficSourceResponse,
|
|
34
54
|
VisitorDataPoint,
|
|
35
55
|
VisitorEvent,
|
|
36
56
|
VisitorProfileResponse,
|
|
57
|
+
VisitorsByBrowserResponse,
|
|
37
58
|
VisitorsByDeviceResponse,
|
|
59
|
+
VisitorsByOsResponse,
|
|
60
|
+
WauResponse,
|
|
38
61
|
} from './analytics/analytics';
|
|
39
62
|
import * as PaymentProvidersAPI from './payment-providers/payment-providers';
|
|
40
63
|
import {
|
|
@@ -97,23 +120,46 @@ export declare namespace V1 {
|
|
|
97
120
|
|
|
98
121
|
export {
|
|
99
122
|
Analytics as Analytics,
|
|
123
|
+
type BounceRateResponse as BounceRateResponse,
|
|
124
|
+
type CardPrecision as CardPrecision,
|
|
100
125
|
type ChurnRateResponse as ChurnRateResponse,
|
|
101
126
|
type CohortAnalysisResponse as CohortAnalysisResponse,
|
|
102
127
|
type CohortData as CohortData,
|
|
128
|
+
type CountryTrafficSourceData as CountryTrafficSourceData,
|
|
129
|
+
type CountryTrafficSourceResponse as CountryTrafficSourceResponse,
|
|
130
|
+
type DauResponse as DauResponse,
|
|
131
|
+
type EntryPagesData as EntryPagesData,
|
|
132
|
+
type EntryPagesResponse as EntryPagesResponse,
|
|
103
133
|
type EventFilterOptionsResponse as EventFilterOptionsResponse,
|
|
104
134
|
type EventsOverTimeDataPoint as EventsOverTimeDataPoint,
|
|
135
|
+
type ExitPagesData as ExitPagesData,
|
|
136
|
+
type ExitPagesResponse as ExitPagesResponse,
|
|
105
137
|
type ManualIdentifyRequest as ManualIdentifyRequest,
|
|
106
138
|
type ManualIdentifyResponse as ManualIdentifyResponse,
|
|
139
|
+
type MauResponse as MauResponse,
|
|
140
|
+
type PagesPerSessionResponse as PagesPerSessionResponse,
|
|
107
141
|
type RecentEvent as RecentEvent,
|
|
108
142
|
type RecentEventsResponse as RecentEventsResponse,
|
|
143
|
+
type RefererTrafficSourceData as RefererTrafficSourceData,
|
|
144
|
+
type RefererTrafficSourceResponse as RefererTrafficSourceResponse,
|
|
145
|
+
type ReturnRateResponse as ReturnRateResponse,
|
|
146
|
+
type SessionDurationResponse as SessionDurationResponse,
|
|
147
|
+
type TimeBetweenVisitsResponse as TimeBetweenVisitsResponse,
|
|
148
|
+
type TimelineTileData as TimelineTileData,
|
|
149
|
+
type TimelineTileResponse as TimelineTileResponse,
|
|
109
150
|
type TopVisitor as TopVisitor,
|
|
110
151
|
type TopVisitorsResponse as TopVisitorsResponse,
|
|
152
|
+
type UniqueSessionsResponse as UniqueSessionsResponse,
|
|
153
|
+
type UniqueVisitorsResponse as UniqueVisitorsResponse,
|
|
154
|
+
type UtmTrafficSourceResponse as UtmTrafficSourceResponse,
|
|
111
155
|
type VisitorDataPoint as VisitorDataPoint,
|
|
112
156
|
type VisitorEvent as VisitorEvent,
|
|
113
157
|
type VisitorProfileResponse as VisitorProfileResponse,
|
|
158
|
+
type VisitorsByBrowserResponse as VisitorsByBrowserResponse,
|
|
114
159
|
type VisitorsByDeviceResponse as VisitorsByDeviceResponse,
|
|
115
|
-
type
|
|
116
|
-
type
|
|
160
|
+
type VisitorsByOsResponse as VisitorsByOsResponse,
|
|
161
|
+
type WauResponse as WauResponse,
|
|
162
|
+
type AnalyticsTimelineParams as AnalyticsTimelineParams,
|
|
117
163
|
};
|
|
118
164
|
|
|
119
165
|
export {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.18.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.18.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.18.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.18.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sessions.d.mts","sourceRoot":"","sources":["../../../src/resources/v1/analytics/sessions.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;AAEtB,qBAAa,QAAS,SAAQ,WAAW;CAAG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sessions.d.ts","sourceRoot":"","sources":["../../../src/resources/v1/analytics/sessions.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;AAEtB,qBAAa,QAAS,SAAQ,WAAW;CAAG"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.Sessions = void 0;
|
|
5
|
-
const resource_1 = require("../../../core/resource.js");
|
|
6
|
-
class Sessions extends resource_1.APIResource {
|
|
7
|
-
}
|
|
8
|
-
exports.Sessions = Sessions;
|
|
9
|
-
//# sourceMappingURL=sessions.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sessions.js","sourceRoot":"","sources":["../../../src/resources/v1/analytics/sessions.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,wDAAqD;AAErD,MAAa,QAAS,SAAQ,sBAAW;CAAG;AAA5C,4BAA4C"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"sessions.mjs","sourceRoot":"","sources":["../../../src/resources/v1/analytics/sessions.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAEtB,MAAM,OAAO,QAAS,SAAQ,WAAW;CAAG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"users.d.mts","sourceRoot":"","sources":["../../../src/resources/v1/analytics/users.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;AAEtB,qBAAa,KAAM,SAAQ,WAAW;CAAG"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"users.d.ts","sourceRoot":"","sources":["../../../src/resources/v1/analytics/users.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;AAEtB,qBAAa,KAAM,SAAQ,WAAW;CAAG"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.Users = void 0;
|
|
5
|
-
const resource_1 = require("../../../core/resource.js");
|
|
6
|
-
class Users extends resource_1.APIResource {
|
|
7
|
-
}
|
|
8
|
-
exports.Users = Users;
|
|
9
|
-
//# sourceMappingURL=users.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"users.js","sourceRoot":"","sources":["../../../src/resources/v1/analytics/users.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,wDAAqD;AAErD,MAAa,KAAM,SAAQ,sBAAW;CAAG;AAAzC,sBAAyC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"users.mjs","sourceRoot":"","sources":["../../../src/resources/v1/analytics/users.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAEtB,MAAM,OAAO,KAAM,SAAQ,WAAW;CAAG"}
|