@@ -37,6 +37,7 @@ type User implements Node & PackageOwner & Owner {
3737 bio : String
3838 location : String
3939 websiteUrl : String
40+ wasmerInternal : Boolean !
4041
4142 """The ID of the object"""
4243 id : ID !
@@ -199,6 +200,7 @@ type Namespace implements Node & PackageOwner & Owner {
199200 websiteUrl : String
200201 createdAt : DateTime !
201202 updatedAt : DateTime !
203+ wasmerInternal : Boolean !
202204 maintainerInvites (offset : Int , before : String , after : String , first : Int , last : Int ): NamespaceCollaboratorInviteConnection !
203205 userSet (offset : Int , before : String , after : String , first : Int , last : Int ): UserConnection !
204206 globalName : String !
@@ -446,6 +448,7 @@ type PackageVersion implements Node & PackageReleaseInterface & PackageInstance
446448 bindingsState : RegistryPackageVersionBindingsStateChoices !
447449 nativeExecutablesState : RegistryPackageVersionNativeExecutablesStateChoices !
448450 deployappversionSet (offset : Int , before : String , after : String , first : Int , last : Int ): DeployAppVersionConnection !
451+ packagewebcSet (offset : Int , before : String , after : String , first : Int , last : Int ): PackageWebcConnection !
449452 lastversionPackage (offset : Int , before : String , after : String , first : Int , last : Int ): PackageConnection !
450453 commands : [Command ! ]!
451454 nativeexecutableSet (offset : Int , before : String , after : String , first : Int , last : Int ): NativeExecutableConnection !
@@ -504,7 +507,9 @@ scalar JSONString
504507type WebcImage implements Node {
505508 """The ID of the object"""
506509 id : ID !
507- version : WebcVersion
510+
511+ """The version of the webc image, defaults to v2."""
512+ version : WebcVersion !
508513
509514 """"""
510515 fileSize : BigInt !
@@ -835,6 +840,26 @@ type AppVersionVolumeMountPath {
835840 subpath : String !
836841}
837842
843+ type PackageWebcConnection {
844+ """Pagination data for this connection."""
845+ pageInfo : PageInfo !
846+
847+ """Contains the nodes in this connection."""
848+ edges : [PackageWebcEdge ]!
849+
850+ """Total number of items in the connection."""
851+ totalCount : Int
852+ }
853+
854+ """A Relay edge containing a `PackageWebc` and its cursor."""
855+ type PackageWebcEdge {
856+ """The item at the end of the edge"""
857+ node : PackageWebc
858+
859+ """A cursor for use in pagination"""
860+ cursor : String !
861+ }
862+
838863type Command {
839864 command : String !
840865 packageVersion : PackageVersion !
@@ -1227,26 +1252,6 @@ type AppTemplateCategory implements Node {
12271252 appTemplates (offset : Int , before : String , after : String , first : Int , last : Int ): AppTemplateConnection !
12281253}
12291254
1230- type PackageWebcConnection {
1231- """Pagination data for this connection."""
1232- pageInfo : PageInfo !
1233-
1234- """Contains the nodes in this connection."""
1235- edges : [PackageWebcEdge ]!
1236-
1237- """Total number of items in the connection."""
1238- totalCount : Int
1239- }
1240-
1241- """A Relay edge containing a `PackageWebc` and its cursor."""
1242- type PackageWebcEdge {
1243- """The item at the end of the edge"""
1244- node : PackageWebc
1245-
1246- """A cursor for use in pagination"""
1247- cursor : String !
1248- }
1249-
12501255type Collection {
12511256 slug : String !
12521257 displayName : String !
@@ -2088,6 +2093,9 @@ type Log {
20882093
20892094 """Log stream"""
20902095 stream : LogStream
2096+
2097+ """ID of instance from which the log was generated"""
2098+ instanceId : String !
20912099}
20922100
20932101"""This is for backwards compatibility with the old PackageInstance type."""
@@ -2249,7 +2257,7 @@ type Query {
22492257 getAppByGlobalAlias (alias : String ! ): DeployApp
22502258 getDeployApps (sortBy : DeployAppsSortBy , updatedAfter : DateTime , offset : Int , before : String , after : String , first : Int , last : Int ): DeployAppConnection !
22512259 getAppVersions (sortBy : DeployAppVersionsSortBy , updatedAfter : DateTime , offset : Int , before : String , after : String , first : Int , last : Int ): DeployAppVersionConnection !
2252- getAppTemplates (categorySlug : String , offset : Int , before : String , after : String , first : Int , last : Int ): AppTemplateConnection
2260+ getAppTemplates (categorySlug : String , sortBy : AppTemplatesSortBy , offset : Int , before : String , after : String , first : Int , last : Int ): AppTemplateConnection
22532261 getAppTemplate (slug : String ! ): AppTemplate
22542262 getAppTemplateCategories (offset : Int , before : String , after : String , first : Int , last : Int ): AppTemplateCategoryConnection
22552263 viewer : User
@@ -2348,6 +2356,12 @@ enum DNSRecordsSortBy {
23482356 OLDEST
23492357}
23502358
2359+ enum AppTemplatesSortBy {
2360+ NEWEST
2361+ OLDEST
2362+ POPULAR
2363+ }
2364+
23512365type AppTemplateCategoryConnection {
23522366 """Pagination data for this connection."""
23532367 pageInfo : PageInfo !
@@ -2788,6 +2802,9 @@ type Mutation {
27882802 generateDeployConfigToken (input : GenerateDeployConfigTokenInput ! ): GenerateDeployConfigTokenPayload
27892803 renameApp (input : RenameAppInput ! ): RenameAppPayload
27902804 renameAppAlias (input : RenameAppAliasInput ! ): RenameAppAliasPayload
2805+
2806+ """Purges all cache for this app version"""
2807+ purgeCacheForAppVersion (input : PurgeCacheForAppVersionInput ! ): PurgeCacheForAppVersionPayload
27912808 requestAppTransfer (input : RequestAppTransferInput ! ): RequestAppTransferPayload
27922809 acceptAppTransferRequest (input : AcceptAppTransferRequestInput ! ): AcceptAppTransferRequestPayload
27932810 removeAppTransferRequest (input : RemoveAppTransferRequestInput ! ): RemoveAppTransferRequestPayload
@@ -3026,6 +3043,18 @@ input RenameAppAliasInput {
30263043 clientMutationId : String
30273044}
30283045
3046+ """Purges all cache for this app version"""
3047+ type PurgeCacheForAppVersionPayload {
3048+ appVersion : DeployAppVersion !
3049+ clientMutationId : String
3050+ }
3051+
3052+ input PurgeCacheForAppVersionInput {
3053+ """ID of the app version to purge cache for."""
3054+ id : ID !
3055+ clientMutationId : String
3056+ }
3057+
30293058type RequestAppTransferPayload {
30303059 appTransferRequest : AppTransferRequest
30313060 wasInstantlyTransferred : Boolean !
@@ -3086,6 +3115,7 @@ input CreateRepoForAppTemplateInput {
30863115 name : String !
30873116 namespace : String !
30883117 private : Boolean = false
3118+ domains : [String ] = null
30893119 clientMutationId : String
30903120}
30913121
@@ -3606,9 +3636,9 @@ type TagPackageReleasePayload {
36063636
36073637input TagPackageReleaseInput {
36083638 packageReleaseId : ID !
3609- name : String !
36103639 version : String !
3611- manifest : String !
3640+ name : String
3641+ manifest : String
36123642 namespace : String
36133643 description : String
36143644 license : String
0 commit comments