We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb2e25b commit e413c87Copy full SHA for e413c87
2 files changed
internal/datastore/src/types.ts
@@ -54,7 +54,7 @@ export const LetterSchema = LetterSchemaBase.extend({
54
source: z.string(),
55
subject: z.string(),
56
billingRef: z.string(),
57
- specificationBillingId: z.string(),
+ specificationBillingId: z.string().optional(),
58
}).describe("Letter");
59
60
/**
internal/events/src/domain/letter.ts
@@ -83,7 +83,10 @@ The identifier will be included as the origin domain in the subject of any corre
83
examples: ["1y3q9v1zzzz"],
84
}),
85
86
- specificationBillingId: z.string().meta({
+ specificationBillingId: z
87
+ .string()
88
+ .optional()
89
+ .meta({
90
title: "Specification Billing ID",
91
description:
92
"The billing ID from the letter specification which was used to produce a letter pack for this request.",
0 commit comments