summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2021-04-13 12:47:09 +0200
committerAlexander Larsson <alexander.larsson@gmail.com>2021-04-26 10:30:14 +0200
commit07e1fd096df8fa164c5efa666286c3ec9f9daac5 (patch)
tree35e8056e725187d223b7179f51ebf349b5de3ddf /data
parent448536482536f42dab64b4e31a2d22e1e52c6a62 (diff)
downloadflatpak-07e1fd096df8fa164c5efa666286c3ec9f9daac5.tar.gz
Compiled variants: Add some ostree types
This adds the ostree object name and the object info (returned from ostree_repo_list_objects) to the set of variants we compile accessors for.
Diffstat (limited to 'data')
-rw-r--r--data/flatpak-variants.gv12
1 files changed, 12 insertions, 0 deletions
diff --git a/data/flatpak-variants.gv b/data/flatpak-variants.gv
index b00b17ba..c4d60d81 100644
--- a/data/flatpak-variants.gv
+++ b/data/flatpak-variants.gv
@@ -73,3 +73,15 @@ type SummaryIndex {
subsummaries: [sorted string]Subsummary;
metadata: Metadata;
};
+
+type ObjectListInfo {
+ is_loose: boolean;
+ packfiles: []string;
+};
+
+type ObjectName {
+ checksum: string;
+ objtype: uint32;
+};
+
+type ObjectNames []ObjectName;