@pactosigna/schemas 0.1.5 → 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.
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({
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
@@ -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({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pactosigna/schemas",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "description": "Zod schemas, types, and constants for PactoSigna QMS document validation (ISO 13485)",
6
6
  "publishConfig": {