@graphext/cuery 0.6.2 → 0.6.3

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.
@@ -14,7 +14,6 @@ export type * from './persona.schema.js';
14
14
  export type * from './brand.schema.js';
15
15
  export type * from './funnel.schema.js';
16
16
  export type * from './keyword.schema.js';
17
- export type * from './pipeline.schema.js';
18
17
  export type * from './models.schema.js';
19
18
  export type * from './seedKeyword.schema.js';
20
19
  export type * from './topics.schema.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/src/schemas/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,mBAAmB,CAAC;AACvC,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,sBAAsB,CAAC;AAC1C,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,yBAAyB,CAAC;AAC7C,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/src/schemas/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,mBAAmB,CAAC;AACvC,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,yBAAyB,CAAC;AAC7C,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,oBAAoB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphext/cuery",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "Cuery tools for AI-powered keyword research and brand analysis",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,7 +14,6 @@ export type * from './persona.schema.js';
14
14
  export type * from './brand.schema.js';
15
15
  export type * from './funnel.schema.js';
16
16
  export type * from './keyword.schema.js';
17
- export type * from './pipeline.schema.js';
18
17
  export type * from './models.schema.js';
19
18
  export type * from './seedKeyword.schema.js';
20
19
  export type * from './topics.schema.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/src/schemas/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,mBAAmB,CAAC;AACvC,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,sBAAsB,CAAC;AAC1C,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,yBAAyB,CAAC;AAC7C,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,oBAAoB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/src/schemas/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAGH,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,mBAAmB,CAAC;AACvC,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,yBAAyB,CAAC;AAC7C,mBAAmB,oBAAoB,CAAC;AACxC,mBAAmB,qBAAqB,CAAC;AACzC,mBAAmB,oBAAoB,CAAC"}
@@ -1,146 +0,0 @@
1
- /**
2
- * Pipeline Context Type Definitions
3
- *
4
- * These types define the structure for pipeline execution contexts.
5
- * They are shared between client and server code.
6
- *
7
- * IMPORTANT: This type must be kept in sync with the dynamically generated
8
- * type from: supabase/functions/pipelines/workflows/audit.ts
9
- *
10
- * The actual pipeline generates:
11
- * export type AiAuditPromptsPipelineContext = OrchestratorRunContext<typeof promptsPipeline>;
12
- *
13
- * This static definition serves as a contract for client-side usage.
14
- * It represents the union of all context types required by the pipeline nodes.
15
- */
16
- import type { Brand, BrandContext, FlaggedBrand } from './brand.schema.js';
17
- import type { Funnel } from './funnel.schema.js';
18
- import type { ModelIdentifier } from './models.schema.js';
19
- import type { Persona } from './persona.schema.js';
20
- import type { TopicType } from './topics.schema.js';
21
- export interface KeywordPlannerOptions {
22
- url?: string;
23
- urlAsExpandRelevanceContext?: string;
24
- generateIdeasFromSeeds?: boolean;
25
- }
26
- export interface AiAuditPromptsPipelineOptions {
27
- filterLowRelevanceKeywords?: boolean;
28
- /** When true, adds deduplicatedKeywords column with all keywords sharing the same metrics */
29
- includeDeduplicatedKeywords?: boolean;
30
- /** When true, includes seedKeywords column in output records. Defaults to false. */
31
- includeSeedKeywords?: boolean;
32
- /** When true, generates a separate dataset with all keywords (dedup by keyword only). Defaults to false. */
33
- includeAllKeywordsDataset?: boolean;
34
- }
35
- /**
36
- * AI Audit Pipeline Request Structure
37
- *
38
- * This represents the structure of the request sent to the /pipelines/run endpoint.
39
- * The `context` field should match the AiAuditPromptsPipelineContext from the orchestrator.
40
- */
41
- export interface AiAuditPromptsPipelineRequest {
42
- pipelineName: 'promptsPipeline';
43
- context: AiAuditPromptsPipelineContext;
44
- }
45
- /**
46
- * AI Audit Answers Pipeline Request Structure
47
- *
48
- * This represents the structure of the request sent to the /pipelines/run endpoint.
49
- * The `context` field should match the AiAuditAnswersPipelineContext from the orchestrator.
50
- */
51
- export interface AiAuditAnswersPipelineRequest {
52
- pipelineName: 'answersPipeline';
53
- context: AiAuditAnswersPipelineContext;
54
- }
55
- /**
56
- * AI Audit Prompts Pipeline Context Data - Static Definition
57
- *
58
- * This represents the union of all context parameters required by the
59
- * various nodes in the AI audit prompts pipeline:
60
- *
61
- * - { keywordPlanner }: Keyword Planner parameters & seed sources
62
- * - { options }: Pipeline-level flags
63
- * - { workspaceId, projectName }: Project creation parameters
64
- * - { funnel }: Funnel assignment parameters
65
- * - { brand }: Brand-specific processing parameters
66
- * - { brands }: Brand collection parameters
67
- */
68
- export interface AiAuditPromptsPipelineContext {
69
- clientUserEmail: string;
70
- workspaceId: number;
71
- projectName?: string;
72
- /** Optional existing project to append prompts into. */
73
- projectId?: number;
74
- keywordPlanner: KeywordPlannerOptions;
75
- /** ISO 639-1 language code for prompts/keywords (e.g., "en"). */
76
- languageCode?: string;
77
- /** ISO 3166-1 alpha-2 country code to localize sources (e.g., "US"). */
78
- countryISOCode?: string;
79
- /**
80
- * Custom prompts provided by the user.
81
- * These go directly to the prompt dataset without keyword expansion.
82
- */
83
- directPrompts?: Array<string>;
84
- /**
85
- * Custom seed keywords provided by the user.
86
- * These are processed through keyword expansion like other seed keywords.
87
- */
88
- customSeedKeywords?: Array<string>;
89
- funnel?: Funnel;
90
- brand: BrandContext;
91
- competitors: Array<FlaggedBrand | Brand>;
92
- personas: Array<Persona>;
93
- options?: AiAuditPromptsPipelineOptions;
94
- topics?: Array<TopicType>;
95
- }
96
- /**
97
- * AI Audit Answers Pipeline Context Data
98
- *
99
- * Context parameters required by the answers pipeline.
100
- */
101
- export interface AiAuditAnswersPipelineContext {
102
- clientUserEmail: string;
103
- projectId: number;
104
- promptIds: Array<number>;
105
- models: Array<ModelIdentifier>;
106
- countryISOCode?: string;
107
- brand: BrandContext;
108
- competitors?: Array<FlaggedBrand | Brand>;
109
- /**
110
- * Panel ID for grouping answers by execution source.
111
- * When present (scheduled cron execution), answers are grouped by panelId.
112
- */
113
- panelId?: number;
114
- }
115
- /**
116
- * Persisted project configuration (pipeline context without user metadata).
117
- */
118
- export type AiAuditProjectConfig = Omit<AiAuditPromptsPipelineContext, 'clientUserEmail' | 'projectId'>;
119
- /**
120
- * Topic Update Pipeline Request Structure
121
- *
122
- * This represents the structure of the request sent to the /pipelines/run endpoint
123
- * for updating topic hierarchy in existing prompts.
124
- */
125
- export interface TopicUpdatePipelineRequest {
126
- pipelineName: 'topicUpdatePipeline';
127
- context: TopicUpdatePipelineContext;
128
- }
129
- /**
130
- * Topic Update Pipeline Context Data
131
- *
132
- * Context parameters required by the topic update pipeline.
133
- * This pipeline downloads the prompts dataset, re-assigns topics using AI
134
- * based on the provided taxonomy, and uploads the updated dataset back to the project.
135
- */
136
- export interface TopicUpdatePipelineContext {
137
- clientUserEmail: string;
138
- projectId: number;
139
- /**
140
- * The topics taxonomy to use for assigning topics.
141
- * Each topic contains a name and a list of subtopics.
142
- * The AI will classify each prompt into the appropriate topic/subtopic.
143
- */
144
- topics: Array<TopicType>;
145
- }
146
- //# sourceMappingURL=pipeline.schema.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"pipeline.schema.d.ts","sourceRoot":"","sources":["../../../src/src/schemas/pipeline.schema.ts"],"names":[],"mappings":"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"}
@@ -1,16 +0,0 @@
1
- /**
2
- * Pipeline Context Type Definitions
3
- *
4
- * These types define the structure for pipeline execution contexts.
5
- * They are shared between client and server code.
6
- *
7
- * IMPORTANT: This type must be kept in sync with the dynamically generated
8
- * type from: supabase/functions/pipelines/workflows/audit.ts
9
- *
10
- * The actual pipeline generates:
11
- * export type AiAuditPromptsPipelineContext = OrchestratorRunContext<typeof promptsPipeline>;
12
- *
13
- * This static definition serves as a contract for client-side usage.
14
- * It represents the union of all context types required by the pipeline nodes.
15
- */
16
- export {};
@@ -1,146 +0,0 @@
1
- /**
2
- * Pipeline Context Type Definitions
3
- *
4
- * These types define the structure for pipeline execution contexts.
5
- * They are shared between client and server code.
6
- *
7
- * IMPORTANT: This type must be kept in sync with the dynamically generated
8
- * type from: supabase/functions/pipelines/workflows/audit.ts
9
- *
10
- * The actual pipeline generates:
11
- * export type AiAuditPromptsPipelineContext = OrchestratorRunContext<typeof promptsPipeline>;
12
- *
13
- * This static definition serves as a contract for client-side usage.
14
- * It represents the union of all context types required by the pipeline nodes.
15
- */
16
- import type { Brand, BrandContext, FlaggedBrand } from './brand.schema.js';
17
- import type { Funnel } from './funnel.schema.js';
18
- import type { ModelIdentifier } from './models.schema.js';
19
- import type { Persona } from './persona.schema.js';
20
- import type { TopicType } from './topics.schema.js';
21
- export interface KeywordPlannerOptions {
22
- url?: string;
23
- urlAsExpandRelevanceContext?: string;
24
- generateIdeasFromSeeds?: boolean;
25
- }
26
- export interface AiAuditPromptsPipelineOptions {
27
- filterLowRelevanceKeywords?: boolean;
28
- /** When true, adds deduplicatedKeywords column with all keywords sharing the same metrics */
29
- includeDeduplicatedKeywords?: boolean;
30
- /** When true, includes seedKeywords column in output records. Defaults to false. */
31
- includeSeedKeywords?: boolean;
32
- /** When true, generates a separate dataset with all keywords (dedup by keyword only). Defaults to false. */
33
- includeAllKeywordsDataset?: boolean;
34
- }
35
- /**
36
- * AI Audit Pipeline Request Structure
37
- *
38
- * This represents the structure of the request sent to the /pipelines/run endpoint.
39
- * The `context` field should match the AiAuditPromptsPipelineContext from the orchestrator.
40
- */
41
- export interface AiAuditPromptsPipelineRequest {
42
- pipelineName: 'promptsPipeline';
43
- context: AiAuditPromptsPipelineContext;
44
- }
45
- /**
46
- * AI Audit Answers Pipeline Request Structure
47
- *
48
- * This represents the structure of the request sent to the /pipelines/run endpoint.
49
- * The `context` field should match the AiAuditAnswersPipelineContext from the orchestrator.
50
- */
51
- export interface AiAuditAnswersPipelineRequest {
52
- pipelineName: 'answersPipeline';
53
- context: AiAuditAnswersPipelineContext;
54
- }
55
- /**
56
- * AI Audit Prompts Pipeline Context Data - Static Definition
57
- *
58
- * This represents the union of all context parameters required by the
59
- * various nodes in the AI audit prompts pipeline:
60
- *
61
- * - { keywordPlanner }: Keyword Planner parameters & seed sources
62
- * - { options }: Pipeline-level flags
63
- * - { workspaceId, projectName }: Project creation parameters
64
- * - { funnel }: Funnel assignment parameters
65
- * - { brand }: Brand-specific processing parameters
66
- * - { brands }: Brand collection parameters
67
- */
68
- export interface AiAuditPromptsPipelineContext {
69
- clientUserEmail: string;
70
- workspaceId: number;
71
- projectName?: string;
72
- /** Optional existing project to append prompts into. */
73
- projectId?: number;
74
- keywordPlanner: KeywordPlannerOptions;
75
- /** ISO 639-1 language code for prompts/keywords (e.g., "en"). */
76
- languageCode?: string;
77
- /** ISO 3166-1 alpha-2 country code to localize sources (e.g., "US"). */
78
- countryISOCode?: string;
79
- /**
80
- * Custom prompts provided by the user.
81
- * These go directly to the prompt dataset without keyword expansion.
82
- */
83
- directPrompts?: Array<string>;
84
- /**
85
- * Custom seed keywords provided by the user.
86
- * These are processed through keyword expansion like other seed keywords.
87
- */
88
- customSeedKeywords?: Array<string>;
89
- funnel?: Funnel;
90
- brand: BrandContext;
91
- competitors: Array<FlaggedBrand | Brand>;
92
- personas: Array<Persona>;
93
- options?: AiAuditPromptsPipelineOptions;
94
- topics?: Array<TopicType>;
95
- }
96
- /**
97
- * AI Audit Answers Pipeline Context Data
98
- *
99
- * Context parameters required by the answers pipeline.
100
- */
101
- export interface AiAuditAnswersPipelineContext {
102
- clientUserEmail: string;
103
- projectId: number;
104
- promptIds: Array<number>;
105
- models: Array<ModelIdentifier>;
106
- countryISOCode?: string;
107
- brand: BrandContext;
108
- competitors?: Array<FlaggedBrand | Brand>;
109
- /**
110
- * Panel ID for grouping answers by execution source.
111
- * When present (scheduled cron execution), answers are grouped by panelId.
112
- */
113
- panelId?: number;
114
- }
115
- /**
116
- * Persisted project configuration (pipeline context without user metadata).
117
- */
118
- export type AiAuditProjectConfig = Omit<AiAuditPromptsPipelineContext, 'clientUserEmail' | 'projectId'>;
119
- /**
120
- * Topic Update Pipeline Request Structure
121
- *
122
- * This represents the structure of the request sent to the /pipelines/run endpoint
123
- * for updating topic hierarchy in existing prompts.
124
- */
125
- export interface TopicUpdatePipelineRequest {
126
- pipelineName: 'topicUpdatePipeline';
127
- context: TopicUpdatePipelineContext;
128
- }
129
- /**
130
- * Topic Update Pipeline Context Data
131
- *
132
- * Context parameters required by the topic update pipeline.
133
- * This pipeline downloads the prompts dataset, re-assigns topics using AI
134
- * based on the provided taxonomy, and uploads the updated dataset back to the project.
135
- */
136
- export interface TopicUpdatePipelineContext {
137
- clientUserEmail: string;
138
- projectId: number;
139
- /**
140
- * The topics taxonomy to use for assigning topics.
141
- * Each topic contains a name and a list of subtopics.
142
- * The AI will classify each prompt into the appropriate topic/subtopic.
143
- */
144
- topics: Array<TopicType>;
145
- }
146
- //# sourceMappingURL=pipeline.schema.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"pipeline.schema.d.ts","sourceRoot":"","sources":["../../../src/src/schemas/pipeline.schema.ts"],"names":[],"mappings":"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"}
@@ -1,17 +0,0 @@
1
- "use strict";
2
- /**
3
- * Pipeline Context Type Definitions
4
- *
5
- * These types define the structure for pipeline execution contexts.
6
- * They are shared between client and server code.
7
- *
8
- * IMPORTANT: This type must be kept in sync with the dynamically generated
9
- * type from: supabase/functions/pipelines/workflows/audit.ts
10
- *
11
- * The actual pipeline generates:
12
- * export type AiAuditPromptsPipelineContext = OrchestratorRunContext<typeof promptsPipeline>;
13
- *
14
- * This static definition serves as a contract for client-side usage.
15
- * It represents the union of all context types required by the pipeline nodes.
16
- */
17
- Object.defineProperty(exports, "__esModule", { value: true });