@pactosigna/schemas 0.1.4 → 0.1.6
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.
|
@@ -10,7 +10,7 @@ var FOLDER_RULES = {
|
|
|
10
10
|
// Software requirements (moved under software discipline)
|
|
11
11
|
"docs/software/requirements": { prefixes: ["SRS-"], type: "requirement", category: "software" },
|
|
12
12
|
// Design (IEC 62304 — under software discipline)
|
|
13
|
-
"docs/software/architecture": { prefixes: ["HLD-", "SAD-"
|
|
13
|
+
"docs/software/architecture": { prefixes: ["HLD-", "SAD-"], type: "architecture" },
|
|
14
14
|
"docs/software/design": { prefixes: ["SDD-", "DDD-"], type: "detailed_design" },
|
|
15
15
|
// Test (protocols + reports)
|
|
16
16
|
"docs/test/protocols": { prefixes: ["TP-"], type: "test_protocol" },
|
package/dist/cli.js
CHANGED
|
@@ -693,7 +693,8 @@ var ReleasePlanFrontmatterSchema = z18.object({
|
|
|
693
693
|
reviewers: z18.array(z18.string()).optional(),
|
|
694
694
|
approvers: z18.array(z18.string()).optional(),
|
|
695
695
|
version: z18.string().optional(),
|
|
696
|
-
target_date: z18.string().optional()
|
|
696
|
+
target_date: z18.string().optional(),
|
|
697
|
+
applicable_plans: z18.array(z18.string()).optional()
|
|
697
698
|
});
|
|
698
699
|
var SuspectedLinkDispositionSchema = z18.enum(["included_in_release", "not_impacted"]);
|
|
699
700
|
var SuspectedLinkNeighborSchema = z18.object({
|
|
@@ -1231,7 +1232,7 @@ var FOLDER_RULES = {
|
|
|
1231
1232
|
// Software requirements (moved under software discipline)
|
|
1232
1233
|
"docs/software/requirements": { prefixes: ["SRS-"], type: "requirement", category: "software" },
|
|
1233
1234
|
// Design (IEC 62304 — under software discipline)
|
|
1234
|
-
"docs/software/architecture": { prefixes: ["HLD-", "SAD-"
|
|
1235
|
+
"docs/software/architecture": { prefixes: ["HLD-", "SAD-"], type: "architecture" },
|
|
1235
1236
|
"docs/software/design": { prefixes: ["SDD-", "DDD-"], type: "detailed_design" },
|
|
1236
1237
|
// Test (protocols + reports)
|
|
1237
1238
|
"docs/test/protocols": { prefixes: ["TP-"], type: "test_protocol" },
|
package/dist/index.d.ts
CHANGED
|
@@ -1287,6 +1287,7 @@ declare const ReleasePlanFrontmatterSchema: z.ZodObject<{
|
|
|
1287
1287
|
approvers: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1288
1288
|
version: z.ZodOptional<z.ZodString>;
|
|
1289
1289
|
target_date: z.ZodOptional<z.ZodString>;
|
|
1290
|
+
applicable_plans: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1290
1291
|
}, "strip", z.ZodTypeAny, {
|
|
1291
1292
|
id: string;
|
|
1292
1293
|
title: string;
|
|
@@ -1297,6 +1298,7 @@ declare const ReleasePlanFrontmatterSchema: z.ZodObject<{
|
|
|
1297
1298
|
reviewers?: string[] | undefined;
|
|
1298
1299
|
approvers?: string[] | undefined;
|
|
1299
1300
|
target_date?: string | undefined;
|
|
1301
|
+
applicable_plans?: string[] | undefined;
|
|
1300
1302
|
}, {
|
|
1301
1303
|
id: string;
|
|
1302
1304
|
title: string;
|
|
@@ -1307,6 +1309,7 @@ declare const ReleasePlanFrontmatterSchema: z.ZodObject<{
|
|
|
1307
1309
|
reviewers?: string[] | undefined;
|
|
1308
1310
|
approvers?: string[] | undefined;
|
|
1309
1311
|
target_date?: string | undefined;
|
|
1312
|
+
applicable_plans?: string[] | undefined;
|
|
1310
1313
|
}>;
|
|
1311
1314
|
type ReleasePlanFrontmatter = z.infer<typeof ReleasePlanFrontmatterSchema>;
|
|
1312
1315
|
declare const DesignReviewFrontmatterSchema: z.ZodObject<{
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
NON_REGULATED_FOLDERS,
|
|
5
5
|
findFolderRule,
|
|
6
6
|
inferDocumentType
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-XP2LBTDS.js";
|
|
8
8
|
|
|
9
9
|
// ../shared/dist/schemas/index.js
|
|
10
10
|
import { z as z24 } from "zod";
|
|
@@ -692,7 +692,8 @@ var ReleasePlanFrontmatterSchema = z18.object({
|
|
|
692
692
|
reviewers: z18.array(z18.string()).optional(),
|
|
693
693
|
approvers: z18.array(z18.string()).optional(),
|
|
694
694
|
version: z18.string().optional(),
|
|
695
|
-
target_date: z18.string().optional()
|
|
695
|
+
target_date: z18.string().optional(),
|
|
696
|
+
applicable_plans: z18.array(z18.string()).optional()
|
|
696
697
|
});
|
|
697
698
|
var SuspectedLinkDispositionSchema = z18.enum(["included_in_release", "not_impacted"]);
|
|
698
699
|
var SuspectedLinkNeighborSchema = z18.object({
|