@gitgov/core 2.0.0 → 2.1.1

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.
@@ -1,4 +1,4 @@
1
- import { m as IConfigManager, C as ConfigStore, G as GitGovConfig, n as SyncConfig, o as SyncDefaults, k as AuditState, l as AuditStateUpdate, h as ISessionManager, S as SessionStore, a as GitGovSession, A as ActorState, i as SyncPreferencesUpdate, K as KeyProvider, s as FileLister, F as FsFileListerOptions, r as FileListOptions, t as FileStats, R as RecordStore, I as IGitModule } from './index-DMkBFK4C.js';
1
+ import { m as IConfigManager, C as ConfigStore, G as GitGovConfig, n as SyncConfig, o as SyncDefaults, k as AuditState, l as AuditStateUpdate, h as ISessionManager, S as SessionStore, a as GitGovSession, A as ActorState, i as SyncPreferencesUpdate, K as KeyProvider, s as FileLister, F as FsFileListerOptions, r as FileListOptions, t as FileStats, R as RecordStore, I as IGitModule } from './index--ahcnsG3.js';
2
2
 
3
3
  /**
4
4
  * ConfigManager - Project Configuration Manager
@@ -9,9 +9,6 @@ import { m as IConfigManager, C as ConfigStore, G as GitGovConfig, n as SyncConf
9
9
  * Uses ConfigStore abstraction for backend-agnostic persistence.
10
10
  *
11
11
  * NOTE: Session state (.session.json) is handled by SessionManager, not ConfigManager.
12
- *
13
- * @see packages/blueprints/03_products/core/specs/modules/config_session_module.md
14
- * @see packages/blueprints/03_products/protocol/10_appendices/config_file.md
15
12
  */
16
13
 
17
14
  /**
@@ -85,8 +82,6 @@ declare class ConfigManager implements IConfigManager {
85
82
  * Session state is ephemeral, machine-local, and NOT versioned in Git.
86
83
  *
87
84
  * Uses SessionStore abstraction for backend-agnostic persistence.
88
- *
89
- * @see packages/blueprints/03_products/protocol/10_appendices/session_state.md
90
85
  */
91
86
 
92
87
  /**
package/dist/src/fs.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import { R as RecordStore, C as ConfigStore, G as GitGovConfig, S as SessionStore, a as GitGovSession, I as IGitModule, b as GitModuleDependencies, E as ExecOptions, c as ExecResult, d as ChangedFile, e as GetCommitHistoryOptions, f as CommitInfo, g as CommitAuthor } from './index-DMkBFK4C.js';
2
- export { F as FsFileListerOptions } from './index-DMkBFK4C.js';
3
- import { C as ConfigManager, S as SessionManager, I as ILintModule, L as LintOptions, a as LintReport, F as FixRecordOptions, b as FixReport, R as RecordStores, c as IIndexerAdapter, G as GitGovRecord, d as LintRecordContext, e as LintResult, f as IProjectInitializer, E as EnvironmentValidation, g as ISyncStateModule, h as SyncStateModuleDependencies, i as StateDeltaFile, j as ConflictDiff, k as IntegrityViolation, A as AuditStateOptions, l as AuditStateReport, m as SyncStatePushOptions, n as SyncStatePushResult, o as SyncStatePullOptions, p as SyncStatePullResult, q as SyncStateResolveOptions, r as SyncStateResolveResult, s as IEventStream, t as IAgentRunner, P as ProtocolHandlerRegistry, u as AgentRunnerDependencies, v as RunOptions, w as AgentResponse } from './agent_runner-COAjsdtr.js';
4
- export { z as FsFileLister, x as FsKeyProvider, y as FsKeyProviderOptions } from './agent_runner-COAjsdtr.js';
1
+ import { R as RecordStore, C as ConfigStore, G as GitGovConfig, S as SessionStore, a as GitGovSession, I as IGitModule, b as GitModuleDependencies, E as ExecOptions, c as ExecResult, d as ChangedFile, e as GetCommitHistoryOptions, f as CommitInfo, g as CommitAuthor } from './index--ahcnsG3.js';
2
+ export { F as FsFileListerOptions } from './index--ahcnsG3.js';
3
+ import { C as ConfigManager, S as SessionManager, I as ILintModule, L as LintOptions, a as LintReport, F as FixRecordOptions, b as FixReport, R as RecordStores, c as IIndexerAdapter, G as GitGovRecord, d as LintRecordContext, e as LintResult, f as IProjectInitializer, E as EnvironmentValidation, g as ISyncStateModule, h as SyncStateModuleDependencies, i as StateDeltaFile, j as ConflictDiff, k as IntegrityViolation, A as AuditStateOptions, l as AuditStateReport, m as SyncStatePushOptions, n as SyncStatePushResult, o as SyncStatePullOptions, p as SyncStatePullResult, q as SyncStateResolveOptions, r as SyncStateResolveResult, s as IEventStream, t as IAgentRunner, P as ProtocolHandlerRegistry, u as AgentRunnerDependencies, v as RunOptions, w as AgentResponse } from './agent_runner-ByOUWOt6.js';
4
+ export { z as FsFileLister, x as FsKeyProvider, y as FsKeyProviderOptions } from './agent_runner-ByOUWOt6.js';
5
5
 
6
6
  /**
7
7
  * Serializer for FsRecordStore - allows custom serialization
@@ -75,9 +75,6 @@ declare class FsRecordStore<T> implements RecordStore<T> {
75
75
  *
76
76
  * NOTE: Session state (.session.json) is handled by FsSessionStore.
77
77
  * NOTE: Project discovery utilities are in src/utils/project_discovery.ts
78
- *
79
- * @see packages/blueprints/03_products/core/specs/modules/config_store_module/fs_config_store_module.md
80
- * @see packages/blueprints/03_products/protocol/10_appendices/config_file.md
81
78
  */
82
79
 
83
80
  /**
@@ -129,9 +126,6 @@ declare function createConfigManager(projectRoot: string): ConfigManager;
129
126
  *
130
127
  * Handles persistence of .session.json to the local filesystem.
131
128
  * Session files are machine-local and NOT versioned in Git.
132
- *
133
- * @see packages/blueprints/03_products/core/specs/modules/session_store_module/fs_session_store_module.md
134
- * @see packages/blueprints/03_products/protocol/10_appendices/session_state.md
135
129
  */
136
130
 
137
131
  /**
package/dist/src/fs.js CHANGED
@@ -2868,39 +2868,6 @@ var workflow_record_schema_default = {
2868
2868
  }
2869
2869
  }
2870
2870
  },
2871
- view_configs: {
2872
- type: "object",
2873
- description: "Optional view configurations for board/kanban rendering",
2874
- additionalProperties: {
2875
- type: "object",
2876
- required: [
2877
- "columns"
2878
- ],
2879
- additionalProperties: false,
2880
- properties: {
2881
- columns: {
2882
- type: "object",
2883
- description: "Column definitions mapping display names to state arrays",
2884
- additionalProperties: {
2885
- type: "array",
2886
- items: {
2887
- type: "string",
2888
- pattern: "^[a-z][a-z0-9_]{0,49}$"
2889
- },
2890
- minItems: 1
2891
- }
2892
- },
2893
- theme: {
2894
- type: "string",
2895
- description: "Visual theme for the board"
2896
- },
2897
- layout: {
2898
- type: "string",
2899
- description: "Layout orientation for the board"
2900
- }
2901
- }
2902
- }
2903
- },
2904
2871
  agent_integration: {
2905
2872
  type: "object",
2906
2873
  description: "Optional agent automation configuration for methodology",