zorihq 0.17.0 → 0.19.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 +16 -0
- package/package.json +1 -1
- package/resources/v1/analytics/analytics.d.mts +20 -4
- package/resources/v1/analytics/analytics.d.mts.map +1 -1
- package/resources/v1/analytics/analytics.d.ts +20 -4
- package/resources/v1/analytics/analytics.d.ts.map +1 -1
- package/resources/v1/analytics/analytics.js.map +1 -1
- package/resources/v1/analytics/analytics.mjs.map +1 -1
- package/resources/v1/analytics/index.d.mts +2 -2
- package/resources/v1/analytics/index.d.mts.map +1 -1
- package/resources/v1/analytics/index.d.ts +2 -2
- package/resources/v1/analytics/index.d.ts.map +1 -1
- package/resources/v1/analytics/index.js.map +1 -1
- package/resources/v1/analytics/index.mjs.map +1 -1
- package/resources/v1/analytics/tiles.d.mts +51 -1
- package/resources/v1/analytics/tiles.d.mts.map +1 -1
- package/resources/v1/analytics/tiles.d.ts +51 -1
- package/resources/v1/analytics/tiles.d.ts.map +1 -1
- package/resources/v1/analytics/tiles.js +32 -0
- package/resources/v1/analytics/tiles.js.map +1 -1
- package/resources/v1/analytics/tiles.mjs +32 -0
- 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/revenue/revenue.d.mts +3 -0
- package/resources/v1/revenue/revenue.d.mts.map +1 -1
- package/resources/v1/revenue/revenue.d.ts +3 -0
- package/resources/v1/revenue/revenue.d.ts.map +1 -1
- package/resources/v1/revenue/revenue.js.map +1 -1
- package/resources/v1/revenue/revenue.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/resources/v1/analytics/analytics.ts +34 -2
- package/src/resources/v1/analytics/index.ts +6 -0
- package/src/resources/v1/analytics/tiles.ts +82 -0
- package/src/resources/v1/index.ts +4 -0
- package/src/resources/v1/revenue/revenue.ts +6 -0
- package/src/resources/v1/v1.ts +8 -0
- 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/src/resources/v1/v1.ts
CHANGED
|
@@ -27,8 +27,12 @@ import {
|
|
|
27
27
|
CountryTrafficSourceData,
|
|
28
28
|
CountryTrafficSourceResponse,
|
|
29
29
|
DauResponse,
|
|
30
|
+
EntryPagesData,
|
|
31
|
+
EntryPagesResponse,
|
|
30
32
|
EventFilterOptionsResponse,
|
|
31
33
|
EventsOverTimeDataPoint,
|
|
34
|
+
ExitPagesData,
|
|
35
|
+
ExitPagesResponse,
|
|
32
36
|
ManualIdentifyRequest,
|
|
33
37
|
ManualIdentifyResponse,
|
|
34
38
|
MauResponse,
|
|
@@ -124,8 +128,12 @@ export declare namespace V1 {
|
|
|
124
128
|
type CountryTrafficSourceData as CountryTrafficSourceData,
|
|
125
129
|
type CountryTrafficSourceResponse as CountryTrafficSourceResponse,
|
|
126
130
|
type DauResponse as DauResponse,
|
|
131
|
+
type EntryPagesData as EntryPagesData,
|
|
132
|
+
type EntryPagesResponse as EntryPagesResponse,
|
|
127
133
|
type EventFilterOptionsResponse as EventFilterOptionsResponse,
|
|
128
134
|
type EventsOverTimeDataPoint as EventsOverTimeDataPoint,
|
|
135
|
+
type ExitPagesData as ExitPagesData,
|
|
136
|
+
type ExitPagesResponse as ExitPagesResponse,
|
|
129
137
|
type ManualIdentifyRequest as ManualIdentifyRequest,
|
|
130
138
|
type ManualIdentifyResponse as ManualIdentifyResponse,
|
|
131
139
|
type MauResponse as MauResponse,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.19.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.19.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.19.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.19.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|