From 018f995c2d8930ac3fa60d7244e7acb599427465 Mon Sep 17 00:00:00 2001 From: Karl Horky Date: Fri, 13 Jul 2018 15:22:50 +0200 Subject: [PATCH] Update CLI schema --- cli/data/schema.graphql | 6 ++++ cli/data/schema.json | 64 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) diff --git a/cli/data/schema.graphql b/cli/data/schema.graphql index 2b122f6d16..0cb139c349 100644 --- a/cli/data/schema.graphql +++ b/cli/data/schema.graphql @@ -207,6 +207,7 @@ type Project { name: String customer: Customer git_url: String + subfolder: String notifications(type: NotificationType): [Notification] active_systems_deploy: String active_systems_promote: String @@ -217,6 +218,7 @@ type Project { storage_calc: Int pullrequests: String openshift: Openshift + openshift_project_pattern: String sshKeys: [SshKey] environments(type: EnvType, include_deleted: Boolean): [Environment] created: String @@ -227,7 +229,9 @@ input ProjectInput { name: String! customer: Int! git_url: String! + subfolder: String openshift: Int! + openshift_project_pattern: String active_systems_deploy: String active_systems_promote: String active_systems_remove: String @@ -371,6 +375,7 @@ input UpdateProjectPatchInput { name: String customer: Int git_url: String + subfolder: String active_systems_deploy: String active_systems_remove: String branches: String @@ -379,6 +384,7 @@ input UpdateProjectPatchInput { storage_calc: Int pullrequests: String openshift: Int + openshift_project_pattern: String } input UpdateSshKeyInput { diff --git a/cli/data/schema.json b/cli/data/schema.json index 832ac0f43d..b41f279c33 100644 --- a/cli/data/schema.json +++ b/cli/data/schema.json @@ -466,6 +466,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "subfolder", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "notifications", "description": "", @@ -601,6 +613,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "openshift_project_pattern", + "description": "", + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "sshKeys", "description": "", @@ -2823,6 +2847,16 @@ }, "defaultValue": null }, + { + "name": "subfolder", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "active_systems_deploy", "description": "", @@ -2902,6 +2936,16 @@ "ofType": null }, "defaultValue": null + }, + { + "name": "openshift_project_pattern", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null } ], "interfaces": null, @@ -2966,6 +3010,16 @@ }, "defaultValue": null }, + { + "name": "subfolder", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "openshift", "description": "", @@ -2980,6 +3034,16 @@ }, "defaultValue": null }, + { + "name": "openshift_project_pattern", + "description": "", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, { "name": "active_systems_deploy", "description": "",