@gitgov/core 2.1.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.
@@ -164,30 +164,6 @@ interface WorkflowRecord {
164
164
  module_path?: string;
165
165
  } | undefined;
166
166
  };
167
- /**
168
- * Optional view configurations for board/kanban rendering
169
- */
170
- view_configs?: {
171
- [k: string]: {
172
- /**
173
- * Column definitions mapping display names to state arrays
174
- */
175
- columns: {
176
- /**
177
- * @minItems 1
178
- */
179
- [k: string]: [string, ...string[]] | undefined;
180
- };
181
- /**
182
- * Visual theme for the board
183
- */
184
- theme?: string;
185
- /**
186
- * Layout orientation for the board
187
- */
188
- layout?: string;
189
- } | undefined;
190
- };
191
167
  /**
192
168
  * Optional agent automation configuration for methodology
193
169
  */
@@ -3486,37 +3462,6 @@ declare const Schemas: {
3486
3462
  };
3487
3463
  };
3488
3464
  };
3489
- view_configs: {
3490
- type: string;
3491
- description: string;
3492
- additionalProperties: {
3493
- type: string;
3494
- required: string[];
3495
- additionalProperties: boolean;
3496
- properties: {
3497
- columns: {
3498
- type: string;
3499
- description: string;
3500
- additionalProperties: {
3501
- type: string;
3502
- items: {
3503
- type: string;
3504
- pattern: string;
3505
- };
3506
- minItems: number;
3507
- };
3508
- };
3509
- theme: {
3510
- type: string;
3511
- description: string;
3512
- };
3513
- layout: {
3514
- type: string;
3515
- description: string;
3516
- };
3517
- };
3518
- };
3519
- };
3520
3465
  agent_integration: {
3521
3466
  type: string;
3522
3467
  description: string;
@@ -5204,37 +5149,6 @@ declare function getSchema(name: SchemaName): {
5204
5149
  };
5205
5150
  };
5206
5151
  };
5207
- view_configs: {
5208
- type: string;
5209
- description: string;
5210
- additionalProperties: {
5211
- type: string;
5212
- required: string[];
5213
- additionalProperties: boolean;
5214
- properties: {
5215
- columns: {
5216
- type: string;
5217
- description: string;
5218
- additionalProperties: {
5219
- type: string;
5220
- items: {
5221
- type: string;
5222
- pattern: string;
5223
- };
5224
- minItems: number;
5225
- };
5226
- };
5227
- theme: {
5228
- type: string;
5229
- description: string;
5230
- };
5231
- layout: {
5232
- type: string;
5233
- description: string;
5234
- };
5235
- };
5236
- };
5237
- };
5238
5152
  agent_integration: {
5239
5153
  type: string;
5240
5154
  description: string;
package/dist/src/index.js CHANGED
@@ -2069,39 +2069,6 @@ var workflow_record_schema_default = {
2069
2069
  }
2070
2070
  }
2071
2071
  },
2072
- view_configs: {
2073
- type: "object",
2074
- description: "Optional view configurations for board/kanban rendering",
2075
- additionalProperties: {
2076
- type: "object",
2077
- required: [
2078
- "columns"
2079
- ],
2080
- additionalProperties: false,
2081
- properties: {
2082
- columns: {
2083
- type: "object",
2084
- description: "Column definitions mapping display names to state arrays",
2085
- additionalProperties: {
2086
- type: "array",
2087
- items: {
2088
- type: "string",
2089
- pattern: "^[a-z][a-z0-9_]{0,49}$"
2090
- },
2091
- minItems: 1
2092
- }
2093
- },
2094
- theme: {
2095
- type: "string",
2096
- description: "Visual theme for the board"
2097
- },
2098
- layout: {
2099
- type: "string",
2100
- description: "Layout orientation for the board"
2101
- }
2102
- }
2103
- }
2104
- },
2105
2072
  agent_integration: {
2106
2073
  type: "object",
2107
2074
  description: "Optional agent automation configuration for methodology",
@@ -7133,61 +7100,6 @@ var kanban_workflow_default = {
7133
7100
  description: "Complex tasks must be promoted to epic with child cycles",
7134
7101
  validation: "epic_complexity"
7135
7102
  }
7136
- },
7137
- view_configs: {
7138
- "kanban-4col": {
7139
- columns: {
7140
- Draft: [
7141
- "draft"
7142
- ],
7143
- "In Progress": [
7144
- "review",
7145
- "ready",
7146
- "active"
7147
- ],
7148
- Review: [
7149
- "done"
7150
- ],
7151
- Done: [
7152
- "archived"
7153
- ],
7154
- Cancelled: [
7155
- "discarded"
7156
- ]
7157
- },
7158
- theme: "minimal",
7159
- layout: "horizontal"
7160
- },
7161
- "kanban-7col": {
7162
- columns: {
7163
- Draft: [
7164
- "draft"
7165
- ],
7166
- Review: [
7167
- "review"
7168
- ],
7169
- Ready: [
7170
- "ready"
7171
- ],
7172
- Active: [
7173
- "active"
7174
- ],
7175
- Done: [
7176
- "done"
7177
- ],
7178
- Archived: [
7179
- "archived"
7180
- ],
7181
- Blocked: [
7182
- "paused"
7183
- ],
7184
- Cancelled: [
7185
- "discarded"
7186
- ]
7187
- },
7188
- theme: "corporate",
7189
- layout: "vertical"
7190
- }
7191
7103
  }
7192
7104
  };
7193
7105
 
@@ -7282,130 +7194,6 @@ var scrum_workflow_default = {
7282
7194
  validation: "assignment_required"
7283
7195
  }
7284
7196
  },
7285
- view_configs: {
7286
- "scrum-board": {
7287
- columns: {
7288
- "Product Backlog": [
7289
- "draft"
7290
- ],
7291
- "Sprint Backlog": [
7292
- "review",
7293
- "ready"
7294
- ],
7295
- "In Progress": [
7296
- "active"
7297
- ],
7298
- Done: [
7299
- "done"
7300
- ],
7301
- Retrospective: [
7302
- "archived"
7303
- ]
7304
- },
7305
- theme: "default",
7306
- layout: "horizontal"
7307
- },
7308
- "scrum-detailed": {
7309
- columns: {
7310
- "Product Backlog": [
7311
- "draft"
7312
- ],
7313
- Groomed: [
7314
- "review"
7315
- ],
7316
- "Sprint Ready": [
7317
- "ready"
7318
- ],
7319
- "In Development": [
7320
- "active"
7321
- ],
7322
- "Demo Ready": [
7323
- "done"
7324
- ],
7325
- "Sprint Closed": [
7326
- "archived"
7327
- ],
7328
- Blocked: [
7329
- "paused"
7330
- ]
7331
- },
7332
- theme: "corporate",
7333
- layout: "vertical"
7334
- },
7335
- "scrum-product-owner": {
7336
- columns: {
7337
- "Backlog Items": [
7338
- "draft"
7339
- ],
7340
- "Ready for Sprint": [
7341
- "review"
7342
- ],
7343
- "Sprint Committed": [
7344
- "ready"
7345
- ],
7346
- "In Development": [
7347
- "active"
7348
- ],
7349
- "Ready for Review": [
7350
- "done"
7351
- ],
7352
- Released: [
7353
- "archived"
7354
- ],
7355
- Issues: [
7356
- "paused",
7357
- "discarded"
7358
- ]
7359
- },
7360
- theme: "minimal",
7361
- layout: "grid"
7362
- },
7363
- "scrum-developer": {
7364
- columns: {
7365
- "To Do": [
7366
- "ready"
7367
- ],
7368
- "In Progress": [
7369
- "active"
7370
- ],
7371
- "Code Review": [
7372
- "done"
7373
- ],
7374
- Done: [
7375
- "archived"
7376
- ],
7377
- Blocked: [
7378
- "paused"
7379
- ]
7380
- },
7381
- theme: "dark",
7382
- layout: "horizontal"
7383
- },
7384
- "scrum-master-dashboard": {
7385
- columns: {
7386
- "Sprint Planning": [
7387
- "draft",
7388
- "review"
7389
- ],
7390
- "Active Sprint": [
7391
- "ready",
7392
- "active"
7393
- ],
7394
- "Sprint Review": [
7395
- "done"
7396
- ],
7397
- Retrospective: [
7398
- "archived"
7399
- ],
7400
- Impediments: [
7401
- "paused",
7402
- "discarded"
7403
- ]
7404
- },
7405
- theme: "corporate",
7406
- layout: "grid"
7407
- }
7408
- },
7409
7197
  agent_integration: {
7410
7198
  description: "Agent integration proposal for Scrum methodology automation",
7411
7199
  required_agents: [