analytica.click 0.0.541 → 0.0.542

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
@@ -186,7 +186,13 @@ declare module 'analytica.click/dist/ui/src/server/schema/api' {
186
186
  }, z.core.$strip>;
187
187
  export type IIdentifyInputSchema = z.infer<typeof IdentifyInputSchema>;
188
188
  export const IdentifyResponseSchema: z.ZodObject<{
189
- url: z.ZodString;
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>;
190
196
  }, z.core.$strip>;
191
197
  export type IIdentifyResponseSchema = z.infer<typeof IdentifyResponseSchema>;
192
198
  export const PostEventDataSchema: z.ZodObject<{
@@ -270,6 +276,38 @@ declare module 'analytica.click/dist/ui/src/server/schema/api' {
270
276
  export type PostMetricData = z.infer<typeof PostMetricDataSchema>;
271
277
  export type PostMetric = z.infer<typeof PostMetricSchema>;
272
278
 
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
+
273
311
  }
274
312
  declare module 'analytica.click' {
275
313
  import main = require('analytica.click/dist/index');
@@ -4,7 +4,13 @@ export declare const IdentifyInputSchema: z.ZodObject<{
4
4
  }, z.core.$strip>;
5
5
  export type IIdentifyInputSchema = z.infer<typeof IdentifyInputSchema>;
6
6
  export declare const IdentifyResponseSchema: z.ZodObject<{
7
- url: z.ZodString;
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>;
8
14
  }, z.core.$strip>;
9
15
  export type IIdentifyResponseSchema = z.infer<typeof IdentifyResponseSchema>;
10
16
  export declare const PostEventDataSchema: z.ZodObject<{
@@ -0,0 +1,29 @@
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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "analytica.click",
3
- "version": "0.0.541",
3
+ "version": "0.0.542",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",