@longtable/core 0.1.42 → 0.1.44

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +54 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -356,6 +356,58 @@ export interface FirstResearchShape {
356
356
  sourceHookId?: string;
357
357
  confirmedAt?: string;
358
358
  }
359
+ export interface ResearchSpecification {
360
+ title: string;
361
+ status?: "draft" | "confirmed" | "deferred";
362
+ createdAt?: string;
363
+ updatedAt?: string;
364
+ sourceHookId?: string;
365
+ researchDirection: {
366
+ question?: string;
367
+ purpose: string;
368
+ scopeBoundary?: string;
369
+ inclusionCriteria?: string[];
370
+ exclusionCriteria?: string[];
371
+ };
372
+ constructOntology: {
373
+ coreConstructs: string[];
374
+ distinctions: string[];
375
+ termsToAvoidCollapsing?: string[];
376
+ };
377
+ theoryAndFraming: {
378
+ anchors: string[];
379
+ alternatives?: string[];
380
+ overreachRisks?: string[];
381
+ };
382
+ measurementCoding: {
383
+ variablesOrConstructs: string[];
384
+ evidenceTypes: string[];
385
+ codingRules: string[];
386
+ openStandards?: string[];
387
+ };
388
+ methodAnalysis: {
389
+ design?: string;
390
+ analysisOptions: string[];
391
+ dataSufficiencyCriteria?: string[];
392
+ unsettledChoices?: string[];
393
+ };
394
+ evidenceAccess: {
395
+ requiredSources?: string[];
396
+ accessRequirements?: string[];
397
+ evidenceStandards?: string[];
398
+ };
399
+ epistemicAlignment: {
400
+ researcherKnowledge?: string[];
401
+ projectStatePriority?: string[];
402
+ aiInferenceLimits?: string[];
403
+ conflictResolutionRule?: string;
404
+ };
405
+ protectedDecisions: string[];
406
+ openQuestions: string[];
407
+ nextActions: string[];
408
+ confidence: ConfidenceLevel;
409
+ confirmedAt?: string;
410
+ }
359
411
  export interface LongTableHookRun {
360
412
  id: string;
361
413
  kind: LongTableHookKind;
@@ -367,6 +419,7 @@ export interface LongTableHookRun {
367
419
  provider?: ProviderKind;
368
420
  turns?: LongTableInterviewTurn[];
369
421
  firstResearchShape?: FirstResearchShape;
422
+ researchSpecification?: ResearchSpecification;
370
423
  qualityNotes?: string[];
371
424
  rationale?: string[];
372
425
  linkedQuestionRecordIds?: string[];
@@ -419,6 +472,7 @@ export interface ResearchState {
419
472
  workingState: Record<string, unknown>;
420
473
  hooks?: LongTableHookRun[];
421
474
  firstResearchShape?: FirstResearchShape;
475
+ researchSpecification?: ResearchSpecification;
422
476
  questionObligations?: LongTableQuestionObligation[];
423
477
  inferredHypotheses: InferredHypothesis[];
424
478
  openTensions: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@longtable/core",
3
- "version": "0.1.42",
3
+ "version": "0.1.44",
4
4
  "private": false,
5
5
  "description": "Provider-neutral domain models and contracts for LongTable",
6
6
  "type": "module",