analytica.click 0.0.542 → 0.0.543

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
@@ -181,20 +181,6 @@ declare module 'analytica.click/dist/types' {
181
181
  }
182
182
  declare module 'analytica.click/dist/ui/src/server/schema/api' {
183
183
  import { z } from 'zod';
184
- export const IdentifyInputSchema: z.ZodObject<{
185
- url: z.ZodString;
186
- }, z.core.$strip>;
187
- export type IIdentifyInputSchema = z.infer<typeof IdentifyInputSchema>;
188
- export const IdentifyResponseSchema: z.ZodObject<{
189
- site: z.ZodString;
190
- account: z.ZodString;
191
- datetime: z.ZodNumber;
192
- identify: z.ZodObject<{
193
- idea: z.ZodString;
194
- problemStatement: z.ZodString;
195
- }, z.core.$strip>;
196
- }, z.core.$strip>;
197
- export type IIdentifyResponseSchema = z.infer<typeof IdentifyResponseSchema>;
198
184
  export const PostEventDataSchema: z.ZodObject<{
199
185
  eventName: z.ZodString;
200
186
  pageReferrer: z.ZodOptional<z.ZodString>;
@@ -276,38 +262,6 @@ declare module 'analytica.click/dist/ui/src/server/schema/api' {
276
262
  export type PostMetricData = z.infer<typeof PostMetricDataSchema>;
277
263
  export type PostMetric = z.infer<typeof PostMetricSchema>;
278
264
 
279
- }
280
- declare module 'analytica.click/dist/ui/src/server/schema/discovery' {
281
- import z from 'zod';
282
- export const IdentifyContentPrompt: z.ZodObject<{
283
- idea: z.ZodString;
284
- problemStatement: z.ZodString;
285
- }, z.core.$strip>;
286
- export type IIdentifyContentPrompt = z.infer<typeof IdentifyContentPrompt>;
287
- export const IdentifyContentPromptString = "z.object({\n idea: z.string(),\n problemStatement: z.string(),\n})\n";
288
- export const IdentifyDataSchema: z.ZodObject<{
289
- site: z.ZodString;
290
- account: z.ZodString;
291
- datetime: z.ZodNumber;
292
- identify: z.ZodObject<{
293
- idea: z.ZodString;
294
- problemStatement: z.ZodString;
295
- }, z.core.$strip>;
296
- }, z.core.$strip>;
297
- export type IIdentifyDataSchema = z.infer<typeof IdentifyDataSchema>;
298
- export const DiscoveryDataSchema: z.ZodObject<{
299
- identify: z.ZodOptional<z.ZodObject<{
300
- site: z.ZodString;
301
- account: z.ZodString;
302
- datetime: z.ZodNumber;
303
- identify: z.ZodObject<{
304
- idea: z.ZodString;
305
- problemStatement: z.ZodString;
306
- }, z.core.$strip>;
307
- }, z.core.$strip>>;
308
- }, z.core.$strip>;
309
- export type IDiscoveryDataSchema = z.infer<typeof DiscoveryDataSchema>;
310
-
311
265
  }
312
266
  declare module 'analytica.click' {
313
267
  import main = require('analytica.click/dist/index');
@@ -1,18 +1,4 @@
1
1
  import { z } from 'zod';
2
- export declare const IdentifyInputSchema: z.ZodObject<{
3
- url: z.ZodString;
4
- }, z.core.$strip>;
5
- export type IIdentifyInputSchema = z.infer<typeof IdentifyInputSchema>;
6
- export declare const IdentifyResponseSchema: z.ZodObject<{
7
- site: z.ZodString;
8
- account: z.ZodString;
9
- datetime: z.ZodNumber;
10
- identify: z.ZodObject<{
11
- idea: z.ZodString;
12
- problemStatement: z.ZodString;
13
- }, z.core.$strip>;
14
- }, z.core.$strip>;
15
- export type IIdentifyResponseSchema = z.infer<typeof IdentifyResponseSchema>;
16
2
  export declare const PostEventDataSchema: z.ZodObject<{
17
3
  eventName: z.ZodString;
18
4
  pageReferrer: z.ZodOptional<z.ZodString>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "analytica.click",
3
- "version": "0.0.542",
3
+ "version": "0.0.543",
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.5.2",
20
+ "@types/node": "24.6.2",
21
21
  "esbuild": "0.25.10",
22
22
  "esbuild-node-externals": "1.18.0",
23
23
  "esbuild-plugin-d.ts": "1.1.0",
@@ -1,29 +0,0 @@
1
- import z from 'zod';
2
- export declare const IdentifyContentPrompt: z.ZodObject<{
3
- idea: z.ZodString;
4
- problemStatement: z.ZodString;
5
- }, z.core.$strip>;
6
- export type IIdentifyContentPrompt = z.infer<typeof IdentifyContentPrompt>;
7
- export declare const IdentifyContentPromptString = "z.object({\n idea: z.string(),\n problemStatement: z.string(),\n})\n";
8
- export declare const IdentifyDataSchema: z.ZodObject<{
9
- site: z.ZodString;
10
- account: z.ZodString;
11
- datetime: z.ZodNumber;
12
- identify: z.ZodObject<{
13
- idea: z.ZodString;
14
- problemStatement: z.ZodString;
15
- }, z.core.$strip>;
16
- }, z.core.$strip>;
17
- export type IIdentifyDataSchema = z.infer<typeof IdentifyDataSchema>;
18
- export declare const DiscoveryDataSchema: z.ZodObject<{
19
- identify: z.ZodOptional<z.ZodObject<{
20
- site: z.ZodString;
21
- account: z.ZodString;
22
- datetime: z.ZodNumber;
23
- identify: z.ZodObject<{
24
- idea: z.ZodString;
25
- problemStatement: z.ZodString;
26
- }, z.core.$strip>;
27
- }, z.core.$strip>>;
28
- }, z.core.$strip>;
29
- export type IDiscoveryDataSchema = z.infer<typeof DiscoveryDataSchema>;