We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71baecc commit b2a5207Copy full SHA for b2a5207
internal/datastore/src/letter-repository.ts
@@ -223,7 +223,7 @@ export class LetterRepository {
223
":updatedAt": new Date().toISOString(),
224
":supplierStatus": `${letterToUpdate.supplierId}#${letterToUpdate.status}`,
225
":ttl": Math.floor(
226
- Date.now() / 1000 + 60 * 60 * this.config.lettersTtlHours
+ Date.now() / 1000 + 60 * 60 * this.config.lettersTtlHours,
227
),
228
":eventId": letterToUpdate.eventId,
229
};
internal/datastore/src/types.ts
@@ -1,4 +1,4 @@
1
-import { string, z } from "zod";
+import { z } from "zod";
2
import { idRef } from "@internal/helpers";
3
4
export const SupplierStatus = z.enum(["ENABLED", "DISABLED"]);
0 commit comments