analytica.click 0.0.549 → 0.0.550
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/dist/index.d.ts
CHANGED
@@ -261,6 +261,13 @@ declare module 'analytica.click/dist/ui/src/server/schema/api' {
|
|
261
261
|
export type PostError = z.infer<typeof PostErrorSchema>;
|
262
262
|
export type PostMetricData = z.infer<typeof PostMetricDataSchema>;
|
263
263
|
export type PostMetric = z.infer<typeof PostMetricSchema>;
|
264
|
+
export type GoogleScraperEvent = {
|
265
|
+
type: 'webmaster';
|
266
|
+
min: number;
|
267
|
+
max: number;
|
268
|
+
} | {
|
269
|
+
type: 'sentiment';
|
270
|
+
};
|
264
271
|
|
265
272
|
}
|
266
273
|
declare module 'analytica.click' {
|
@@ -79,3 +79,10 @@ export type PostErrorData = z.infer<typeof PostErrorDataSchema>;
|
|
79
79
|
export type PostError = z.infer<typeof PostErrorSchema>;
|
80
80
|
export type PostMetricData = z.infer<typeof PostMetricDataSchema>;
|
81
81
|
export type PostMetric = z.infer<typeof PostMetricSchema>;
|
82
|
+
export type GoogleScraperEvent = {
|
83
|
+
type: 'webmaster';
|
84
|
+
min: number;
|
85
|
+
max: number;
|
86
|
+
} | {
|
87
|
+
type: 'sentiment';
|
88
|
+
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "analytica.click",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.550",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"typings": "dist/index.d.ts",
|
@@ -8,7 +8,7 @@
|
|
8
8
|
"license": "ISC",
|
9
9
|
"dependencies": {
|
10
10
|
"@types/react": "^19.0.0",
|
11
|
-
"ag-common": "0.0.
|
11
|
+
"ag-common": "0.0.786",
|
12
12
|
"cross-env": "^10.0.0",
|
13
13
|
"cross-fetch": "^4.0.0",
|
14
14
|
"nodemon": "^3",
|