@lucern/contracts 1.0.51 → 1.0.53

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/CHANGELOG.md CHANGED
@@ -168,3 +168,9 @@ All notable changes to `@lucern/contracts` are tracked in this repository.
168
168
 
169
169
  ## [1.0.51] - 2026-06-29
170
170
  - Release notes pending.
171
+
172
+ ## [1.0.52] - 2026-06-30
173
+ - Release notes pending.
174
+
175
+ ## [1.0.53] - 2026-06-30
176
+ - Release notes pending.
@@ -96,104 +96,7 @@ export declare const createEpistemicNodeItemArgs: z.ZodObject<{
96
96
  aiProvider?: string | undefined;
97
97
  extractedFromNodeId?: string | undefined;
98
98
  }>;
99
- export declare const createEpistemicNodeArgs: z.ZodObject<{
100
- globalId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
101
- nodeType: z.ZodEnum<["decision", "belief", "question", "theme", "deal", "topic", "claim", "evidence", "synthesis", "answer", "atomic_fact", "excerpt", "source", "company", "person", "investor", "function", "value_chain"]>;
102
- subtype: z.ZodOptional<z.ZodString>;
103
- canonicalText: z.ZodOptional<z.ZodString>;
104
- text: z.ZodOptional<z.ZodString>;
105
- contentHash: z.ZodOptional<z.ZodString>;
106
- content: z.ZodOptional<z.ZodString>;
107
- contentType: z.ZodOptional<z.ZodString>;
108
- title: z.ZodOptional<z.ZodString>;
109
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
110
- domain: z.ZodOptional<z.ZodString>;
111
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
112
- externalIds: z.ZodOptional<z.ZodObject<{
113
- crunchbase: z.ZodOptional<z.ZodString>;
114
- linkedin: z.ZodOptional<z.ZodString>;
115
- pitchbook: z.ZodOptional<z.ZodString>;
116
- twitter: z.ZodOptional<z.ZodString>;
117
- website: z.ZodOptional<z.ZodString>;
118
- }, "strip", z.ZodTypeAny, {
119
- crunchbase?: string | undefined;
120
- linkedin?: string | undefined;
121
- pitchbook?: string | undefined;
122
- twitter?: string | undefined;
123
- website?: string | undefined;
124
- }, {
125
- crunchbase?: string | undefined;
126
- linkedin?: string | undefined;
127
- pitchbook?: string | undefined;
128
- twitter?: string | undefined;
129
- website?: string | undefined;
130
- }>>;
131
- sourceType: z.ZodOptional<z.ZodEnum<["human", "ai_extracted", "ai_generated", "imported", "system", "verified", "proprietary"]>>;
132
- aiProvider: z.ZodOptional<z.ZodString>;
133
- extractedFromNodeId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
134
- confidence: z.ZodOptional<z.ZodNumber>;
135
- verificationStatus: z.ZodOptional<z.ZodEnum<["unverified", "human_verified", "ai_verified", "contradicted", "outdated"]>>;
136
- topicId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
137
- createdBy: z.ZodOptional<z.ZodString>;
138
- trustedBypassAccessCheck: z.ZodOptional<z.ZodBoolean>;
139
- }, "strip", z.ZodTypeAny, {
140
- nodeType: "function" | "source" | "answer" | "decision" | "belief" | "question" | "theme" | "deal" | "topic" | "claim" | "evidence" | "synthesis" | "atomic_fact" | "excerpt" | "company" | "person" | "investor" | "value_chain";
141
- content?: string | undefined;
142
- title?: string | undefined;
143
- metadata?: Record<string, unknown> | undefined;
144
- text?: string | undefined;
145
- sourceType?: "system" | "human" | "proprietary" | "ai_extracted" | "ai_generated" | "imported" | "verified" | undefined;
146
- globalId?: string | undefined;
147
- contentHash?: string | undefined;
148
- topicId?: string | undefined;
149
- canonicalText?: string | undefined;
150
- createdBy?: string | undefined;
151
- confidence?: number | undefined;
152
- verificationStatus?: "unverified" | "human_verified" | "ai_verified" | "contradicted" | "outdated" | undefined;
153
- contentType?: string | undefined;
154
- tags?: string[] | undefined;
155
- trustedBypassAccessCheck?: boolean | undefined;
156
- domain?: string | undefined;
157
- subtype?: string | undefined;
158
- externalIds?: {
159
- crunchbase?: string | undefined;
160
- linkedin?: string | undefined;
161
- pitchbook?: string | undefined;
162
- twitter?: string | undefined;
163
- website?: string | undefined;
164
- } | undefined;
165
- aiProvider?: string | undefined;
166
- extractedFromNodeId?: string | undefined;
167
- }, {
168
- nodeType: "function" | "source" | "answer" | "decision" | "belief" | "question" | "theme" | "deal" | "topic" | "claim" | "evidence" | "synthesis" | "atomic_fact" | "excerpt" | "company" | "person" | "investor" | "value_chain";
169
- content?: string | undefined;
170
- title?: string | undefined;
171
- metadata?: Record<string, unknown> | undefined;
172
- text?: string | undefined;
173
- sourceType?: "system" | "human" | "proprietary" | "ai_extracted" | "ai_generated" | "imported" | "verified" | undefined;
174
- globalId?: string | undefined;
175
- contentHash?: string | undefined;
176
- topicId?: string | undefined;
177
- canonicalText?: string | undefined;
178
- createdBy?: string | undefined;
179
- confidence?: number | undefined;
180
- verificationStatus?: "unverified" | "human_verified" | "ai_verified" | "contradicted" | "outdated" | undefined;
181
- contentType?: string | undefined;
182
- tags?: string[] | undefined;
183
- trustedBypassAccessCheck?: boolean | undefined;
184
- domain?: string | undefined;
185
- subtype?: string | undefined;
186
- externalIds?: {
187
- crunchbase?: string | undefined;
188
- linkedin?: string | undefined;
189
- pitchbook?: string | undefined;
190
- twitter?: string | undefined;
191
- website?: string | undefined;
192
- } | undefined;
193
- aiProvider?: string | undefined;
194
- extractedFromNodeId?: string | undefined;
195
- }>;
196
- export type CreateEpistemicNodeArgs = z.infer<typeof createEpistemicNodeArgs>;
99
+ export type CreateEpistemicNodeArgs = z.infer<typeof createEpistemicNodeItemArgs>;
197
100
  export declare const nodesContracts: readonly [{
198
101
  name: string;
199
102
  kind: import("./types.js").FunctionKind;
@@ -6282,7 +6282,6 @@ var createEpistemicNodeItemArgs = z.object({
6282
6282
  createdBy: z.string().optional(),
6283
6283
  trustedBypassAccessCheck: z.boolean().optional()
6284
6284
  });
6285
- var createEpistemicNodeArgs = createEpistemicNodeItemArgs;
6286
6285
  var batchCreateEpistemicNodesArgs = z.object({
6287
6286
  nodes: z.array(createEpistemicNodeItemArgs)
6288
6287
  });
@@ -6471,7 +6470,7 @@ var nodesContracts = [
6471
6470
  kind: "mutation",
6472
6471
  inputProjection: createNodeInput
6473
6472
  },
6474
- args: createEpistemicNodeArgs,
6473
+ args: createEpistemicNodeItemArgs,
6475
6474
  boundary: {
6476
6475
  admission: ["source-span", "uuidv7-endpoints"]
6477
6476
  }
@@ -6601,4 +6600,4 @@ var nodesContracts = [
6601
6600
  })
6602
6601
  ];
6603
6602
 
6604
- export { createEpistemicNodeArgs, createEpistemicNodeItemArgs, nodesContracts };
6603
+ export { createEpistemicNodeItemArgs, nodesContracts };
@@ -41,5 +41,5 @@
41
41
  "convex-validators",
42
42
  "proof-attestation"
43
43
  ],
44
- "signedAt": 1782775575925
44
+ "signedAt": 1782807088250
45
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lucern/contracts",
3
- "version": "1.0.51",
3
+ "version": "1.0.53",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",