analytica.click 0.0.530 → 0.0.532
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 +30 -0
- package/dist/ui/src/server/schema/index.d.ts +30 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
@@ -184,6 +184,9 @@ declare module 'analytica.click/dist/ui/src/server/schema/index' {
|
|
184
184
|
export const createBingIntegrationSchema: z.ZodObject<{
|
185
185
|
key: z.ZodString;
|
186
186
|
}, z.core.$strip>;
|
187
|
+
export const createCloudflareIntegrationSchema: z.ZodObject<{
|
188
|
+
key: z.ZodString;
|
189
|
+
}, z.core.$strip>;
|
187
190
|
export const successResponseSchema: z.ZodObject<{
|
188
191
|
success: z.ZodBoolean;
|
189
192
|
}, z.core.$strip>;
|
@@ -224,11 +227,16 @@ declare module 'analytica.click/dist/ui/src/server/schema/index' {
|
|
224
227
|
key: z.ZodString;
|
225
228
|
account: z.ZodString;
|
226
229
|
}, z.core.$strip>;
|
230
|
+
export const CloudflareIntegrationSchema: z.ZodObject<{
|
231
|
+
key: z.ZodString;
|
232
|
+
account: z.ZodString;
|
233
|
+
}, z.core.$strip>;
|
227
234
|
export const ApiKeySchema: z.ZodObject<{
|
228
235
|
key: z.ZodString;
|
229
236
|
adminKey: z.ZodString;
|
230
237
|
account: z.ZodString;
|
231
238
|
site: z.ZodString;
|
239
|
+
healthCheckPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
232
240
|
}, z.core.$strip>;
|
233
241
|
export const QuerySchema: z.ZodObject<{
|
234
242
|
account: z.ZodOptional<z.ZodString>;
|
@@ -654,6 +662,25 @@ declare module 'analytica.click/dist/ui/src/server/schema/index' {
|
|
654
662
|
query: z.ZodString;
|
655
663
|
}, z.core.$strip>>;
|
656
664
|
}, z.core.$strip>>>;
|
665
|
+
cloudflare: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
666
|
+
account: z.ZodString;
|
667
|
+
email: z.ZodString;
|
668
|
+
site: z.ZodString;
|
669
|
+
datetime: z.ZodNumber;
|
670
|
+
category: z.ZodString;
|
671
|
+
totals: z.ZodObject<{
|
672
|
+
clicks: z.ZodNumber;
|
673
|
+
impressions: z.ZodNumber;
|
674
|
+
position: z.ZodNumber;
|
675
|
+
query: z.ZodString;
|
676
|
+
}, z.core.$strip>;
|
677
|
+
queries: z.ZodArray<z.ZodObject<{
|
678
|
+
clicks: z.ZodNumber;
|
679
|
+
impressions: z.ZodNumber;
|
680
|
+
position: z.ZodNumber;
|
681
|
+
query: z.ZodString;
|
682
|
+
}, z.core.$strip>>;
|
683
|
+
}, z.core.$strip>>>;
|
657
684
|
}, z.core.$strip>;
|
658
685
|
export const PostAccountSchema: z.ZodObject<{
|
659
686
|
site: z.ZodString;
|
@@ -683,6 +710,8 @@ declare module 'analytica.click/dist/ui/src/server/schema/index' {
|
|
683
710
|
googleKey: z.ZodOptional<z.ZodString>;
|
684
711
|
bingKey: z.ZodOptional<z.ZodString>;
|
685
712
|
bingAccount: z.ZodOptional<z.ZodString>;
|
713
|
+
cloudflareKey: z.ZodOptional<z.ZodString>;
|
714
|
+
cloudflareAccount: z.ZodOptional<z.ZodString>;
|
686
715
|
}, z.core.$strip>;
|
687
716
|
export type SeoResultValues = z.infer<typeof SeoResultValuesSchema>;
|
688
717
|
export type SeoResult = z.infer<typeof SeoResultSchema>;
|
@@ -690,6 +719,7 @@ declare module 'analytica.click/dist/ui/src/server/schema/index' {
|
|
690
719
|
export type GetAccounts = z.infer<typeof GetAccountsSchema>;
|
691
720
|
export type GoogleIntegration = z.infer<typeof GoogleIntegrationSchema>;
|
692
721
|
export type BingIntegration = z.infer<typeof BingIntegrationSchema>;
|
722
|
+
export type CloudflareIntegration = z.infer<typeof CloudflareIntegrationSchema>;
|
693
723
|
export type ApiKey = z.infer<typeof ApiKeySchema>;
|
694
724
|
export type Query = z.infer<typeof QuerySchema>;
|
695
725
|
export type Browser = z.infer<typeof BrowserSchema>;
|
@@ -16,6 +16,9 @@ export declare const createGoogleIntegrationSchema: z.ZodObject<{
|
|
16
16
|
export declare const createBingIntegrationSchema: z.ZodObject<{
|
17
17
|
key: z.ZodString;
|
18
18
|
}, z.core.$strip>;
|
19
|
+
export declare const createCloudflareIntegrationSchema: z.ZodObject<{
|
20
|
+
key: z.ZodString;
|
21
|
+
}, z.core.$strip>;
|
19
22
|
export declare const successResponseSchema: z.ZodObject<{
|
20
23
|
success: z.ZodBoolean;
|
21
24
|
}, z.core.$strip>;
|
@@ -56,11 +59,16 @@ export declare const BingIntegrationSchema: z.ZodObject<{
|
|
56
59
|
key: z.ZodString;
|
57
60
|
account: z.ZodString;
|
58
61
|
}, z.core.$strip>;
|
62
|
+
export declare const CloudflareIntegrationSchema: z.ZodObject<{
|
63
|
+
key: z.ZodString;
|
64
|
+
account: z.ZodString;
|
65
|
+
}, z.core.$strip>;
|
59
66
|
export declare const ApiKeySchema: z.ZodObject<{
|
60
67
|
key: z.ZodString;
|
61
68
|
adminKey: z.ZodString;
|
62
69
|
account: z.ZodString;
|
63
70
|
site: z.ZodString;
|
71
|
+
healthCheckPath: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
64
72
|
}, z.core.$strip>;
|
65
73
|
export declare const QuerySchema: z.ZodObject<{
|
66
74
|
account: z.ZodOptional<z.ZodString>;
|
@@ -486,6 +494,25 @@ export declare const SiteDataSchema: z.ZodObject<{
|
|
486
494
|
query: z.ZodString;
|
487
495
|
}, z.core.$strip>>;
|
488
496
|
}, z.core.$strip>>>;
|
497
|
+
cloudflare: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
498
|
+
account: z.ZodString;
|
499
|
+
email: z.ZodString;
|
500
|
+
site: z.ZodString;
|
501
|
+
datetime: z.ZodNumber;
|
502
|
+
category: z.ZodString;
|
503
|
+
totals: z.ZodObject<{
|
504
|
+
clicks: z.ZodNumber;
|
505
|
+
impressions: z.ZodNumber;
|
506
|
+
position: z.ZodNumber;
|
507
|
+
query: z.ZodString;
|
508
|
+
}, z.core.$strip>;
|
509
|
+
queries: z.ZodArray<z.ZodObject<{
|
510
|
+
clicks: z.ZodNumber;
|
511
|
+
impressions: z.ZodNumber;
|
512
|
+
position: z.ZodNumber;
|
513
|
+
query: z.ZodString;
|
514
|
+
}, z.core.$strip>>;
|
515
|
+
}, z.core.$strip>>>;
|
489
516
|
}, z.core.$strip>;
|
490
517
|
export declare const PostAccountSchema: z.ZodObject<{
|
491
518
|
site: z.ZodString;
|
@@ -515,6 +542,8 @@ export declare const GetAccountsSchema: z.ZodObject<{
|
|
515
542
|
googleKey: z.ZodOptional<z.ZodString>;
|
516
543
|
bingKey: z.ZodOptional<z.ZodString>;
|
517
544
|
bingAccount: z.ZodOptional<z.ZodString>;
|
545
|
+
cloudflareKey: z.ZodOptional<z.ZodString>;
|
546
|
+
cloudflareAccount: z.ZodOptional<z.ZodString>;
|
518
547
|
}, z.core.$strip>;
|
519
548
|
export type SeoResultValues = z.infer<typeof SeoResultValuesSchema>;
|
520
549
|
export type SeoResult = z.infer<typeof SeoResultSchema>;
|
@@ -522,6 +551,7 @@ export type GetAccount = z.infer<typeof GetAccountSchema>;
|
|
522
551
|
export type GetAccounts = z.infer<typeof GetAccountsSchema>;
|
523
552
|
export type GoogleIntegration = z.infer<typeof GoogleIntegrationSchema>;
|
524
553
|
export type BingIntegration = z.infer<typeof BingIntegrationSchema>;
|
554
|
+
export type CloudflareIntegration = z.infer<typeof CloudflareIntegrationSchema>;
|
525
555
|
export type ApiKey = z.infer<typeof ApiKeySchema>;
|
526
556
|
export type Query = z.infer<typeof QuerySchema>;
|
527
557
|
export type Browser = z.infer<typeof BrowserSchema>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "analytica.click",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.532",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"typings": "dist/index.d.ts",
|
@@ -17,7 +17,7 @@
|
|
17
17
|
"typescript": "^5"
|
18
18
|
},
|
19
19
|
"devDependencies": {
|
20
|
-
"@types/node": "24.3.
|
20
|
+
"@types/node": "24.3.3",
|
21
21
|
"esbuild": "0.25.9",
|
22
22
|
"esbuild-node-externals": "1.18.0",
|
23
23
|
"esbuild-plugin-d.ts": "1.1.0",
|