Skip to content

Commit

Permalink
fix(type/photo): make meta optional
Browse files Browse the repository at this point in the history
  • Loading branch information
njfamirm authored and AliMD committed Jun 14, 2023
1 parent 6cd497d commit 5cea716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/type/src/photo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ export type Photo = AlwatrDocumentObject & {
/**
* Photo extra meta information for future maintenances
*/
meta: Record<string, string | number>; // meta: {order: 1233, customer: 1334}
meta?: Record<string, string | number>; // meta: {order: 1233, customer: 1334}
};

0 comments on commit 5cea716

Please sign in to comment.