@kb-labs/release-manager-contracts 0.6.0

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/dist/index.js ADDED
@@ -0,0 +1,573 @@
1
+ import { z } from 'zod';
2
+
3
+ // src/version.ts
4
+ var contractsSchemaId = "kb.plugin.contracts/1";
5
+ var contractsVersion = "1.0.0";
6
+
7
+ // src/contract.ts
8
+ var pluginContractsManifest = {
9
+ schema: contractsSchemaId,
10
+ pluginId: "@kb-labs/release-manager",
11
+ contractsVersion,
12
+ artifacts: {
13
+ "release.plan.json": {
14
+ id: "release.plan.json",
15
+ kind: "json",
16
+ description: "Serialized release plan generated by `kb release plan`.",
17
+ pathPattern: ".kb/release/plan.json",
18
+ mediaType: "application/json"
19
+ },
20
+ "release.report.json": {
21
+ id: "release.report.json",
22
+ kind: "json",
23
+ description: "Execution report emitted by `kb release run`.",
24
+ pathPattern: ".kb/release/report.json",
25
+ mediaType: "application/json"
26
+ },
27
+ "release.changelog.md": {
28
+ id: "release.changelog.md",
29
+ kind: "markdown",
30
+ description: "Workspace changelog output produced during release.",
31
+ pathPattern: ".kb/release/changelog.md",
32
+ mediaType: "text/markdown"
33
+ }
34
+ },
35
+ commands: {
36
+ "release:plan": {
37
+ id: "release:plan",
38
+ description: "Analyze changes and prepare release plan",
39
+ examples: [
40
+ "kb release plan",
41
+ "kb release plan --scope packages/*",
42
+ "kb release plan --bump minor",
43
+ "kb release plan --json"
44
+ ]
45
+ },
46
+ "release:run": {
47
+ id: "release:run",
48
+ description: "Execute release process (plan, check, publish)",
49
+ examples: [
50
+ "kb release run",
51
+ "kb release run --scope packages/*",
52
+ "kb release run --dry-run",
53
+ "kb release run --strict"
54
+ ]
55
+ },
56
+ "release:rollback": {
57
+ id: "release:rollback",
58
+ description: "Rollback last release",
59
+ examples: ["kb release rollback"]
60
+ },
61
+ "release:report": {
62
+ id: "release:report",
63
+ description: "Show release report",
64
+ examples: ["kb release report"]
65
+ },
66
+ "release:changelog": {
67
+ id: "release:changelog",
68
+ description: "Generate changelog",
69
+ examples: ["kb release changelog"]
70
+ },
71
+ "release:preview": {
72
+ id: "release:preview",
73
+ description: "Preview release plan without executing",
74
+ examples: [
75
+ "kb release preview",
76
+ "kb release preview --scope packages/*"
77
+ ]
78
+ },
79
+ "release:verify": {
80
+ id: "release:verify",
81
+ description: "Verify release readiness (checks, tests, etc.)",
82
+ examples: [
83
+ "kb release verify",
84
+ "kb release verify --scope packages/*"
85
+ ]
86
+ }
87
+ }
88
+ };
89
+
90
+ // src/routes.ts
91
+ var RELEASE_BASE_PATH = "/v1/plugins/release";
92
+ var RELEASE_ROUTES = {
93
+ // === Scopes (аналогично commit-plugin) ===
94
+ /** GET /scopes - List available scopes (packages/repos) */
95
+ SCOPES: "/scopes",
96
+ // === Status ===
97
+ /** GET /status - Get current status */
98
+ STATUS: "/status",
99
+ // === Plan ===
100
+ /** GET /plan - Get current release plan */
101
+ PLAN: "/plan",
102
+ /** POST /generate - Generate new release plan */
103
+ GENERATE: "/generate",
104
+ /** DELETE /plan - Delete current plan */
105
+ RESET: "/plan",
106
+ // === Preview ===
107
+ /** GET /preview - Preview release plan without changes */
108
+ PREVIEW: "/preview",
109
+ // === Verify ===
110
+ /** GET /verify - Validate release readiness */
111
+ VERIFY: "/verify",
112
+ // === Changelog ===
113
+ /** GET /changelog - Get current changelog */
114
+ CHANGELOG: "/changelog",
115
+ /** POST /changelog/generate - Generate changelog using AI */
116
+ CHANGELOG_GENERATE: "/changelog/generate",
117
+ /** POST /changelog/save - Save edited changelog */
118
+ CHANGELOG_SAVE: "/changelog/save",
119
+ // === Release ===
120
+ /** POST /run - Execute full release process */
121
+ RUN: "/run",
122
+ /** POST /publish - Publish packages to npm */
123
+ PUBLISH: "/publish",
124
+ /** POST /rollback - Rollback last release */
125
+ ROLLBACK: "/rollback",
126
+ // === Report ===
127
+ /** GET /report - Get latest release report */
128
+ REPORT: "/report",
129
+ // === History ===
130
+ /** GET /history - List all releases (supports ?scope= filter) */
131
+ HISTORY: "/history",
132
+ /** GET /history/:scope/:id/report - Get specific release report */
133
+ HISTORY_REPORT: "/history/:scope/:id/report",
134
+ /** GET /history/:scope/:id/plan - Get specific release plan */
135
+ HISTORY_PLAN: "/history/:scope/:id/plan",
136
+ /** GET /history/:scope/:id/changelog - Get specific release changelog */
137
+ HISTORY_CHANGELOG: "/history/:scope/:id/changelog",
138
+ // === Git Timeline ===
139
+ /** GET /git-timeline - Get git commit timeline and version preview */
140
+ GIT_TIMELINE: "/git-timeline",
141
+ // === Build ===
142
+ /** POST /build - Trigger package build */
143
+ BUILD: "/build",
144
+ // === Checklist ===
145
+ /** GET /checklist - Get unified release checklist status */
146
+ CHECKLIST: "/checklist",
147
+ // === Pre-release Checks ===
148
+ /** GET /checks - Get list of configured checks (without running them) */
149
+ CHECKS: "/checks",
150
+ /** POST /checks/run - Run pre-release checks from kb.config.json */
151
+ CHECKS_RUN: "/checks/run"
152
+ };
153
+ var RELEASE_FULL_ROUTES = {
154
+ SCOPES: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.SCOPES}`,
155
+ STATUS: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.STATUS}`,
156
+ PLAN: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.PLAN}`,
157
+ GENERATE: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.GENERATE}`,
158
+ RESET: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.RESET}`,
159
+ PREVIEW: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.PREVIEW}`,
160
+ VERIFY: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.VERIFY}`,
161
+ CHANGELOG: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.CHANGELOG}`,
162
+ CHANGELOG_GENERATE: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.CHANGELOG_GENERATE}`,
163
+ CHANGELOG_SAVE: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.CHANGELOG_SAVE}`,
164
+ RUN: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.RUN}`,
165
+ PUBLISH: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.PUBLISH}`,
166
+ ROLLBACK: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.ROLLBACK}`,
167
+ REPORT: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.REPORT}`,
168
+ HISTORY: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.HISTORY}`,
169
+ HISTORY_REPORT: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.HISTORY_REPORT}`,
170
+ HISTORY_PLAN: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.HISTORY_PLAN}`,
171
+ HISTORY_CHANGELOG: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.HISTORY_CHANGELOG}`,
172
+ GIT_TIMELINE: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.GIT_TIMELINE}`,
173
+ BUILD: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.BUILD}`,
174
+ CHECKLIST: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.CHECKLIST}`,
175
+ CHECKS: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.CHECKS}`,
176
+ CHECKS_RUN: `${RELEASE_BASE_PATH}${RELEASE_ROUTES.CHECKS_RUN}`
177
+ };
178
+ var RELEASE_WIDGET_ROUTES = {
179
+ SCOPES: "scopes",
180
+ STATUS: "status",
181
+ PLAN: "plan",
182
+ GENERATE: "generate",
183
+ RESET: "plan",
184
+ PREVIEW: "preview",
185
+ VERIFY: "verify",
186
+ CHANGELOG: "changelog",
187
+ CHANGELOG_GENERATE: "changelog/generate",
188
+ CHANGELOG_SAVE: "changelog/save",
189
+ RUN: "run",
190
+ PUBLISH: "publish",
191
+ ROLLBACK: "rollback",
192
+ REPORT: "report",
193
+ HISTORY: "history",
194
+ HISTORY_REPORT: "history/:scope/:id/report",
195
+ HISTORY_PLAN: "history/:scope/:id/plan",
196
+ HISTORY_CHANGELOG: "history/:scope/:id/changelog",
197
+ GIT_TIMELINE: "git-timeline",
198
+ BUILD: "build",
199
+ CHECKLIST: "checklist",
200
+ CHECKS_RUN: "checks/run"
201
+ };
202
+ var ReleaseScopeInfoSchema = z.object({
203
+ id: z.string().min(1),
204
+ name: z.string().min(1),
205
+ path: z.string().min(1),
206
+ currentVersion: z.string().optional(),
207
+ description: z.string().optional(),
208
+ type: z.enum(["package", "monorepo", "root"])
209
+ });
210
+ var ScopesResponseSchema = z.object({
211
+ scopes: z.array(ReleaseScopeInfoSchema)
212
+ });
213
+ var PlanStatusSchema = z.enum(["idle", "ready", "running", "completed", "failed"]);
214
+ var StatusInputSchema = z.object({
215
+ scope: z.string().default("root")
216
+ });
217
+ var StatusResponseSchema = z.object({
218
+ scope: z.string(),
219
+ scopeInfo: ReleaseScopeInfoSchema.optional(),
220
+ // Package metadata (name, version, description)
221
+ hasPlan: z.boolean(),
222
+ hasReport: z.boolean(),
223
+ hasChangelog: z.boolean(),
224
+ planStatus: PlanStatusSchema,
225
+ packagesInPlan: z.number().int().min(0),
226
+ lastReleaseAt: z.string().datetime().optional()
227
+ });
228
+ var VersionBumpSchema = z.enum(["patch", "minor", "major", "auto"]);
229
+ var PackageVersionSchema = z.object({
230
+ name: z.string().min(1),
231
+ path: z.string().min(1),
232
+ currentVersion: z.string(),
233
+ nextVersion: z.string(),
234
+ bump: VersionBumpSchema,
235
+ isPublished: z.boolean(),
236
+ dependencies: z.array(z.string()).optional(),
237
+ reason: z.string().optional()
238
+ // LLM-generated reasoning for version bump
239
+ });
240
+ var ReleasePlanSchema = z.object({
241
+ schemaVersion: z.literal("1.0"),
242
+ scope: z.string(),
243
+ packages: z.array(PackageVersionSchema),
244
+ strategy: z.literal("semver"),
245
+ registry: z.string().url(),
246
+ rollbackEnabled: z.boolean(),
247
+ createdAt: z.string().datetime()
248
+ });
249
+ var PlanInputSchema = z.object({
250
+ scope: z.string().default("root")
251
+ });
252
+ var PlanResponseSchema = z.object({
253
+ hasPlan: z.boolean(),
254
+ plan: ReleasePlanSchema.optional(),
255
+ scope: z.string()
256
+ });
257
+ var GeneratePlanRequestSchema = z.object({
258
+ scope: z.string(),
259
+ scopePath: z.string().optional(),
260
+ // Absolute path to monorepo/package dir — takes priority over scope name for discovery
261
+ bump: VersionBumpSchema.optional(),
262
+ strict: z.boolean().optional(),
263
+ useLLM: z.boolean().optional().default(true)
264
+ // Use LLM for intelligent version bump analysis
265
+ });
266
+ var GeneratePlanResponseSchema = z.object({
267
+ plan: ReleasePlanSchema,
268
+ planPath: z.string(),
269
+ scope: z.string(),
270
+ tokensUsed: z.number().optional(),
271
+ // Track LLM token usage
272
+ confidence: z.number().min(0).max(1).optional()
273
+ // LLM confidence score (0-1)
274
+ });
275
+ var ResetPlanRequestSchema = z.object({
276
+ scope: z.string().default("root")
277
+ });
278
+ var ResetPlanResponseSchema = z.object({
279
+ success: z.boolean(),
280
+ scope: z.string(),
281
+ message: z.string()
282
+ });
283
+ var ChangelogInputSchema = z.object({
284
+ scope: z.string().default("root"),
285
+ from: z.string().optional(),
286
+ to: z.string().optional()
287
+ });
288
+ var ChangelogResponseSchema = z.object({
289
+ scope: z.string(),
290
+ markdown: z.string().optional(),
291
+ from: z.string().optional(),
292
+ to: z.string().optional(),
293
+ generatedAt: z.string().datetime().optional()
294
+ });
295
+ var GenerateChangelogRequestSchema = z.object({
296
+ scope: z.string(),
297
+ from: z.string().optional(),
298
+ to: z.string().optional(),
299
+ template: z.string().optional(),
300
+ locale: z.enum(["en", "ru"]).optional(),
301
+ useLLM: z.boolean().optional().default(true)
302
+ });
303
+ var GenerateChangelogResponseSchema = z.object({
304
+ scope: z.string(),
305
+ markdown: z.string(),
306
+ changelogPath: z.string(),
307
+ tokensUsed: z.number().int().min(0).optional(),
308
+ usedLLM: z.boolean().optional(),
309
+ commitsCount: z.number().int().min(0).optional()
310
+ });
311
+ var SaveChangelogRequestSchema = z.object({
312
+ scope: z.string(),
313
+ markdown: z.string()
314
+ });
315
+ var SaveChangelogResponseSchema = z.object({
316
+ success: z.boolean(),
317
+ scope: z.string(),
318
+ path: z.string()
319
+ });
320
+ var CheckResultSchema = z.object({
321
+ id: z.string(),
322
+ ok: z.boolean(),
323
+ details: z.unknown().optional(),
324
+ hint: z.string().optional(),
325
+ timingMs: z.number().int().min(0).optional()
326
+ });
327
+ var ReleaseStageSchema = z.enum([
328
+ "planning",
329
+ "checking",
330
+ "versioning",
331
+ "publishing",
332
+ "verifying",
333
+ "rollback"
334
+ ]);
335
+ var ReleaseReportSchema = z.object({
336
+ schemaVersion: z.literal("1.0"),
337
+ ts: z.string().datetime(),
338
+ scope: z.string(),
339
+ context: z.object({
340
+ repo: z.string(),
341
+ cwd: z.string(),
342
+ branch: z.string(),
343
+ profile: z.string().optional(),
344
+ dryRun: z.boolean().optional()
345
+ }),
346
+ stage: ReleaseStageSchema,
347
+ plan: ReleasePlanSchema.optional(),
348
+ result: z.object({
349
+ ok: z.boolean(),
350
+ version: z.string().optional(),
351
+ published: z.array(z.string()).optional(),
352
+ skipped: z.array(z.string()).optional(),
353
+ changelog: z.string().optional(),
354
+ checks: z.record(z.string(), CheckResultSchema).optional(),
355
+ git: z.object({
356
+ committed: z.boolean(),
357
+ tagged: z.array(z.string()),
358
+ pushed: z.boolean()
359
+ }).optional(),
360
+ timingMs: z.number().int().min(0),
361
+ errors: z.array(z.string()).optional()
362
+ })
363
+ });
364
+ var RunReleaseRequestSchema = z.object({
365
+ scope: z.string(),
366
+ strict: z.boolean().optional(),
367
+ dryRun: z.boolean().optional(),
368
+ skipChecks: z.boolean().optional(),
369
+ otp: z.string().length(6).optional()
370
+ });
371
+ var RunReleaseResponseSchema = z.object({
372
+ scope: z.string(),
373
+ report: ReleaseReportSchema,
374
+ success: z.boolean(),
375
+ errors: z.array(z.string()).optional()
376
+ });
377
+ var ReportResponseSchema = z.object({
378
+ hasReport: z.boolean(),
379
+ report: ReleaseReportSchema.optional(),
380
+ scope: z.string().optional()
381
+ });
382
+ var ReleaseHistoryItemSchema = z.object({
383
+ id: z.string(),
384
+ timestamp: z.string().datetime(),
385
+ scope: z.string(),
386
+ version: z.string().optional(),
387
+ packages: z.array(z.string()),
388
+ success: z.boolean(),
389
+ stage: ReleaseStageSchema,
390
+ error: z.string().optional()
391
+ });
392
+ var HistoryResponseSchema = z.object({
393
+ releases: z.array(ReleaseHistoryItemSchema)
394
+ });
395
+ var HistoryReportResponseSchema = z.object({
396
+ id: z.string(),
397
+ report: ReleaseReportSchema
398
+ });
399
+ var HistoryPlanResponseSchema = z.object({
400
+ id: z.string(),
401
+ plan: ReleasePlanSchema
402
+ });
403
+ var HistoryChangelogResponseSchema = z.object({
404
+ id: z.string(),
405
+ markdown: z.string(),
406
+ scope: z.string()
407
+ });
408
+ var VerifyCheckSchema = z.object({
409
+ name: z.string(),
410
+ passed: z.boolean(),
411
+ warning: z.string().optional(),
412
+ error: z.string().optional()
413
+ });
414
+ var VerifyResponseSchema = z.object({
415
+ scope: z.string(),
416
+ passed: z.boolean(),
417
+ checks: z.array(VerifyCheckSchema),
418
+ warnings: z.array(z.string()),
419
+ errors: z.array(z.string())
420
+ });
421
+ var PublishRequestSchema = z.object({
422
+ scope: z.string(),
423
+ packages: z.array(z.string()).optional(),
424
+ registry: z.string().url().optional(),
425
+ dryRun: z.boolean().optional()
426
+ });
427
+ var PublishResponseSchema = z.object({
428
+ scope: z.string(),
429
+ published: z.array(z.string()),
430
+ failed: z.array(z.string()).optional(),
431
+ success: z.boolean()
432
+ });
433
+ var RollbackRequestSchema = z.object({
434
+ scope: z.string(),
435
+ releaseId: z.string().optional()
436
+ });
437
+ var RollbackResponseSchema = z.object({
438
+ scope: z.string(),
439
+ success: z.boolean(),
440
+ message: z.string(),
441
+ rolledBackPackages: z.array(z.string()).optional()
442
+ });
443
+ var GitCommitSchema = z.object({
444
+ sha: z.string(),
445
+ shortSha: z.string(),
446
+ message: z.string(),
447
+ type: z.enum(["feat", "fix", "chore", "docs", "refactor", "test", "style", "perf", "ci", "build", "revert", "BREAKING", "unknown"]),
448
+ bump: z.enum(["major", "minor", "patch", "none"]),
449
+ scope: z.string().optional(),
450
+ author: z.string(),
451
+ date: z.string().datetime()
452
+ });
453
+ var GitTimelineInputSchema = z.object({
454
+ scope: z.string().default("root")
455
+ });
456
+ var GitTimelineResponseSchema = z.object({
457
+ scope: z.string(),
458
+ currentVersion: z.string().optional(),
459
+ suggestedVersion: z.string().optional(),
460
+ suggestedBump: z.enum(["major", "minor", "patch", "none"]).optional(),
461
+ commits: z.array(GitCommitSchema),
462
+ unreleased: z.number().int().min(0),
463
+ lastTag: z.string().optional(),
464
+ hasUnreleasedChanges: z.boolean()
465
+ });
466
+ var PackageFileSchema = z.object({
467
+ path: z.string(),
468
+ size: z.number().int().min(0)
469
+ });
470
+ var BuildStatusSchema = z.enum(["ready", "not_built", "outdated", "building"]);
471
+ var PackagePreviewSchema = z.object({
472
+ name: z.string(),
473
+ version: z.string(),
474
+ path: z.string(),
475
+ buildStatus: BuildStatusSchema,
476
+ files: z.array(PackageFileSchema),
477
+ expectedFiles: z.array(z.string()).optional(),
478
+ // From package.json "files" field
479
+ totalSize: z.number().int().min(0),
480
+ fileCount: z.number().int().min(0)
481
+ });
482
+ var PreviewInputSchema = z.object({
483
+ scope: z.string().default("root")
484
+ });
485
+ var PreviewResponseSchema = z.object({
486
+ scope: z.string(),
487
+ packages: z.array(PackagePreviewSchema),
488
+ totalSize: z.number().int().min(0),
489
+ totalFiles: z.number().int().min(0),
490
+ allBuilt: z.boolean()
491
+ // True if all packages have dist/
492
+ });
493
+ var BuildRequestSchema = z.object({
494
+ scope: z.string()
495
+ });
496
+ var BuildResponseSchema = z.object({
497
+ scope: z.string(),
498
+ success: z.boolean(),
499
+ packages: z.array(z.object({
500
+ name: z.string(),
501
+ success: z.boolean(),
502
+ error: z.string().optional(),
503
+ durationMs: z.number().int().min(0).optional()
504
+ })),
505
+ builtCount: z.number().int().min(0),
506
+ totalCount: z.number().int().min(0),
507
+ totalDurationMs: z.number().int().min(0)
508
+ });
509
+ var ChecklistItemStatusSchema = z.enum(["pending", "ready", "warning", "error", "running"]);
510
+ var ReleaseChecklistSchema = z.object({
511
+ scope: z.string(),
512
+ plan: z.object({
513
+ status: ChecklistItemStatusSchema,
514
+ message: z.string(),
515
+ packagesCount: z.number().int().min(0).optional(),
516
+ bump: z.string().optional()
517
+ }),
518
+ changelog: z.object({
519
+ status: ChecklistItemStatusSchema,
520
+ message: z.string(),
521
+ commitsCount: z.number().int().min(0).optional()
522
+ }),
523
+ build: z.object({
524
+ status: ChecklistItemStatusSchema,
525
+ message: z.string(),
526
+ builtCount: z.number().int().min(0).optional(),
527
+ totalCount: z.number().int().min(0).optional()
528
+ }),
529
+ preview: z.object({
530
+ status: ChecklistItemStatusSchema,
531
+ message: z.string(),
532
+ filesCount: z.number().int().min(0).optional(),
533
+ totalSize: z.number().int().min(0).optional()
534
+ }),
535
+ npm: z.object({
536
+ status: ChecklistItemStatusSchema,
537
+ message: z.string()
538
+ }),
539
+ canPublish: z.boolean()
540
+ });
541
+ var RunChecksRequestSchema = z.object({
542
+ scope: z.string()
543
+ });
544
+ var CheckResultItemSchema = z.object({
545
+ id: z.string(),
546
+ name: z.string(),
547
+ success: z.boolean(),
548
+ error: z.string().optional(),
549
+ durationMs: z.number().int().min(0),
550
+ optional: z.boolean().optional()
551
+ });
552
+ var RunChecksResponseSchema = z.object({
553
+ scope: z.string(),
554
+ success: z.boolean(),
555
+ checks: z.array(CheckResultItemSchema),
556
+ totalDurationMs: z.number().int().min(0)
557
+ });
558
+ var CheckDefinitionSchema = z.object({
559
+ id: z.string(),
560
+ name: z.string(),
561
+ optional: z.boolean().optional()
562
+ });
563
+ var GetChecksResponseSchema = z.object({
564
+ scope: z.string(),
565
+ checks: z.array(CheckDefinitionSchema)
566
+ });
567
+
568
+ // src/index.ts
569
+ var RELEASE_CACHE_PREFIX = "release:";
570
+
571
+ export { BuildRequestSchema, BuildResponseSchema, BuildStatusSchema, ChangelogInputSchema, ChangelogResponseSchema, CheckDefinitionSchema, CheckResultItemSchema, CheckResultSchema, ChecklistItemStatusSchema, GenerateChangelogRequestSchema, GenerateChangelogResponseSchema, GeneratePlanRequestSchema, GeneratePlanResponseSchema, GetChecksResponseSchema, GitCommitSchema, GitTimelineInputSchema, GitTimelineResponseSchema, HistoryChangelogResponseSchema, HistoryPlanResponseSchema, HistoryReportResponseSchema, HistoryResponseSchema, PackageFileSchema, PackagePreviewSchema, PackageVersionSchema, PlanInputSchema, PlanResponseSchema, PlanStatusSchema, PreviewInputSchema, PreviewResponseSchema, PublishRequestSchema, PublishResponseSchema, RELEASE_BASE_PATH, RELEASE_CACHE_PREFIX, RELEASE_FULL_ROUTES, RELEASE_ROUTES, RELEASE_WIDGET_ROUTES, ReleaseChecklistSchema, ReleaseHistoryItemSchema, ReleasePlanSchema, ReleaseReportSchema, ReleaseScopeInfoSchema, ReleaseStageSchema, ReportResponseSchema, ResetPlanRequestSchema, ResetPlanResponseSchema, RollbackRequestSchema, RollbackResponseSchema, RunChecksRequestSchema, RunChecksResponseSchema, RunReleaseRequestSchema, RunReleaseResponseSchema, SaveChangelogRequestSchema, SaveChangelogResponseSchema, ScopesResponseSchema, StatusInputSchema, StatusResponseSchema, VerifyCheckSchema, VerifyResponseSchema, VersionBumpSchema, contractsSchemaId, contractsVersion, pluginContractsManifest };
572
+ //# sourceMappingURL=index.js.map
573
+ //# sourceMappingURL=index.js.map