OBJECT
ExtensionAssetManifest
ExtensionAssetManifest is data related to the assets of an extension.
link GraphQL Schema definition
1 type ExtensionAssetManifest { 2 3 # Hash of the asset zip file. 4 : String! 5 6 # Base URI used for extensions out of local test. 7 : String 8 9 # The name of the file that was uploaded. 10 : String 11 12 # The size of the file that was uploaded. 13 : String 14 15 # The time that the assets were uploaded. 16 : Time 17 18 # The user that uploaded the assets. 19 : User 20 21 }