OBJECT

ExtensionAssetManifest

ExtensionAssetManifest is data related to the assets of an extension.

link GraphQL Schema definition

1type ExtensionAssetManifest {
2
3# Hash of the asset zip file.
4assetHash: String!
5
6# Base URI used for extensions out of local test.
7baseURI: String
8
9# The name of the file that was uploaded.
10fileName: String
11
12# The size of the file that was uploaded.
13fileSize: String
14
15# The time that the assets were uploaded.
16uploadedAt: Time
17
18# The user that uploaded the assets.
19uploader: User
20
21}