Álvaro Valenzuela Valdes commited on
Commit ·
c24f6b4
1
Parent(s): 7905725
fix: update typescript types for new tender detail metadata fields
Browse files- frontend/lib/types.ts +2 -0
frontend/lib/types.ts
CHANGED
|
@@ -133,6 +133,8 @@ export type TenderDetailInfo = {
|
|
| 133 |
has_adjudication?: boolean;
|
| 134 |
buyer_complaints?: number;
|
| 135 |
buyer_purchases?: number;
|
|
|
|
|
|
|
| 136 |
};
|
| 137 |
error?: string;
|
| 138 |
};
|
|
|
|
| 133 |
has_adjudication?: boolean;
|
| 134 |
buyer_complaints?: number;
|
| 135 |
buyer_purchases?: number;
|
| 136 |
+
guarantees?: Array<{ type: string; amount: string }>;
|
| 137 |
+
detailed_items?: Array<{ code: string; description: string }>;
|
| 138 |
};
|
| 139 |
error?: string;
|
| 140 |
};
|