Merge "Fix types in common.ts"
diff --git a/polygerrit-ui/app/types/common.ts b/polygerrit-ui/app/types/common.ts
index 57e39d4..76a179e 100644
--- a/polygerrit-ui/app/types/common.ts
+++ b/polygerrit-ui/app/types/common.ts
@@ -1367,9 +1367,9 @@
* https://gerrit-review.googlesource.com/Documentation/rest-api-projects.html#inherited-boolean-info
*/
export interface InheritedBooleanInfo {
- value: string;
+ value: boolean;
configured_value: InheritedBooleanInfoConfiguredValue;
- inherited_value?: string;
+ inherited_value?: boolean;
}
/**
@@ -1378,7 +1378,7 @@
* https://gerrit-review.googlesource.com/Documentation/rest-api-projects.html#max-object-size-limit-info
*/
export interface MaxObjectSizeLimitInfo {
- value?: number;
+ value?: string;
configured_value?: string;
summary?: string;
}