From b3f491ed31a6859059a22c9e3de9f53f2fa8a920 Mon Sep 17 00:00:00 2001 From: Luca Steeb Date: Fri, 25 Oct 2024 13:41:05 +0100 Subject: [PATCH] feat(account): add edge and pagination support for controllers (#117) Introduced ControllerEdge struct and modified Account to utilize it. Updated schema to include new pagination and filtering options for controllers. Added support for CreditsHistory and its related fields, sorting, and filtering options. --- slot/schema.json | 10518 +++++++++++++++++---------- slot/src/graphql/auth/info.graphql | 14 +- slot/src/graphql/auth/mod.rs | 31 +- 3 files changed, 6568 insertions(+), 3995 deletions(-) diff --git a/slot/schema.json b/slot/schema.json index a2ce852..c362451 100644 --- a/slot/schema.json +++ b/slot/schema.json @@ -363,22 +363,79 @@ } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": "Returns the elements in the list that come after the specified cursor.", + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Returns the first _n_ elements from the list.", + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Returns the elements in the list that come before the specified cursor.", + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Returns the last _n_ elements from the list.", + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Ordering options for Controllers returned from the connection.", + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControllerOrder", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Filtering options for Controllers returned from the connection.", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ControllerWhereInput", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, "name": "controllers", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Controller", - "ofType": null - } + "kind": "OBJECT", + "name": "ControllerConnection", + "ofType": null } } }, @@ -464,6 +521,22 @@ "ofType": null } } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "credits", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } ], "inputFields": [], @@ -1756,12 +1829,36 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "ControllerNetwork", + "kind": "SCALAR", + "name": "String", "ofType": null } } }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "constructorCalldata", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + } + }, { "args": [], "deprecationReason": null, @@ -1844,26 +1941,101 @@ "possibleTypes": [] }, { - "description": "ControllerNetwork is enum for the field network", - "enumValues": [ + "description": "A connection to a list of items.", + "enumValues": [], + "fields": [ { + "args": [], "deprecationReason": null, - "description": null, + "description": "A list of edges.", "isDeprecated": false, - "name": "SN_MAIN" + "name": "edges", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ControllerEdge", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, - "description": null, + "description": "Information to aid in pagination.", + "isDeprecated": false, + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "Identifies the total count of items in the connection.", "isDeprecated": false, - "name": "SN_SEPOLIA" + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } ], - "fields": [], "inputFields": [], "interfaces": [], - "kind": "ENUM", - "name": "ControllerNetwork", + "kind": "OBJECT", + "name": "ControllerConnection", + "possibleTypes": [] + }, + { + "description": "An edge in a connection.", + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "The item at the end of the edge.", + "isDeprecated": false, + "name": "node", + "type": { + "kind": "OBJECT", + "name": "Controller", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "A cursor for use in pagination.", + "isDeprecated": false, + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "ControllerEdge", "possibleTypes": [] }, { @@ -2366,8 +2538,8 @@ "description": "network field predicates", "name": "network", "type": { - "kind": "ENUM", - "name": "ControllerNetwork", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -2376,8 +2548,8 @@ "description": null, "name": "networkNEQ", "type": { - "kind": "ENUM", - "name": "ControllerNetwork", + "kind": "SCALAR", + "name": "String", "ofType": null } }, @@ -2392,8 +2564,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "ControllerNetwork", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -2410,8 +2582,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "ControllerNetwork", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -2419,97 +2591,187 @@ }, { "defaultValue": null, - "description": "created_at field predicates", - "name": "createdAt", + "description": null, + "name": "networkGT", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtNEQ", + "name": "networkGTE", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtIn", + "name": "networkLT", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtNotIn", + "name": "networkLTE", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtGT", + "name": "networkContains", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtGTE", + "name": "networkHasPrefix", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtLT", + "name": "networkHasSuffix", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtLTE", + "name": "networkEqualFold", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "networkContainsFold", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "created_at field predicates", + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtNEQ", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtGT", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtGTE", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtLT", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtLTE", + "type": { + "kind": "SCALAR", + "name": "Time", "ofType": null } }, @@ -3167,56 +3429,6 @@ "name": "Credentials", "possibleTypes": [] }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "USD" - } - ], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "ENUM", - "name": "CurrencyBase", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ETH" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "BTC" - } - ], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "ENUM", - "name": "CurrencyQuote", - "possibleTypes": [] - }, - { - "description": "Define a Relay Cursor type:\nhttps://relay.dev/graphql/connections.htm#sec-Cursor", - "enumValues": [], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "SCALAR", - "name": "Cursor", - "possibleTypes": [] - }, { "description": null, "enumValues": [], @@ -3242,7 +3454,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "project", + "name": "accountID", "type": { "kind": "NON_NULL", "name": null, @@ -3256,15 +3468,15 @@ { "args": [], "deprecationReason": null, - "description": null, + "description": "Type of transaction: credit or debit", "isDeprecated": false, - "name": "status", + "name": "transactionType", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "ENUM", - "name": "DeploymentStatus", + "name": "CreditsHistoryTransactionType", "ofType": null } } @@ -3272,9 +3484,9 @@ { "args": [], "deprecationReason": null, - "description": null, + "description": "Transaction hash for debit transactions", "isDeprecated": false, - "name": "branch", + "name": "transactionHash", "type": { "kind": "SCALAR", "name": "String", @@ -3286,13 +3498,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "serviceID", + "name": "createdAt", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Time", "ofType": null } } @@ -3302,13 +3514,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "tier", + "name": "updatedAt", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "ENUM", - "name": "DeploymentTier", + "kind": "SCALAR", + "name": "Time", "ofType": null } } @@ -3318,186 +3530,180 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "regions", + "name": "stripePayment", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } + "kind": "OBJECT", + "name": "StripePayments", + "ofType": null } - }, + } + ], + "inputFields": [], + "interfaces": [ { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "autoUpgrade", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "CreditsHistory", + "possibleTypes": [] + }, + { + "description": "Ordering options for CreditsHistory connections", + "enumValues": [], + "fields": [], + "inputFields": [ { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "createdAt", + "defaultValue": "ASC", + "description": "The ordering direction.", + "name": "direction", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Time", + "kind": "ENUM", + "name": "OrderDirection", "ofType": null } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "updatedAt", + "defaultValue": null, + "description": "The field by which to order CreditsHistories.", + "name": "field", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Time", + "kind": "ENUM", + "name": "CreditsHistoryOrderField", "ofType": null } } - }, + } + ], + "interfaces": [], + "kind": "INPUT_OBJECT", + "name": "CreditsHistoryOrder", + "possibleTypes": [] + }, + { + "description": "Properties by which CreditsHistory connections can be ordered.", + "enumValues": [ { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "spinDownAt", - "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "name": "CREATED_AT" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "CreditsHistoryOrderField", + "possibleTypes": [] + }, + { + "description": "CreditsHistoryTransactionType is enum for the field transaction_type", + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "credit" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "spinUpAt", + "name": "debit" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "CreditsHistoryTransactionType", + "possibleTypes": [] + }, + { + "description": "CreditsHistoryWhereInput is used for filtering CreditsHistory objects.\nInput was generated by ent.", + "enumValues": [], + "fields": [], + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "Time", + "kind": "INPUT_OBJECT", + "name": "CreditsHistoryWhereInput", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": "Returns the elements in the list that come after the specified cursor.", - "name": "after", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "Returns the first _n_ elements from the list.", - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "Returns the elements in the list that come before the specified cursor.", - "name": "before", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "Returns the last _n_ elements from the list.", - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "Filtering options for Teams returned from the connection.", - "name": "where", - "type": { + "defaultValue": null, + "description": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", + "name": "CreditsHistoryWhereInput", "ofType": null } } - ], - "deprecationReason": null, + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "teams", + "name": "or", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "TeamConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreditsHistoryWhereInput", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, + "description": "id field predicates", + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "service", + "name": "idNEQ", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "events", + "name": "idIn", "type": { "kind": "LIST", "name": null, @@ -3505,462 +3711,241 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "DeploymentLog", + "kind": "SCALAR", + "name": "ID", "ofType": null } } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "since", - "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "order", - "type": { - "kind": "ENUM", - "name": "Order", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "logs", + "name": "idNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "Logs", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "config", + "name": "idGT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "UNION", - "name": "DeploymentConfig", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - } - ], - "inputFields": [], - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "Deployment", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "UNION", - "name": "DeploymentConfig", - "possibleTypes": [ + }, { - "kind": "OBJECT", - "name": "KatanaConfig", - "ofType": null + "defaultValue": null, + "description": null, + "name": "idGTE", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, { - "kind": "OBJECT", - "name": "ToriiConfig", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "SayaConfig", - "ofType": null - } - ] - }, - { - "description": "A connection to a list of items.", - "enumValues": [], - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "A list of edges.", - "isDeprecated": false, - "name": "edges", + "defaultValue": null, + "description": null, + "name": "idLT", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentEdge", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "Information to aid in pagination.", - "isDeprecated": false, - "name": "pageInfo", + "defaultValue": null, + "description": null, + "name": "idLTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "Identifies the total count of items in the connection.", - "isDeprecated": false, - "name": "totalCount", + "defaultValue": null, + "description": "account_id field predicates", + "name": "accountID", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "DeploymentConnection", - "possibleTypes": [] - }, - { - "description": "An edge in a connection.", - "enumValues": [], - "fields": [ + }, { - "args": [], - "deprecationReason": null, - "description": "The item at the end of the edge.", - "isDeprecated": false, - "name": "node", + "defaultValue": null, + "description": null, + "name": "accountIDNEQ", "type": { - "kind": "OBJECT", - "name": "Deployment", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "A cursor for use in pagination.", - "isDeprecated": false, - "name": "cursor", + "defaultValue": null, + "description": null, + "name": "accountIDIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "DeploymentEdge", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id", + "name": "accountIDNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "deploymentID", + "name": "accountIDGT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "logType", + "name": "accountIDGTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DeploymentLogLogType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "timestamp", + "name": "accountIDLT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "deployment", + "name": "accountIDLTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "inputFields": [], - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "DeploymentLog", - "possibleTypes": [] - }, - { - "description": "A connection to a list of items.", - "enumValues": [], - "fields": [ + }, { - "args": [], - "deprecationReason": null, - "description": "A list of edges.", - "isDeprecated": false, - "name": "edges", + "defaultValue": null, + "description": null, + "name": "accountIDContains", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "DeploymentLogEdge", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "Information to aid in pagination.", - "isDeprecated": false, - "name": "pageInfo", + "defaultValue": null, + "description": null, + "name": "accountIDHasPrefix", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "Identifies the total count of items in the connection.", - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "DeploymentLogConnection", - "possibleTypes": [] - }, - { - "description": "An edge in a connection.", - "enumValues": [], - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "The item at the end of the edge.", - "isDeprecated": false, - "name": "node", + "defaultValue": null, + "description": null, + "name": "accountIDHasSuffix", "type": { - "kind": "OBJECT", - "name": "DeploymentLog", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "A cursor for use in pagination.", - "isDeprecated": false, - "name": "cursor", + "defaultValue": null, + "description": null, + "name": "accountIDEqualFold", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "DeploymentLogEdge", - "possibleTypes": [] - }, - { - "description": "DeploymentLogLogType is enum for the field log_type", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "created" }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "deleted" + "name": "accountIDContainsFold", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "scaled_up" + "defaultValue": null, + "description": "transaction_type field predicates", + "name": "transactionType", + "type": { + "kind": "ENUM", + "name": "CreditsHistoryTransactionType", + "ofType": null + } }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "scaled_down" - } - ], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "ENUM", - "name": "DeploymentLogLogType", - "possibleTypes": [] - }, - { - "description": "DeploymentLogWhereInput is used for filtering DeploymentLog objects.\nInput was generated by ent.", - "enumValues": [], - "fields": [], - "inputFields": [ { "defaultValue": null, "description": null, - "name": "not", + "name": "transactionTypeNEQ", "type": { - "kind": "INPUT_OBJECT", - "name": "DeploymentLogWhereInput", + "kind": "ENUM", + "name": "CreditsHistoryTransactionType", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "and", + "name": "transactionTypeIn", "type": { "kind": "LIST", "name": null, @@ -3968,8 +3953,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeploymentLogWhereInput", + "kind": "ENUM", + "name": "CreditsHistoryTransactionType", "ofType": null } } @@ -3978,7 +3963,7 @@ { "defaultValue": null, "description": null, - "name": "or", + "name": "transactionTypeNotIn", "type": { "kind": "LIST", "name": null, @@ -3986,8 +3971,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeploymentLogWhereInput", + "kind": "ENUM", + "name": "CreditsHistoryTransactionType", "ofType": null } } @@ -3995,28 +3980,28 @@ }, { "defaultValue": null, - "description": "id field predicates", - "name": "id", + "description": "transaction_hash field predicates", + "name": "transactionHash", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idNEQ", + "name": "transactionHashNEQ", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idIn", + "name": "transactionHashIn", "type": { "kind": "LIST", "name": null, @@ -4025,7 +4010,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -4034,7 +4019,7 @@ { "defaultValue": null, "description": null, - "name": "idNotIn", + "name": "transactionHashNotIn", "type": { "kind": "LIST", "name": null, @@ -4043,7 +4028,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -4052,249 +4037,213 @@ { "defaultValue": null, "description": null, - "name": "idGT", + "name": "transactionHashGT", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idGTE", + "name": "transactionHashGTE", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idLT", + "name": "transactionHashLT", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idLTE", + "name": "transactionHashLTE", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, - "description": "deployment_id field predicates", - "name": "deploymentID", + "description": null, + "name": "transactionHashContains", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "deploymentIDNEQ", + "name": "transactionHashHasPrefix", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "deploymentIDIn", + "name": "transactionHashHasSuffix", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "deploymentIDNotIn", + "name": "transactionHashIsNil", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "deploymentIDGT", + "name": "transactionHashNotNil", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "deploymentIDGTE", + "name": "transactionHashEqualFold", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "deploymentIDLT", + "name": "transactionHashContainsFold", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "deploymentIDLTE", + "description": "created_at field predicates", + "name": "createdAt", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "deploymentIDContains", + "name": "createdAtNEQ", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "deploymentIDHasPrefix", + "name": "createdAtIn", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "deploymentIDHasSuffix", + "name": "createdAtNotIn", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "deploymentIDEqualFold", + "name": "createdAtGT", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "deploymentIDContainsFold", + "name": "createdAtGTE", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Time", "ofType": null } }, { "defaultValue": null, - "description": "log_type field predicates", - "name": "logType", + "description": null, + "name": "createdAtLT", "type": { - "kind": "ENUM", - "name": "DeploymentLogLogType", + "kind": "SCALAR", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "logTypeNEQ", + "name": "createdAtLTE", "type": { - "kind": "ENUM", - "name": "DeploymentLogLogType", + "kind": "SCALAR", + "name": "Time", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "logTypeIn", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DeploymentLogLogType", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "logTypeNotIn", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DeploymentLogLogType", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": "timestamp field predicates", - "name": "timestamp", + "description": "updated_at field predicates", + "name": "updatedAt", "type": { "kind": "SCALAR", "name": "Time", @@ -4304,7 +4253,7 @@ { "defaultValue": null, "description": null, - "name": "timestampNEQ", + "name": "updatedAtNEQ", "type": { "kind": "SCALAR", "name": "Time", @@ -4314,7 +4263,7 @@ { "defaultValue": null, "description": null, - "name": "timestampIn", + "name": "updatedAtIn", "type": { "kind": "LIST", "name": null, @@ -4332,7 +4281,7 @@ { "defaultValue": null, "description": null, - "name": "timestampNotIn", + "name": "updatedAtNotIn", "type": { "kind": "LIST", "name": null, @@ -4350,7 +4299,7 @@ { "defaultValue": null, "description": null, - "name": "timestampGT", + "name": "updatedAtGT", "type": { "kind": "SCALAR", "name": "Time", @@ -4360,7 +4309,7 @@ { "defaultValue": null, "description": null, - "name": "timestampGTE", + "name": "updatedAtGTE", "type": { "kind": "SCALAR", "name": "Time", @@ -4370,7 +4319,7 @@ { "defaultValue": null, "description": null, - "name": "timestampLT", + "name": "updatedAtLT", "type": { "kind": "SCALAR", "name": "Time", @@ -4380,7 +4329,7 @@ { "defaultValue": null, "description": null, - "name": "timestampLTE", + "name": "updatedAtLTE", "type": { "kind": "SCALAR", "name": "Time", @@ -4389,8 +4338,8 @@ }, { "defaultValue": null, - "description": "deployment edge predicates", - "name": "hasDeployment", + "description": "stripe_payment edge predicates", + "name": "hasStripePayment", "type": { "kind": "SCALAR", "name": "Boolean", @@ -4400,7 +4349,7 @@ { "defaultValue": null, "description": null, - "name": "hasDeploymentWith", + "name": "hasStripePaymentWith", "type": { "kind": "LIST", "name": null, @@ -4409,7 +4358,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "DeploymentWhereInput", + "name": "StripePaymentsWhereInput", "ofType": null } } @@ -4418,63 +4367,24 @@ ], "interfaces": [], "kind": "INPUT_OBJECT", - "name": "DeploymentLogWhereInput", - "possibleTypes": [] - }, - { - "description": "Ordering options for Deployment connections", - "enumValues": [], - "fields": [], - "inputFields": [ - { - "defaultValue": "ASC", - "description": "The ordering direction.", - "name": "direction", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": "The field by which to order Deployments.", - "name": "field", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DeploymentOrderField", - "ofType": null - } - } - } - ], - "interfaces": [], - "kind": "INPUT_OBJECT", - "name": "DeploymentOrder", + "name": "CreditsHistoryWhereInput", "possibleTypes": [] }, { - "description": "Properties by which Deployment connections can be ordered.", + "description": null, "enumValues": [ { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "CREATED_AT" + "name": "USD" } ], "fields": [], "inputFields": [], "interfaces": [], "kind": "ENUM", - "name": "DeploymentOrderField", + "name": "CurrencyBase", "possibleTypes": [] }, { @@ -4484,269 +4394,313 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "katana" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "torii" + "name": "ETH" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "saya" + "name": "BTC" } ], "fields": [], "inputFields": [], "interfaces": [], "kind": "ENUM", - "name": "DeploymentService", + "name": "CurrencyQuote", "possibleTypes": [] }, { - "description": "DeploymentStatus is enum for the field status", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "active" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "disabled" - } - ], + "description": "Define a Relay Cursor type:\nhttps://relay.dev/graphql/connections.htm#sec-Cursor", + "enumValues": [], "fields": [], "inputFields": [], "interfaces": [], - "kind": "ENUM", - "name": "DeploymentStatus", + "kind": "SCALAR", + "name": "Cursor", "possibleTypes": [] }, { - "description": "DeploymentTier is enum for the field tier", - "enumValues": [ + "description": null, + "enumValues": [], + "fields": [ { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "basic" + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "common" + "name": "project", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "uncommon" + "name": "status", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DeploymentStatus", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "rare" + "name": "branch", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "epic" + "name": "serviceID", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } }, { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "legendary" - } - ], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "ENUM", - "name": "DeploymentTier", - "possibleTypes": [] - }, - { - "description": "DeploymentWhereInput is used for filtering Deployment objects.\nInput was generated by ent.", - "enumValues": [], - "fields": [], - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "not", + "name": "tier", "type": { - "kind": "INPUT_OBJECT", - "name": "DeploymentWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DeploymentTier", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "and", + "isDeprecated": false, + "name": "regions", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeploymentWhereInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "or", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeploymentWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": "id field predicates", - "name": "id", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "idNEQ", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "idIn", + "isDeprecated": false, + "name": "autoUpgrade", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "idNotIn", + "isDeprecated": false, + "name": "createdAt", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "Time", + "ofType": null } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "idGT", + "isDeprecated": false, + "name": "updatedAt", "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "idGTE", + "isDeprecated": false, + "name": "spinDownAt", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Time", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "idLT", + "isDeprecated": false, + "name": "spinUpAt", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Time", "ofType": null } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": "Returns the elements in the list that come after the specified cursor.", + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Returns the first _n_ elements from the list.", + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Returns the elements in the list that come before the specified cursor.", + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Returns the last _n_ elements from the list.", + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "Filtering options for Teams returned from the connection.", + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamWhereInput", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "name": "idLTE", - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "project field predicates", - "name": "project", + "isDeprecated": false, + "name": "teams", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "projectNEQ", + "isDeprecated": false, + "name": "service", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Service", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "projectIn", + "isDeprecated": false, + "name": "events", "type": { "kind": "LIST", "name": null, @@ -4754,201 +4708,462 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "DeploymentLog", "ofType": null } } } }, { - "defaultValue": null, - "description": null, - "name": "projectNotIn", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "since", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "order", + "type": { + "kind": "ENUM", + "name": "Order", "ofType": null } } - } - }, - { - "defaultValue": null, + ], + "deprecationReason": null, "description": null, - "name": "projectGT", + "isDeprecated": false, + "name": "logs", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Logs", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "projectGTE", + "isDeprecated": false, + "name": "config", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "UNION", + "name": "DeploymentConfig", + "ofType": null + } } - }, + } + ], + "inputFields": [], + "interfaces": [ { - "defaultValue": null, - "description": null, - "name": "projectLT", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Deployment", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "UNION", + "name": "DeploymentConfig", + "possibleTypes": [ { - "defaultValue": null, - "description": null, - "name": "projectLTE", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "KatanaConfig", + "ofType": null }, { - "defaultValue": null, - "description": null, - "name": "projectContains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "ToriiConfig", + "ofType": null }, { - "defaultValue": null, - "description": null, - "name": "projectHasPrefix", + "kind": "OBJECT", + "name": "SayaConfig", + "ofType": null + } + ] + }, + { + "description": "A connection to a list of items.", + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "A list of edges.", + "isDeprecated": false, + "name": "edges", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentEdge", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "projectHasSuffix", + "args": [], + "deprecationReason": null, + "description": "Information to aid in pagination.", + "isDeprecated": false, + "name": "pageInfo", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "projectEqualFold", + "args": [], + "deprecationReason": null, + "description": "Identifies the total count of items in the connection.", + "isDeprecated": false, + "name": "totalCount", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } - }, + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "DeploymentConnection", + "possibleTypes": [] + }, + { + "description": "An edge in a connection.", + "enumValues": [], + "fields": [ { - "defaultValue": null, - "description": null, - "name": "projectContainsFold", + "args": [], + "deprecationReason": null, + "description": "The item at the end of the edge.", + "isDeprecated": false, + "name": "node", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "OBJECT", + "name": "Deployment", "ofType": null } }, { - "defaultValue": null, - "description": "status field predicates", - "name": "status", + "args": [], + "deprecationReason": null, + "description": "A cursor for use in pagination.", + "isDeprecated": false, + "name": "cursor", "type": { - "kind": "ENUM", - "name": "DeploymentStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } } - }, + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "DeploymentEdge", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "statusNEQ", + "isDeprecated": false, + "name": "id", "type": { - "kind": "ENUM", - "name": "DeploymentStatus", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "statusIn", + "isDeprecated": false, + "name": "deploymentID", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DeploymentStatus", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "statusNotIn", + "isDeprecated": false, + "name": "logType", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DeploymentStatus", - "ofType": null - } + "kind": "ENUM", + "name": "DeploymentLogLogType", + "ofType": null } } }, { - "defaultValue": null, - "description": "branch field predicates", - "name": "branch", + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "timestamp", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "deployment", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "DeploymentLog", + "possibleTypes": [] + }, + { + "description": "A connection to a list of items.", + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "A list of edges.", + "isDeprecated": false, + "name": "edges", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "DeploymentLogEdge", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "Information to aid in pagination.", + "isDeprecated": false, + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "Identifies the total count of items in the connection.", + "isDeprecated": false, + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "DeploymentLogConnection", + "possibleTypes": [] + }, + { + "description": "An edge in a connection.", + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "The item at the end of the edge.", + "isDeprecated": false, + "name": "node", + "type": { + "kind": "OBJECT", + "name": "DeploymentLog", "ofType": null } }, + { + "args": [], + "deprecationReason": null, + "description": "A cursor for use in pagination.", + "isDeprecated": false, + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "DeploymentLogEdge", + "possibleTypes": [] + }, + { + "description": "DeploymentLogLogType is enum for the field log_type", + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "created" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "deleted" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "scaled_up" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "scaled_down" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "DeploymentLogLogType", + "possibleTypes": [] + }, + { + "description": "DeploymentLogWhereInput is used for filtering DeploymentLog objects.\nInput was generated by ent.", + "enumValues": [], + "fields": [], + "inputFields": [ { "defaultValue": null, "description": null, - "name": "branchNEQ", + "name": "not", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "DeploymentLogWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "branchIn", + "name": "and", "type": { "kind": "LIST", "name": null, @@ -4956,8 +5171,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "DeploymentLogWhereInput", "ofType": null } } @@ -4966,7 +5181,7 @@ { "defaultValue": null, "description": null, - "name": "branchNotIn", + "name": "or", "type": { "kind": "LIST", "name": null, @@ -4974,8 +5189,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "DeploymentLogWhereInput", "ofType": null } } @@ -4983,118 +5198,104 @@ }, { "defaultValue": null, - "description": null, - "name": "branchGT", + "description": "id field predicates", + "name": "id", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "branchGTE", + "name": "idNEQ", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "branchLT", + "name": "idIn", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "branchLTE", + "name": "idNotIn", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "branchContains", + "name": "idGT", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "branchHasPrefix", + "name": "idGTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "branchHasSuffix", + "name": "idLT", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "branchIsNil", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "branchNotNil", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "branchEqualFold", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "branchContainsFold", + "name": "idLTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { "defaultValue": null, - "description": "service_id field predicates", - "name": "serviceID", + "description": "deployment_id field predicates", + "name": "deploymentID", "type": { "kind": "SCALAR", "name": "ID", @@ -5104,7 +5305,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDNEQ", + "name": "deploymentIDNEQ", "type": { "kind": "SCALAR", "name": "ID", @@ -5114,7 +5315,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDIn", + "name": "deploymentIDIn", "type": { "kind": "LIST", "name": null, @@ -5132,7 +5333,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDNotIn", + "name": "deploymentIDNotIn", "type": { "kind": "LIST", "name": null, @@ -5150,7 +5351,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDGT", + "name": "deploymentIDGT", "type": { "kind": "SCALAR", "name": "ID", @@ -5160,7 +5361,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDGTE", + "name": "deploymentIDGTE", "type": { "kind": "SCALAR", "name": "ID", @@ -5170,7 +5371,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDLT", + "name": "deploymentIDLT", "type": { "kind": "SCALAR", "name": "ID", @@ -5180,7 +5381,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDLTE", + "name": "deploymentIDLTE", "type": { "kind": "SCALAR", "name": "ID", @@ -5190,7 +5391,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDContains", + "name": "deploymentIDContains", "type": { "kind": "SCALAR", "name": "ID", @@ -5200,7 +5401,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDHasPrefix", + "name": "deploymentIDHasPrefix", "type": { "kind": "SCALAR", "name": "ID", @@ -5210,7 +5411,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDHasSuffix", + "name": "deploymentIDHasSuffix", "type": { "kind": "SCALAR", "name": "ID", @@ -5220,7 +5421,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDEqualFold", + "name": "deploymentIDEqualFold", "type": { "kind": "SCALAR", "name": "ID", @@ -5230,7 +5431,7 @@ { "defaultValue": null, "description": null, - "name": "serviceIDContainsFold", + "name": "deploymentIDContainsFold", "type": { "kind": "SCALAR", "name": "ID", @@ -5239,28 +5440,28 @@ }, { "defaultValue": null, - "description": "tier field predicates", - "name": "tier", + "description": "log_type field predicates", + "name": "logType", "type": { "kind": "ENUM", - "name": "DeploymentTier", + "name": "DeploymentLogLogType", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tierNEQ", + "name": "logTypeNEQ", "type": { "kind": "ENUM", - "name": "DeploymentTier", + "name": "DeploymentLogLogType", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tierIn", + "name": "logTypeIn", "type": { "kind": "LIST", "name": null, @@ -5269,7 +5470,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "DeploymentTier", + "name": "DeploymentLogLogType", "ofType": null } } @@ -5278,7 +5479,7 @@ { "defaultValue": null, "description": null, - "name": "tierNotIn", + "name": "logTypeNotIn", "type": { "kind": "LIST", "name": null, @@ -5287,7 +5488,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "DeploymentTier", + "name": "DeploymentLogLogType", "ofType": null } } @@ -5295,28 +5496,8 @@ }, { "defaultValue": null, - "description": "auto_upgrade field predicates", - "name": "autoUpgrade", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "autoUpgradeNEQ", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "created_at field predicates", - "name": "createdAt", + "description": "timestamp field predicates", + "name": "timestamp", "type": { "kind": "SCALAR", "name": "Time", @@ -5326,7 +5507,7 @@ { "defaultValue": null, "description": null, - "name": "createdAtNEQ", + "name": "timestampNEQ", "type": { "kind": "SCALAR", "name": "Time", @@ -5336,7 +5517,7 @@ { "defaultValue": null, "description": null, - "name": "createdAtIn", + "name": "timestampIn", "type": { "kind": "LIST", "name": null, @@ -5354,7 +5535,7 @@ { "defaultValue": null, "description": null, - "name": "createdAtNotIn", + "name": "timestampNotIn", "type": { "kind": "LIST", "name": null, @@ -5372,7 +5553,7 @@ { "defaultValue": null, "description": null, - "name": "createdAtGT", + "name": "timestampGT", "type": { "kind": "SCALAR", "name": "Time", @@ -5382,7 +5563,7 @@ { "defaultValue": null, "description": null, - "name": "createdAtGTE", + "name": "timestampGTE", "type": { "kind": "SCALAR", "name": "Time", @@ -5392,7 +5573,7 @@ { "defaultValue": null, "description": null, - "name": "createdAtLT", + "name": "timestampLT", "type": { "kind": "SCALAR", "name": "Time", @@ -5402,17 +5583,7 @@ { "defaultValue": null, "description": null, - "name": "createdAtLTE", - "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "updated_at field predicates", - "name": "updatedAt", + "name": "timestampLTE", "type": { "kind": "SCALAR", "name": "Time", @@ -5421,18 +5592,18 @@ }, { "defaultValue": null, - "description": null, - "name": "updatedAtNEQ", + "description": "deployment edge predicates", + "name": "hasDeployment", "type": { "kind": "SCALAR", - "name": "Time", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "updatedAtIn", + "name": "hasDeploymentWith", "type": { "kind": "LIST", "name": null, @@ -5440,95 +5611,193 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Time", + "kind": "INPUT_OBJECT", + "name": "DeploymentWhereInput", "ofType": null } } } - }, + } + ], + "interfaces": [], + "kind": "INPUT_OBJECT", + "name": "DeploymentLogWhereInput", + "possibleTypes": [] + }, + { + "description": "Ordering options for Deployment connections", + "enumValues": [], + "fields": [], + "inputFields": [ { - "defaultValue": null, - "description": null, - "name": "updatedAtNotIn", + "defaultValue": "ASC", + "description": "The ordering direction.", + "name": "direction", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null } } }, { "defaultValue": null, - "description": null, - "name": "updatedAtGT", + "description": "The field by which to order Deployments.", + "name": "field", "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DeploymentOrderField", + "ofType": null + } } - }, + } + ], + "interfaces": [], + "kind": "INPUT_OBJECT", + "name": "DeploymentOrder", + "possibleTypes": [] + }, + { + "description": "Properties by which Deployment connections can be ordered.", + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "updatedAtGTE", - "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - }, + "isDeprecated": false, + "name": "CREATED_AT" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "DeploymentOrderField", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "updatedAtLT", - "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "isDeprecated": false, + "name": "katana" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "updatedAtLTE", - "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "spin_down_at field predicates", - "name": "spinDownAt", - "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "isDeprecated": false, + "name": "torii" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "spinDownAtNEQ", - "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "isDeprecated": false, + "name": "saya" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "DeploymentService", + "possibleTypes": [] + }, + { + "description": "DeploymentStatus is enum for the field status", + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "active" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "disabled" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "DeploymentStatus", + "possibleTypes": [] + }, + { + "description": "DeploymentTier is enum for the field tier", + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "basic" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "common" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "uncommon" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "rare" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "epic" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "legendary" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "DeploymentTier", + "possibleTypes": [] + }, + { + "description": "DeploymentWhereInput is used for filtering Deployment objects.\nInput was generated by ent.", + "enumValues": [], + "fields": [], + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "DeploymentWhereInput", + "ofType": null + } }, { "defaultValue": null, "description": null, - "name": "spinDownAtIn", + "name": "and", "type": { "kind": "LIST", "name": null, @@ -5536,8 +5805,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Time", + "kind": "INPUT_OBJECT", + "name": "DeploymentWhereInput", "ofType": null } } @@ -5546,7 +5815,7 @@ { "defaultValue": null, "description": null, - "name": "spinDownAtNotIn", + "name": "or", "type": { "kind": "LIST", "name": null, @@ -5554,8 +5823,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Time", + "kind": "INPUT_OBJECT", + "name": "DeploymentWhereInput", "ofType": null } } @@ -5563,88 +5832,124 @@ }, { "defaultValue": null, - "description": null, - "name": "spinDownAtGT", + "description": "id field predicates", + "name": "id", "type": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinDownAtGTE", + "name": "idNEQ", "type": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinDownAtLT", + "name": "idIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "idNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "idGT", "type": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinDownAtLTE", + "name": "idGTE", "type": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinDownAtIsNil", + "name": "idLT", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinDownAtNotNil", + "name": "idLTE", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } }, { "defaultValue": null, - "description": "spin_up_at field predicates", - "name": "spinUpAt", + "description": "project field predicates", + "name": "project", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinUpAtNEQ", + "name": "projectNEQ", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinUpAtIn", + "name": "projectIn", "type": { "kind": "LIST", "name": null, @@ -5653,7 +5958,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } } @@ -5662,7 +5967,7 @@ { "defaultValue": null, "description": null, - "name": "spinUpAtNotIn", + "name": "projectNotIn", "type": { "kind": "LIST", "name": null, @@ -5671,7 +5976,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } } @@ -5680,114 +5985,126 @@ { "defaultValue": null, "description": null, - "name": "spinUpAtGT", + "name": "projectGT", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinUpAtGTE", + "name": "projectGTE", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinUpAtLT", + "name": "projectLT", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinUpAtLTE", + "name": "projectLTE", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinUpAtIsNil", + "name": "projectContains", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "spinUpAtNotNil", + "name": "projectHasPrefix", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, - "description": "teams edge predicates", - "name": "hasTeams", + "description": null, + "name": "projectHasSuffix", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "hasTeamsWith", + "name": "projectEqualFold", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, - "description": "service edge predicates", - "name": "hasService", + "description": null, + "name": "projectContainsFold", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "status field predicates", + "name": "status", + "type": { + "kind": "ENUM", + "name": "DeploymentStatus", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "hasServiceWith", + "name": "statusNEQ", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, + "kind": "ENUM", + "name": "DeploymentStatus", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "statusIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", + "kind": "ENUM", + "name": "DeploymentStatus", "ofType": null } } @@ -5795,18 +6112,46 @@ }, { "defaultValue": null, - "description": "events edge predicates", - "name": "hasEvents", + "description": null, + "name": "statusNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DeploymentStatus", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "branch field predicates", + "name": "branch", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "hasEventsWith", + "name": "branchNEQ", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "branchIn", "type": { "kind": "LIST", "name": null, @@ -5814,87 +6159,55 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeploymentLogWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } } - } - ], - "interfaces": [], - "kind": "INPUT_OBJECT", - "name": "DeploymentWhereInput", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "SCALAR", - "name": "Felt", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id", + "name": "branchNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "name", + "name": "branchGT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "directory", + "name": "branchGTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "alt", + "name": "branchLT", "type": { "kind": "SCALAR", "name": "String", @@ -5902,277 +6215,109 @@ } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "priority", + "name": "branchLTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "createdAt", + "name": "branchContains", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "updatedAt", + "name": "branchHasPrefix", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "uri", + "name": "branchHasSuffix", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "thumbnail", + "name": "branchIsNil", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } - } - ], - "inputFields": [], - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "File", - "possibleTypes": [] - }, - { - "description": "A connection to a list of items.", - "enumValues": [], - "fields": [ + }, { - "args": [], - "deprecationReason": null, - "description": "A list of edges.", - "isDeprecated": false, - "name": "edges", + "defaultValue": null, + "description": null, + "name": "branchNotNil", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FileEdge", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "Information to aid in pagination.", - "isDeprecated": false, - "name": "pageInfo", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Identifies the total count of items in the connection.", - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "FileConnection", - "possibleTypes": [] - }, - { - "description": "An edge in a connection.", - "enumValues": [], - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "The item at the end of the edge.", - "isDeprecated": false, - "name": "node", + "defaultValue": null, + "description": null, + "name": "branchEqualFold", "type": { - "kind": "OBJECT", - "name": "File", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "A cursor for use in pagination.", - "isDeprecated": false, - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - } - } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "FileEdge", - "possibleTypes": [] - }, - { - "description": "Ordering options for File connections", - "enumValues": [], - "fields": [], - "inputFields": [ - { - "defaultValue": "ASC", - "description": "The ordering direction.", - "name": "direction", + "defaultValue": null, + "description": null, + "name": "branchContainsFold", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, - "description": "The field by which to order Files.", - "name": "field", + "description": "service_id field predicates", + "name": "serviceID", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "FileOrderField", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } - } - ], - "interfaces": [], - "kind": "INPUT_OBJECT", - "name": "FileOrder", - "possibleTypes": [] - }, - { - "description": "Properties by which File connections can be ordered.", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "PRIORITY" }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - } - ], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "ENUM", - "name": "FileOrderField", - "possibleTypes": [] - }, - { - "description": "FileWhereInput is used for filtering File objects.\nInput was generated by ent.", - "enumValues": [], - "fields": [], - "inputFields": [ { "defaultValue": null, "description": null, - "name": "not", + "name": "serviceIDNEQ", "type": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "and", + "name": "serviceIDIn", "type": { "kind": "LIST", "name": null, @@ -6180,8 +6325,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } @@ -6190,7 +6335,7 @@ { "defaultValue": null, "description": null, - "name": "or", + "name": "serviceIDNotIn", "type": { "kind": "LIST", "name": null, @@ -6198,8 +6343,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", + "kind": "SCALAR", + "name": "ID", "ofType": null } } @@ -6207,8 +6352,8 @@ }, { "defaultValue": null, - "description": "id field predicates", - "name": "id", + "description": null, + "name": "serviceIDGT", "type": { "kind": "SCALAR", "name": "ID", @@ -6218,7 +6363,7 @@ { "defaultValue": null, "description": null, - "name": "idNEQ", + "name": "serviceIDGTE", "type": { "kind": "SCALAR", "name": "ID", @@ -6228,43 +6373,27 @@ { "defaultValue": null, "description": null, - "name": "idIn", + "name": "serviceIDLT", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idNotIn", + "name": "serviceIDLTE", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idGT", + "name": "serviceIDContains", "type": { "kind": "SCALAR", "name": "ID", @@ -6274,7 +6403,7 @@ { "defaultValue": null, "description": null, - "name": "idGTE", + "name": "serviceIDHasPrefix", "type": { "kind": "SCALAR", "name": "ID", @@ -6284,7 +6413,7 @@ { "defaultValue": null, "description": null, - "name": "idLT", + "name": "serviceIDHasSuffix", "type": { "kind": "SCALAR", "name": "ID", @@ -6294,7 +6423,7 @@ { "defaultValue": null, "description": null, - "name": "idLTE", + "name": "serviceIDEqualFold", "type": { "kind": "SCALAR", "name": "ID", @@ -6303,28 +6432,38 @@ }, { "defaultValue": null, - "description": "name field predicates", - "name": "name", + "description": null, + "name": "serviceIDContainsFold", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "tier field predicates", + "name": "tier", + "type": { + "kind": "ENUM", + "name": "DeploymentTier", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "nameNEQ", + "name": "tierNEQ", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "DeploymentTier", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "nameIn", + "name": "tierIn", "type": { "kind": "LIST", "name": null, @@ -6332,8 +6471,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "DeploymentTier", "ofType": null } } @@ -6342,7 +6481,7 @@ { "defaultValue": null, "description": null, - "name": "nameNotIn", + "name": "tierNotIn", "type": { "kind": "LIST", "name": null, @@ -6350,8 +6489,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "DeploymentTier", "ofType": null } } @@ -6359,118 +6498,144 @@ }, { "defaultValue": null, - "description": null, - "name": "nameGT", + "description": "auto_upgrade field predicates", + "name": "autoUpgrade", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "nameGTE", + "name": "autoUpgradeNEQ", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "nameLT", - "type": { + "description": "created_at field predicates", + "name": "createdAt", + "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "nameLTE", + "name": "createdAtNEQ", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "nameContains", + "name": "createdAtIn", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "nameHasPrefix", + "name": "createdAtNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtGT", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "nameHasSuffix", + "name": "createdAtGTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "nameEqualFold", + "name": "createdAtLT", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "nameContainsFold", + "name": "createdAtLTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, - "description": "directory field predicates", - "name": "directory", + "description": "updated_at field predicates", + "name": "updatedAt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "directoryNEQ", + "name": "updatedAtNEQ", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "directoryIn", + "name": "updatedAtIn", "type": { "kind": "LIST", "name": null, @@ -6479,7 +6644,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } } @@ -6488,7 +6653,7 @@ { "defaultValue": null, "description": null, - "name": "directoryNotIn", + "name": "updatedAtNotIn", "type": { "kind": "LIST", "name": null, @@ -6497,7 +6662,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } } @@ -6506,117 +6671,183 @@ { "defaultValue": null, "description": null, - "name": "directoryGT", + "name": "updatedAtGT", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "directoryGTE", + "name": "updatedAtGTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "directoryLT", + "name": "updatedAtLT", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "directoryLTE", + "name": "updatedAtLTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "spin_down_at field predicates", + "name": "spinDownAt", + "type": { + "kind": "SCALAR", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "directoryContains", + "name": "spinDownAtNEQ", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "directoryHasPrefix", + "name": "spinDownAtIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spinDownAtNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "spinDownAtGT", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "directoryHasSuffix", + "name": "spinDownAtGTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "directoryEqualFold", + "name": "spinDownAtLT", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "directoryContainsFold", + "name": "spinDownAtLTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, - "description": "alt field predicates", - "name": "alt", + "description": null, + "name": "spinDownAtIsNil", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "altNEQ", + "name": "spinDownAtNotNil", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "spin_up_at field predicates", + "name": "spinUpAt", + "type": { + "kind": "SCALAR", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "altIn", + "name": "spinUpAtNEQ", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "spinUpAtIn", "type": { "kind": "LIST", "name": null, @@ -6625,7 +6856,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } } @@ -6634,7 +6865,7 @@ { "defaultValue": null, "description": null, - "name": "altNotIn", + "name": "spinUpAtNotIn", "type": { "kind": "LIST", "name": null, @@ -6643,7 +6874,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } } @@ -6652,87 +6883,95 @@ { "defaultValue": null, "description": null, - "name": "altGT", + "name": "spinUpAtGT", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "altGTE", + "name": "spinUpAtGTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "altLT", + "name": "spinUpAtLT", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "altLTE", + "name": "spinUpAtLTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "Time", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "altContains", + "name": "spinUpAtIsNil", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "altHasPrefix", + "name": "spinUpAtNotNil", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "altHasSuffix", + "description": "teams edge predicates", + "name": "hasTeams", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "altIsNil", + "name": "hasTeamsWith", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TeamWhereInput", + "ofType": null + } + } } }, { "defaultValue": null, - "description": null, - "name": "altNotNil", + "description": "service edge predicates", + "name": "hasService", "type": { "kind": "SCALAR", "name": "Boolean", @@ -6742,47 +6981,35 @@ { "defaultValue": null, "description": null, - "name": "altEqualFold", + "name": "hasServiceWith", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "altContainsFold", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": "priority field predicates", - "name": "priority", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ServiceWhereInput", + "ofType": null + } + } } }, { "defaultValue": null, - "description": null, - "name": "priorityNEQ", + "description": "events edge predicates", + "name": "hasEvents", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "priorityIn", + "name": "hasEventsWith", "type": { "kind": "LIST", "name": null, @@ -6790,191 +7017,421 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "DeploymentLogWhereInput", "ofType": null } } } - }, + } + ], + "interfaces": [], + "kind": "INPUT_OBJECT", + "name": "DeploymentWhereInput", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "SCALAR", + "name": "Felt", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "priorityNotIn", + "isDeprecated": false, + "name": "id", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "ID", + "ofType": null } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "priorityGT", + "isDeprecated": false, + "name": "name", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "priorityGTE", + "isDeprecated": false, + "name": "directory", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "priorityLT", + "isDeprecated": false, + "name": "alt", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "priorityLTE", + "isDeprecated": false, + "name": "priority", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, - "description": "created_at field predicates", + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, "name": "createdAt", "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "createdAtNEQ", + "isDeprecated": false, + "name": "updatedAt", "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "createdAtIn", + "isDeprecated": false, + "name": "uri", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "createdAtNotIn", + "isDeprecated": false, + "name": "thumbnail", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } - }, + } + ], + "inputFields": [], + "interfaces": [ { - "defaultValue": null, - "description": null, - "name": "createdAtGT", - "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - }, + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "File", + "possibleTypes": [] + }, + { + "description": "A connection to a list of items.", + "enumValues": [], + "fields": [ { - "defaultValue": null, - "description": null, - "name": "createdAtGTE", + "args": [], + "deprecationReason": null, + "description": "A list of edges.", + "isDeprecated": false, + "name": "edges", "type": { - "kind": "SCALAR", - "name": "Time", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FileEdge", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "createdAtLT", + "args": [], + "deprecationReason": null, + "description": "Information to aid in pagination.", + "isDeprecated": false, + "name": "pageInfo", "type": { - "kind": "SCALAR", - "name": "Time", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "Identifies the total count of items in the connection.", + "isDeprecated": false, + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "FileConnection", + "possibleTypes": [] + }, + { + "description": "An edge in a connection.", + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "The item at the end of the edge.", + "isDeprecated": false, + "name": "node", + "type": { + "kind": "OBJECT", + "name": "File", "ofType": null } }, + { + "args": [], + "deprecationReason": null, + "description": "A cursor for use in pagination.", + "isDeprecated": false, + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "FileEdge", + "possibleTypes": [] + }, + { + "description": "Ordering options for File connections", + "enumValues": [], + "fields": [], + "inputFields": [ + { + "defaultValue": "ASC", + "description": "The ordering direction.", + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + } + }, { "defaultValue": null, + "description": "The field by which to order Files.", + "name": "field", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "FileOrderField", + "ofType": null + } + } + } + ], + "interfaces": [], + "kind": "INPUT_OBJECT", + "name": "FileOrder", + "possibleTypes": [] + }, + { + "description": "Properties by which File connections can be ordered.", + "enumValues": [ + { + "deprecationReason": null, "description": null, - "name": "createdAtLTE", + "isDeprecated": false, + "name": "PRIORITY" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "CREATED_AT" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "FileOrderField", + "possibleTypes": [] + }, + { + "description": "FileWhereInput is used for filtering File objects.\nInput was generated by ent.", + "enumValues": [], + "fields": [], + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "not", "type": { - "kind": "SCALAR", - "name": "Time", + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", "ofType": null } }, { "defaultValue": null, - "description": "updated_at field predicates", - "name": "updatedAt", + "description": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "id field predicates", + "name": "id", "type": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "updatedAtNEQ", + "name": "idNEQ", "type": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "updatedAtIn", + "name": "idIn", "type": { "kind": "LIST", "name": null, @@ -6983,7 +7440,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } } @@ -6992,7 +7449,7 @@ { "defaultValue": null, "description": null, - "name": "updatedAtNotIn", + "name": "idNotIn", "type": { "kind": "LIST", "name": null, @@ -7001,7 +7458,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } } @@ -7010,241 +7467,123 @@ { "defaultValue": null, "description": null, - "name": "updatedAtGT", + "name": "idGT", "type": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "updatedAtGTE", + "name": "idGTE", "type": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "updatedAtLT", + "name": "idLT", "type": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "updatedAtLTE", + "name": "idLTE", "type": { "kind": "SCALAR", - "name": "Time", + "name": "ID", "ofType": null } - } - ], - "interfaces": [], - "kind": "INPUT_OBJECT", - "name": "FileWhereInput", - "possibleTypes": [] - }, - { - "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", - "enumValues": [], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "SCALAR", - "name": "Float", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [], - "inputFields": [ + }, { "defaultValue": null, - "description": null, - "name": "index", + "description": "name field predicates", + "name": "name", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "value", + "name": "nameNEQ", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "interfaces": [], - "kind": "INPUT_OBJECT", - "name": "HasValueInput", - "possibleTypes": [] - }, - { - "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as \"4\") or integer (such as 4) input value will be accepted as an ID.", - "enumValues": [], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "SCALAR", - "name": "ID", - "possibleTypes": [] - }, - { - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "enumValues": [], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "SCALAR", - "name": "Int", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "SCALAR", - "name": "JSON", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "address", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "publicKey", + "name": "nameIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "privateKey", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "KatanaAccount", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ - { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "version", + "name": "nameNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "rpc", + "name": "nameGT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "blockTime", + "name": "nameGTE", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "forkRpcUrl", + "name": "nameLT", "type": { "kind": "SCALAR", "name": "String", @@ -7252,39 +7591,29 @@ } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "forkBlockNumber", + "name": "nameLTE", "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "seed", + "name": "nameContains", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "genesis", + "name": "nameHasPrefix", "type": { "kind": "SCALAR", "name": "String", @@ -7292,122 +7621,77 @@ } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "accounts", + "name": "nameHasSuffix", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "KatanaAccount", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "invokeMaxSteps", + "name": "nameEqualFold", "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "validateMaxSteps", + "name": "nameContainsFold", "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "disableFee", + "defaultValue": null, + "description": "directory field predicates", + "name": "directory", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "gasPrice", + "name": "directoryNEQ", "type": { "kind": "SCALAR", - "name": "Long", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "chainId", + "name": "directoryIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "KatanaConfig", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "toAddress", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "payload", + "name": "directoryNotIn", "type": { "kind": "LIST", "name": null, @@ -7416,1661 +7700,4249 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Felt", + "name": "String", "ofType": null } } } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "L1Message", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "fromAddress", + "name": "directoryGT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "payload", + "name": "directoryGTE", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Felt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "L2Message", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "content", + "name": "directoryLT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "until", + "name": "directoryLTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "Logs", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "SCALAR", - "name": "Long", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ + }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "beginRegistration", + "name": "directoryContains", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "credentials", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "finalizeRegistration", + "name": "directoryHasPrefix", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "beginLogin", + "name": "directoryHasSuffix", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "credentials", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "finalizeLogin", + "name": "directoryEqualFold", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "service", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CreateServiceInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tier", - "type": { - "kind": "ENUM", - "name": "DeploymentTier", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "wait", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "regions", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "createDeployment", + "name": "directoryContainsFold", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "UNION", - "name": "DeploymentConfig", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "service", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UpdateServiceInput", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "tier", - "type": { - "kind": "ENUM", - "name": "DeploymentTier", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "wait", - "type": { + "defaultValue": null, + "description": "alt field predicates", + "name": "alt", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altNEQ", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } } - ], - "deprecationReason": null, + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "updateDeployment", + "name": "altNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "UNION", - "name": "DeploymentConfig", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "service", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DeploymentService", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "deleteDeployment", + "name": "altGT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", + "defaultValue": null, + "description": null, + "name": "altGTE", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altLT", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altLTE", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altContains", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altHasPrefix", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altHasSuffix", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altIsNil", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altNotNil", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altEqualFold", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "altContainsFold", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "priority field predicates", + "name": "priority", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "priorityNEQ", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "priorityIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "priorityNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "priorityGT", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "priorityGTE", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "priorityLT", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "priorityLTE", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "created_at field predicates", + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtNEQ", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtGT", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtGTE", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtLT", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtLTE", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "updated_at field predicates", + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtNEQ", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtGT", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtGTE", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtLT", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtLTE", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + ], + "interfaces": [], + "kind": "INPUT_OBJECT", + "name": "FileWhereInput", + "possibleTypes": [] + }, + { + "description": "The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).", + "enumValues": [], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "SCALAR", + "name": "Float", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [], + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "index", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "value", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "interfaces": [], + "kind": "INPUT_OBJECT", + "name": "HasValueInput", + "possibleTypes": [] + }, + { + "description": "The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as \"4\") or integer (such as 4) input value will be accepted as an ID.", + "enumValues": [], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "SCALAR", + "name": "ID", + "possibleTypes": [] + }, + { + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "enumValues": [], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "SCALAR", + "name": "Int", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "SCALAR", + "name": "JSON", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "address", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "publicKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "privateKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "KatanaAccount", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "version", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "rpc", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "blockTime", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "forkRpcUrl", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "forkBlockNumber", + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "seed", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "genesis", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "accounts", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "KatanaAccount", + "ofType": null + } + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "invokeMaxSteps", + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "validateMaxSteps", + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "disableFee", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "gasPrice", + "type": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "chainId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "KatanaConfig", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "toAddress", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "payload", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Felt", + "ofType": null + } + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "L1Message", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "fromAddress", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "payload", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Felt", + "ofType": null + } + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "L2Message", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "content", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "until", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "Logs", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "SCALAR", + "name": "Long", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "beginRegistration", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "credentials", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "network", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "finalizeRegistration", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "beginLogin", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "credentials", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "finalizeLogin", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "service", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CreateServiceInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tier", + "type": { + "kind": "ENUM", + "name": "DeploymentTier", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "wait", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "regions", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createDeployment", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "UNION", + "name": "DeploymentConfig", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "service", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UpdateServiceInput", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tier", + "type": { + "kind": "ENUM", + "name": "DeploymentTier", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "wait", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updateDeployment", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "UNION", + "name": "DeploymentConfig", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "service", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DeploymentService", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "deleteDeployment", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "forkName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "forkBlockNumber", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Long", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "tier", + "type": { + "kind": "ENUM", + "name": "DeploymentTier", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "wait", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "forkDeployment", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "UNION", + "name": "DeploymentConfig", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "req", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "UploadFile", + "ofType": null + } + } + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "upload", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "File", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "priority", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updateFile", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "teamID", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "userIDs", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "addToTeam", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "teamID", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "userIDs", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "removeFromTeam", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "Mutation", + "possibleTypes": [] + }, + { + "description": "An object with an ID.\nFollows the [Relay Global Object Identification Specification](https://relay.dev/graphql/objectidentification.htm)", + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "The id of the object.", + "isDeprecated": false, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "INTERFACE", + "name": "Node", + "possibleTypes": [ + { + "kind": "OBJECT", + "name": "Account", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "AccountTeam", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Controller", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "CreditsHistory", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Deployment", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "DeploymentLog", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "File", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Service", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Signer", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "StripePayments", + "ofType": null + }, + { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + ] + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "asc" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "desc" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "Order", + "possibleTypes": [] + }, + { + "description": "Possible directions in which to order a list of items when provided an `orderBy` argument.", + "enumValues": [ + { + "deprecationReason": null, + "description": "Specifies an ascending order for a given `orderBy` argument.", + "isDeprecated": false, + "name": "ASC" + }, + { + "deprecationReason": null, + "description": "Specifies a descending order for a given `orderBy` argument.", + "isDeprecated": false, + "name": "DESC" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "OrderDirection", + "possibleTypes": [] + }, + { + "description": "Information about pagination in a connection.\nhttps://relay.dev/graphql/connections.htm#sec-undefined.PageInfo", + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "When paginating forwards, are there more items?", + "isDeprecated": false, + "name": "hasNextPage", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "When paginating backwards, are there more items?", + "isDeprecated": false, + "name": "hasPreviousPage", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "When paginating backwards, the cursor to continue.", + "isDeprecated": false, + "name": "startCursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "When paginating forwards, the cursor to continue.", + "isDeprecated": false, + "name": "endCursor", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "PageInfo", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "amount", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "base", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "currency", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "Price", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [ + { + "defaultValue": null, + "description": "ID of the object.", + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": "Fetches an object given its ID.", + "isDeprecated": false, + "name": "node", + "type": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": "The list of node IDs.", + "name": "ids", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + } + } + ], + "deprecationReason": null, + "description": "Lookup nodes by a list of IDs.", + "isDeprecated": false, + "name": "nodes", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "me", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "account", + "type": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountOrder", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountWhereInput", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "accounts", + "type": { + "kind": "OBJECT", + "name": "AccountConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "service", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "DeploymentService", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "deployment", + "type": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "INPUT_OBJECT", + "name": "DeploymentOrder", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "DeploymentWhereInput", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "deployments", + "type": { + "kind": "OBJECT", + "name": "DeploymentConnection", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "quote", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CurrencyQuote", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "base", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CurrencyBase", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "price", + "type": { + "kind": "OBJECT", + "name": "Price", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "referenceId", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "stripePayment", + "type": { + "kind": "OBJECT", + "name": "StripePayment", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "team", + "type": { + "kind": "OBJECT", + "name": "Team", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "after", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "first", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "before", + "type": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "last", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "TeamWhereInput", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "teams", + "type": { + "kind": "OBJECT", + "name": "TeamConnection", + "ofType": null + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "Query", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "memory", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cpu", + "type": { + "kind": "SCALAR", + "name": "Float", + "ofType": null + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "Resources", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "ADMIN" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "USER" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "Role", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "version", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "mode", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "rpcUrl", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "registry", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "settlementContract", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "world", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "proverUrl", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "storeProofs", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "starknetUrl", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "signerKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "signerAddress", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "privateKey", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "batchSize", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "startBlock", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "SayaConfig", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "versions", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", "name": "String", "ofType": null } } - }, - { - "defaultValue": null, - "description": null, - "name": "forkName", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "defaultVersion", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "updatedAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "deployments", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Deployment", + "ofType": null + } + } + } + } + ], + "inputFields": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], + "kind": "OBJECT", + "name": "Service", + "possibleTypes": [] + }, + { + "description": "A connection to a list of items.", + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "A list of edges.", + "isDeprecated": false, + "name": "edges", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ServiceEdge", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "Information to aid in pagination.", + "isDeprecated": false, + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": "Identifies the total count of items in the connection.", + "isDeprecated": false, + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "ServiceConnection", + "possibleTypes": [] + }, + { + "description": "An edge in a connection.", + "enumValues": [], + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "The item at the end of the edge.", + "isDeprecated": false, + "name": "node", + "type": { + "kind": "OBJECT", + "name": "Service", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": "A cursor for use in pagination.", + "isDeprecated": false, + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Cursor", + "ofType": null + } + } + } + ], + "inputFields": [], + "interfaces": [], + "kind": "OBJECT", + "name": "ServiceEdge", + "possibleTypes": [] + }, + { + "description": "Ordering options for Service connections", + "enumValues": [], + "fields": [], + "inputFields": [ + { + "defaultValue": "ASC", + "description": "The ordering direction.", + "name": "direction", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The field by which to order Services.", + "name": "field", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ServiceOrderField", + "ofType": null + } + } + } + ], + "interfaces": [], + "kind": "INPUT_OBJECT", + "name": "ServiceOrder", + "possibleTypes": [] + }, + { + "description": "Properties by which Service connections can be ordered.", + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "CREATED_AT" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "ServiceOrderField", + "possibleTypes": [] + }, + { + "description": "ServiceWhereInput is used for filtering Service objects.\nInput was generated by ent.", + "enumValues": [], + "fields": [], + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "ServiceWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ServiceWhereInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ServiceWhereInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": "id field predicates", + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "idNEQ", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "idIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "idNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "idGT", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "idGTE", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "idLT", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "idLTE", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "default_version field predicates", + "name": "defaultVersion", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionNEQ", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "forkBlockNumber", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Long", - "ofType": null - } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionGT", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionGTE", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionLT", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionLTE", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionContains", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionHasPrefix", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionHasSuffix", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionEqualFold", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "defaultVersionContainsFold", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "created_at field predicates", + "name": "createdAt", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtNEQ", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "tier", - "type": { - "kind": "ENUM", - "name": "DeploymentTier", + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtNotIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "wait", - "type": { + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtGT", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtGTE", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtLT", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtLTE", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "updated_at field predicates", + "name": "updatedAt", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtNEQ", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Time", "ofType": null } } - ], - "deprecationReason": null, + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "forkDeployment", + "name": "updatedAtNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "UNION", - "name": "DeploymentConfig", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "req", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "UploadFile", - "ofType": null - } - } - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "upload", + "name": "updatedAtGT", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtGTE", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtLT", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "updatedAtLTE", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": "deployments edge predicates", + "name": "hasDeployments", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "hasDeploymentsWith", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "File", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "DeploymentWhereInput", + "ofType": null } } } - }, + } + ], + "interfaces": [], + "kind": "INPUT_OBJECT", + "name": "ServiceWhereInput", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "priority", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "updateFile", + "name": "id", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "ID", "ofType": null } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "teamID", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "userIDs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - } + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "controllerID", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } - ], + } + }, + { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "addToTeam", + "name": "type", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "SignerType", "ofType": null } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "teamID", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "userIDs", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - } + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdAt", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null } - ], + } + }, + { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "removeFromTeam", + "name": "updatedAt", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Boolean", + "name": "Time", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "controller", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Controller", "ofType": null } } } ], "inputFields": [], - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "kind": "OBJECT", - "name": "Mutation", + "name": "Signer", "possibleTypes": [] }, { - "description": "An object with an ID.\nFollows the [Relay Global Object Identification Specification](https://relay.dev/graphql/objectidentification.htm)", + "description": "Ordering options for Signer connections", "enumValues": [], - "fields": [ + "fields": [], + "inputFields": [ { - "args": [], - "deprecationReason": null, - "description": "The id of the object.", - "isDeprecated": false, - "name": "id", + "defaultValue": "ASC", + "description": "The ordering direction.", + "name": "direction", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": "The field by which to order Signers.", + "name": "field", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SignerOrderField", "ofType": null } } } ], - "inputFields": [], "interfaces": [], - "kind": "INTERFACE", - "name": "Node", - "possibleTypes": [ - { - "kind": "OBJECT", - "name": "Account", - "ofType": null - }, - { - "kind": "OBJECT", - "name": "AccountTeam", - "ofType": null - }, + "kind": "INPUT_OBJECT", + "name": "SignerOrder", + "possibleTypes": [] + }, + { + "description": "Properties by which Signer connections can be ordered.", + "enumValues": [ { - "kind": "OBJECT", - "name": "Controller", - "ofType": null - }, + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "CREATED_AT" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "SignerOrderField", + "possibleTypes": [] + }, + { + "description": "SignerType is enum for the field type", + "enumValues": [ { - "kind": "OBJECT", - "name": "Deployment", - "ofType": null + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "webauthn" }, { - "kind": "OBJECT", - "name": "DeploymentLog", - "ofType": null - }, + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "starknet_account" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "SignerType", + "possibleTypes": [] + }, + { + "description": "SignerWhereInput is used for filtering Signer objects.\nInput was generated by ent.", + "enumValues": [], + "fields": [], + "inputFields": [ { - "kind": "OBJECT", - "name": "File", - "ofType": null + "defaultValue": null, + "description": null, + "name": "not", + "type": { + "kind": "INPUT_OBJECT", + "name": "SignerWhereInput", + "ofType": null + } }, { - "kind": "OBJECT", - "name": "Service", - "ofType": null + "defaultValue": null, + "description": null, + "name": "and", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SignerWhereInput", + "ofType": null + } + } + } }, { - "kind": "OBJECT", - "name": "Signer", - "ofType": null + "defaultValue": null, + "description": null, + "name": "or", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "SignerWhereInput", + "ofType": null + } + } + } }, { - "kind": "OBJECT", - "name": "Team", - "ofType": null - } - ] - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "asc" + "defaultValue": null, + "description": "id field predicates", + "name": "id", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "desc" - } - ], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "ENUM", - "name": "Order", - "possibleTypes": [] - }, - { - "description": "Possible directions in which to order a list of items when provided an `orderBy` argument.", - "enumValues": [ - { - "deprecationReason": null, - "description": "Specifies an ascending order for a given `orderBy` argument.", - "isDeprecated": false, - "name": "ASC" + "name": "idNEQ", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } }, { - "deprecationReason": null, - "description": "Specifies a descending order for a given `orderBy` argument.", - "isDeprecated": false, - "name": "DESC" - } - ], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "ENUM", - "name": "OrderDirection", - "possibleTypes": [] - }, - { - "description": "Information about pagination in a connection.\nhttps://relay.dev/graphql/connections.htm#sec-undefined.PageInfo", - "enumValues": [], - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "When paginating forwards, are there more items?", - "isDeprecated": false, - "name": "hasNextPage", + "defaultValue": null, + "description": null, + "name": "idIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, - "description": "When paginating backwards, are there more items?", - "isDeprecated": false, - "name": "hasPreviousPage", + "defaultValue": null, + "description": null, + "name": "idNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, - "description": "When paginating backwards, the cursor to continue.", - "isDeprecated": false, - "name": "startCursor", + "defaultValue": null, + "description": null, + "name": "idGT", "type": { "kind": "SCALAR", - "name": "Cursor", + "name": "ID", "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": "When paginating forwards, the cursor to continue.", - "isDeprecated": false, - "name": "endCursor", + "defaultValue": null, + "description": null, + "name": "idGTE", "type": { "kind": "SCALAR", - "name": "Cursor", + "name": "ID", "ofType": null } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "PageInfo", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "amount", + "name": "idLT", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "base", + "name": "idLTE", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "currency", + "defaultValue": null, + "description": "controller_id field predicates", + "name": "controllerID", "type": { "kind": "SCALAR", - "name": "String", + "name": "ID", "ofType": null } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "Price", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ + }, { - "args": [ - { - "defaultValue": null, - "description": "ID of the object.", - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - ], - "deprecationReason": null, - "description": "Fetches an object given its ID.", - "isDeprecated": false, - "name": "node", + "defaultValue": null, + "description": null, + "name": "controllerIDNEQ", "type": { - "kind": "INTERFACE", - "name": "Node", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": "The list of node IDs.", - "name": "ids", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } + "defaultValue": null, + "description": null, + "name": "controllerIDIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null } } - ], - "deprecationReason": null, - "description": "Lookup nodes by a list of IDs.", - "isDeprecated": false, - "name": "nodes", + } + }, + { + "defaultValue": null, + "description": null, + "name": "controllerIDNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INTERFACE", - "name": "Node", + "kind": "SCALAR", + "name": "ID", "ofType": null } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, + "description": null, + "name": "controllerIDGT", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "me", + "name": "controllerIDGTE", "type": { - "kind": "OBJECT", - "name": "Account", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "account", + "name": "controllerIDLT", "type": { - "kind": "OBJECT", - "name": "Account", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "after", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "before", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountOrder", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "accounts", + "name": "controllerIDLTE", "type": { - "kind": "OBJECT", - "name": "AccountConnection", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "service", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "DeploymentService", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "deployment", + "name": "controllerIDContains", "type": { - "kind": "OBJECT", - "name": "Deployment", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "after", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "before", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "INPUT_OBJECT", - "name": "DeploymentOrder", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "DeploymentWhereInput", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "deployments", + "name": "controllerIDHasPrefix", "type": { - "kind": "OBJECT", - "name": "DeploymentConnection", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "quote", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CurrencyQuote", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "base", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CurrencyBase", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, + "description": null, + "name": "controllerIDHasSuffix", + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "price", + "name": "controllerIDEqualFold", "type": { - "kind": "OBJECT", - "name": "Price", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "team", + "name": "controllerIDContainsFold", "type": { - "kind": "OBJECT", - "name": "Team", + "kind": "SCALAR", + "name": "ID", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "after", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "before", - "type": { - "kind": "SCALAR", - "name": "Cursor", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "last", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "TeamWhereInput", + "defaultValue": null, + "description": "type field predicates", + "name": "type", + "type": { + "kind": "ENUM", + "name": "SignerType", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "typeNEQ", + "type": { + "kind": "ENUM", + "name": "SignerType", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "typeIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SignerType", "ofType": null } } - ], - "deprecationReason": null, + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "teams", + "name": "typeNotIn", "type": { - "kind": "OBJECT", - "name": "TeamConnection", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SignerType", + "ofType": null + } + } } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "Query", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ + }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "memory", + "defaultValue": null, + "description": "created_at field predicates", + "name": "createdAt", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Time", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "cpu", + "name": "createdAtNEQ", "type": { "kind": "SCALAR", - "name": "Float", + "name": "Time", "ofType": null } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "Resources", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "ADMIN" }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "USER" - } - ], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "ENUM", - "name": "Role", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ + "name": "createdAtIn", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + } + } + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "version", + "name": "createdAtNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, + "description": null, + "name": "createdAtGT", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdAtGTE", + "type": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "mode", + "name": "createdAtLT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Time", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "rpcUrl", + "name": "createdAtLTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Time", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "registry", + "defaultValue": null, + "description": "updated_at field predicates", + "name": "updatedAt", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Time", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "settlementContract", + "name": "updatedAtNEQ", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Time", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "world", + "name": "updatedAtIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "proverUrl", + "name": "updatedAtNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Time", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "storeProofs", + "name": "updatedAtGT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "kind": "SCALAR", + "name": "Time", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "starknetUrl", + "name": "updatedAtGTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Time", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "signerKey", + "name": "updatedAtLT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Time", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "signerAddress", + "name": "updatedAtLTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Time", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, + "description": "controller edge predicates", + "name": "hasController", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "privateKey", + "name": "hasControllerWith", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "ControllerWhereInput", + "ofType": null + } } } - }, + } + ], + "interfaces": [], + "kind": "INPUT_OBJECT", + "name": "SignerWhereInput", + "possibleTypes": [] + }, + { + "description": "The `String`scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "enumValues": [], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "SCALAR", + "name": "String", + "possibleTypes": [] + }, + { + "description": null, + "enumValues": [], + "fields": [ { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "batchSize", + "name": "referenceId", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -9080,7 +11952,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "startBlock", + "name": "amount", "type": { "kind": "NON_NULL", "name": null, @@ -9095,7 +11967,7 @@ "inputFields": [], "interfaces": [], "kind": "OBJECT", - "name": "SayaConfig", + "name": "StripePayment", "possibleTypes": [] }, { @@ -9123,39 +11995,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "versions", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "defaultVersion", + "name": "paymentIntentStatus", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "ENUM", + "name": "StripePaymentsPaymentIntentStatus", + "ofType": null } }, { @@ -9163,13 +12007,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdAt", + "name": "paymentIntentID", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } } @@ -9179,15 +12023,11 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "updatedAt", + "name": "referenceID", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { @@ -9195,50 +12035,29 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "deployments", + "name": "amount", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Deployment", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } - } - ], - "inputFields": [], - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "Service", - "possibleTypes": [] - }, - { - "description": "A connection to a list of items.", - "enumValues": [], - "fields": [ + }, { "args": [], "deprecationReason": null, - "description": "A list of edges.", + "description": null, "isDeprecated": false, - "name": "edges", + "name": "userID", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "ServiceEdge", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -9246,15 +12065,15 @@ { "args": [], "deprecationReason": null, - "description": "Information to aid in pagination.", + "description": null, "isDeprecated": false, - "name": "pageInfo", + "name": "liveMode", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "PageInfo", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } } @@ -9262,67 +12081,50 @@ { "args": [], "deprecationReason": null, - "description": "Identifies the total count of items in the connection.", + "description": null, "isDeprecated": false, - "name": "totalCount", + "name": "createdAt", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "Time", "ofType": null } } - } - ], - "inputFields": [], - "interfaces": [], - "kind": "OBJECT", - "name": "ServiceConnection", - "possibleTypes": [] - }, - { - "description": "An edge in a connection.", - "enumValues": [], - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": "The item at the end of the edge.", - "isDeprecated": false, - "name": "node", - "type": { - "kind": "OBJECT", - "name": "Service", - "ofType": null - } }, { "args": [], "deprecationReason": null, - "description": "A cursor for use in pagination.", + "description": null, "isDeprecated": false, - "name": "cursor", + "name": "updatedAt", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Cursor", + "name": "Time", "ofType": null } } } ], "inputFields": [], - "interfaces": [], + "interfaces": [ + { + "kind": "INTERFACE", + "name": "Node", + "ofType": null + } + ], "kind": "OBJECT", - "name": "ServiceEdge", + "name": "StripePayments", "possibleTypes": [] }, { - "description": "Ordering options for Service connections", + "description": "Ordering options for StripePayments connections", "enumValues": [], "fields": [], "inputFields": [ @@ -9342,14 +12144,14 @@ }, { "defaultValue": null, - "description": "The field by which to order Services.", + "description": "The field by which to order StripePaymentsSlice.", "name": "field", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "ENUM", - "name": "ServiceOrderField", + "name": "StripePaymentsOrderField", "ofType": null } } @@ -9357,11 +12159,11 @@ ], "interfaces": [], "kind": "INPUT_OBJECT", - "name": "ServiceOrder", + "name": "StripePaymentsOrder", "possibleTypes": [] }, { - "description": "Properties by which Service connections can be ordered.", + "description": "Properties by which StripePayments connections can be ordered.", "enumValues": [ { "deprecationReason": null, @@ -9374,11 +12176,64 @@ "inputFields": [], "interfaces": [], "kind": "ENUM", - "name": "ServiceOrderField", + "name": "StripePaymentsOrderField", "possibleTypes": [] }, { - "description": "ServiceWhereInput is used for filtering Service objects.\nInput was generated by ent.", + "description": "StripePaymentsPaymentIntentStatus is enum for the field payment_intent_status", + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "canceled" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "processing" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "requires_action" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "requires_capture" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "requires_confirmation" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "requires_payment_method" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "succeeded" + } + ], + "fields": [], + "inputFields": [], + "interfaces": [], + "kind": "ENUM", + "name": "StripePaymentsPaymentIntentStatus", + "possibleTypes": [] + }, + { + "description": "StripePaymentsWhereInput is used for filtering StripePayments objects.\nInput was generated by ent.", "enumValues": [], "fields": [], "inputFields": [ @@ -9388,7 +12243,7 @@ "name": "not", "type": { "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", + "name": "StripePaymentsWhereInput", "ofType": null } }, @@ -9404,7 +12259,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", + "name": "StripePaymentsWhereInput", "ofType": null } } @@ -9422,7 +12277,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", + "name": "StripePaymentsWhereInput", "ofType": null } } @@ -9526,174 +12381,104 @@ }, { "defaultValue": null, - "description": "default_version field predicates", - "name": "defaultVersion", + "description": "payment_intent_status field predicates", + "name": "paymentIntentStatus", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "StripePaymentsPaymentIntentStatus", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "defaultVersionNEQ", + "name": "paymentIntentStatusNEQ", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "StripePaymentsPaymentIntentStatus", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "defaultVersionIn", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "defaultVersionNotIn", + "name": "paymentIntentStatusIn", "type": { "kind": "LIST", "name": null, "ofType": { "kind": "NON_NULL", "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "defaultVersionGT", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "defaultVersionGTE", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "defaultVersionLT", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "defaultVersionLTE", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "defaultVersionContains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "defaultVersionHasPrefix", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "ofType": { + "kind": "ENUM", + "name": "StripePaymentsPaymentIntentStatus", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "defaultVersionHasSuffix", + "name": "paymentIntentStatusNotIn", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "StripePaymentsPaymentIntentStatus", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "defaultVersionEqualFold", + "name": "paymentIntentStatusIsNil", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "defaultVersionContainsFold", + "name": "paymentIntentStatusNotNil", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, - "description": "created_at field predicates", - "name": "createdAt", + "description": "payment_intent_id field predicates", + "name": "paymentIntentID", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtNEQ", + "name": "paymentIntentIDNEQ", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtIn", + "name": "paymentIntentIDIn", "type": { "kind": "LIST", "name": null, @@ -9702,7 +12487,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } } @@ -9711,7 +12496,7 @@ { "defaultValue": null, "description": null, - "name": "createdAtNotIn", + "name": "paymentIntentIDNotIn", "type": { "kind": "LIST", "name": null, @@ -9720,7 +12505,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } } @@ -9729,153 +12514,117 @@ { "defaultValue": null, "description": null, - "name": "createdAtGT", + "name": "paymentIntentIDGT", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtGTE", + "name": "paymentIntentIDGTE", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtLT", + "name": "paymentIntentIDLT", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdAtLTE", + "name": "paymentIntentIDLTE", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, - "description": "updated_at field predicates", - "name": "updatedAt", + "description": null, + "name": "paymentIntentIDContains", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "updatedAtNEQ", + "name": "paymentIntentIDHasPrefix", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "updatedAtIn", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updatedAtNotIn", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "updatedAtGT", + "name": "paymentIntentIDHasSuffix", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "updatedAtGTE", + "name": "paymentIntentIDEqualFold", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "updatedAtLT", + "name": "paymentIntentIDContainsFold", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, - "description": null, - "name": "updatedAtLTE", + "description": "reference_id field predicates", + "name": "referenceID", "type": { "kind": "SCALAR", - "name": "Time", + "name": "String", "ofType": null } }, { "defaultValue": null, - "description": "deployments edge predicates", - "name": "hasDeployments", + "description": null, + "name": "referenceIDNEQ", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "hasDeploymentsWith", + "name": "referenceIDIn", "type": { "kind": "LIST", "name": null, @@ -9883,286 +12632,165 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "DeploymentWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } } - } - ], - "interfaces": [], - "kind": "INPUT_OBJECT", - "name": "ServiceWhereInput", - "possibleTypes": [] - }, - { - "description": null, - "enumValues": [], - "fields": [ + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id", + "name": "referenceIDNotIn", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "controllerID", + "name": "referenceIDGT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "type", + "name": "referenceIDGTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SignerType", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "createdAt", + "name": "referenceIDLT", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "updatedAt", + "name": "referenceIDLTE", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Time", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "controller", + "name": "referenceIDContains", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Controller", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "inputFields": [], - "interfaces": [ - { - "kind": "INTERFACE", - "name": "Node", - "ofType": null - } - ], - "kind": "OBJECT", - "name": "Signer", - "possibleTypes": [] - }, - { - "description": "Ordering options for Signer connections", - "enumValues": [], - "fields": [], - "inputFields": [ + }, { - "defaultValue": "ASC", - "description": "The ordering direction.", - "name": "direction", + "defaultValue": null, + "description": null, + "name": "referenceIDHasPrefix", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, - "description": "The field by which to order Signers.", - "name": "field", + "description": null, + "name": "referenceIDHasSuffix", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SignerOrderField", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } - } - ], - "interfaces": [], - "kind": "INPUT_OBJECT", - "name": "SignerOrder", - "possibleTypes": [] - }, - { - "description": "Properties by which Signer connections can be ordered.", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "CREATED_AT" - } - ], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "ENUM", - "name": "SignerOrderField", - "possibleTypes": [] - }, - { - "description": "SignerType is enum for the field type", - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "webauthn" }, { - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "starknet_account" - } - ], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "ENUM", - "name": "SignerType", - "possibleTypes": [] - }, - { - "description": "SignerWhereInput is used for filtering Signer objects.\nInput was generated by ent.", - "enumValues": [], - "fields": [], - "inputFields": [ + "name": "referenceIDIsNil", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, { "defaultValue": null, "description": null, - "name": "not", + "name": "referenceIDNotNil", "type": { - "kind": "INPUT_OBJECT", - "name": "SignerWhereInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "and", + "name": "referenceIDEqualFold", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SignerWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "or", + "name": "referenceIDContainsFold", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SignerWhereInput", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, - "description": "id field predicates", - "name": "id", + "description": "amount field predicates", + "name": "amount", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idNEQ", + "name": "amountNEQ", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idIn", + "name": "amountIn", "type": { "kind": "LIST", "name": null, @@ -10171,7 +12799,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } } @@ -10180,7 +12808,7 @@ { "defaultValue": null, "description": null, - "name": "idNotIn", + "name": "amountNotIn", "type": { "kind": "LIST", "name": null, @@ -10189,7 +12817,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } } @@ -10198,67 +12826,67 @@ { "defaultValue": null, "description": null, - "name": "idGT", + "name": "amountGT", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idGTE", + "name": "amountGTE", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idLT", + "name": "amountLT", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "idLTE", + "name": "amountLTE", "type": { "kind": "SCALAR", - "name": "ID", + "name": "Int", "ofType": null } }, { "defaultValue": null, - "description": "controller_id field predicates", - "name": "controllerID", + "description": "user_id field predicates", + "name": "userID", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "controllerIDNEQ", + "name": "userIDNEQ", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "controllerIDIn", + "name": "userIDIn", "type": { "kind": "LIST", "name": null, @@ -10267,7 +12895,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -10276,7 +12904,7 @@ { "defaultValue": null, "description": null, - "name": "controllerIDNotIn", + "name": "userIDNotIn", "type": { "kind": "LIST", "name": null, @@ -10285,7 +12913,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } } @@ -10294,149 +12922,113 @@ { "defaultValue": null, "description": null, - "name": "controllerIDGT", + "name": "userIDGT", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "controllerIDGTE", + "name": "userIDGTE", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "controllerIDLT", + "name": "userIDLT", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "controllerIDLTE", + "name": "userIDLTE", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "controllerIDContains", + "name": "userIDContains", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "controllerIDHasPrefix", + "name": "userIDHasPrefix", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "controllerIDHasSuffix", + "name": "userIDHasSuffix", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "controllerIDEqualFold", + "name": "userIDEqualFold", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "controllerIDContainsFold", + "name": "userIDContainsFold", "type": { "kind": "SCALAR", - "name": "ID", + "name": "String", "ofType": null } }, { "defaultValue": null, - "description": "type field predicates", - "name": "type", + "description": "live_mode field predicates", + "name": "liveMode", "type": { - "kind": "ENUM", - "name": "SignerType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "typeNEQ", + "name": "liveModeNEQ", "type": { - "kind": "ENUM", - "name": "SignerType", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, - { - "defaultValue": null, - "description": null, - "name": "typeIn", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SignerType", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "typeNotIn", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SignerType", - "ofType": null - } - } - } - }, { "defaultValue": null, "description": "created_at field predicates", @@ -10628,49 +13220,11 @@ "name": "Time", "ofType": null } - }, - { - "defaultValue": null, - "description": "controller edge predicates", - "name": "hasController", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hasControllerWith", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ControllerWhereInput", - "ofType": null - } - } - } } ], "interfaces": [], "kind": "INPUT_OBJECT", - "name": "SignerWhereInput", - "possibleTypes": [] - }, - { - "description": "The `String`scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "enumValues": [], - "fields": [], - "inputFields": [], - "interfaces": [], - "kind": "SCALAR", - "name": "String", + "name": "StripePaymentsWhereInput", "possibleTypes": [] }, { diff --git a/slot/src/graphql/auth/info.graphql b/slot/src/graphql/auth/info.graphql index 7fb9b27..c690cd5 100644 --- a/slot/src/graphql/auth/info.graphql +++ b/slot/src/graphql/auth/info.graphql @@ -4,12 +4,16 @@ query Me { name controllers { - id - address + edges { + node { + id + address - signers { - id - type + signers { + id + type + } + } } } diff --git a/slot/src/graphql/auth/mod.rs b/slot/src/graphql/auth/mod.rs index edde8f3..4ce0af6 100644 --- a/slot/src/graphql/auth/mod.rs +++ b/slot/src/graphql/auth/mod.rs @@ -21,8 +21,10 @@ impl From for account::AccountInfo { let credentials = value.credentials.webauthn.unwrap_or_default(); let controllers = value .controllers + .edges .unwrap_or_default() .into_iter() + .map(|c| c.unwrap()) .map(account::Controller::from) .collect(); @@ -35,11 +37,12 @@ impl From for account::AccountInfo { } } -impl From for account::Controller { - fn from(value: me::MeMeControllers) -> Self { - let id = value.id; - let address = Felt::from_str(&value.address).expect("valid address"); - let signers = value +impl From for account::Controller { + fn from(value: me::MeMeControllersEdges) -> Self { + let node = value.node.unwrap(); + let id = node.id; + let address = Felt::from_str(&node.address).expect("valid address"); + let signers = node .signers .unwrap_or_default() .into_iter() @@ -54,8 +57,8 @@ impl From for account::Controller { } } -impl From for account::ControllerSigner { - fn from(value: me::MeMeControllersSigners) -> Self { +impl From for account::ControllerSigner { + fn from(value: me::MeMeControllersEdgesNodeSigners) -> Self { Self { id: value.id, r#type: value.type_.into(), @@ -77,6 +80,7 @@ impl From for account::SignerType { mod tests { use crate::account::AccountInfo; + #[allow(unused_imports)] use super::*; #[test] @@ -90,7 +94,18 @@ mod tests { public_key: "foo".to_string(), }]), }, - controllers: None, + controllers: me::MeMeControllers { + edges: Some(vec![Some(me::MeMeControllersEdges { + node: Some(me::MeMeControllersEdgesNode { + id: "id".to_string(), + address: "0x123".to_string(), + signers: Some(vec![me::MeMeControllersEdgesNodeSigners { + id: "id".to_string(), + type_: me::SignerType::webauthn, + }]), + }), + })]), + }, }; let account = AccountInfo::from(me);