Skip to content

Commit dad1690

Browse files
add missing ref
1 parent bcb6aa9 commit dad1690

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

tests/helpers/generate-fetch-test-data.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,23 @@ export const PendingLetterSchema = z.object({
3939
});
4040
export type PendingLetter = z.infer<typeof PendingLetterSchema>;
4141

42+
export interface SupplierApiLetters {
43+
supplierId: string;
44+
specificationId: string;
45+
supplierStatus: string;
46+
createdAt: string;
47+
supplierStatusSk: string;
48+
updatedAt: string;
49+
groupId: string;
50+
reasonCode: string;
51+
id: string;
52+
url: string;
53+
ttl: string;
54+
reasonText: string;
55+
status: string;
56+
source: string;
57+
}
58+
4259
export async function createTestData(
4360
supplierId: string,
4461
count?: number,

0 commit comments

Comments
 (0)