From bf28a4a6734b0ddbf3fe9107b81b0411f551c45f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 25 Jul 2022 14:29:14 +0200 Subject: [PATCH] sync hub items with community #237 Co-authored-by: rubenfiszel --- community/resource_types/gcal.json | 18 ++++++++++++++++++ community/resource_types/gdrive.json | 18 ++++++++++++++++++ community/resource_types/google.json | 18 ++++++++++++++++++ community/resource_types/gsheets.json | 18 ++++++++++++++++++ 4 files changed, 72 insertions(+) create mode 100644 community/resource_types/gcal.json create mode 100644 community/resource_types/gdrive.json create mode 100644 community/resource_types/google.json create mode 100644 community/resource_types/gsheets.json diff --git a/community/resource_types/gcal.json b/community/resource_types/gcal.json new file mode 100644 index 0000000000..57372a1b04 --- /dev/null +++ b/community/resource_types/gcal.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "gcal", + "schema": { + "type": "object", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "required": [ + "token" + ], + "properties": { + "token": { + "type": "string", + "description": "The OAuth token, refreshed if necessary" + } + } + }, + "description": "GCalendar OAuth credentials" +} diff --git a/community/resource_types/gdrive.json b/community/resource_types/gdrive.json new file mode 100644 index 0000000000..5b5d139b55 --- /dev/null +++ b/community/resource_types/gdrive.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "gdrive", + "schema": { + "type": "object", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "required": [ + "token" + ], + "properties": { + "token": { + "type": "string", + "description": "" + } + } + }, + "description": "GDrive OAuth credentials" +} diff --git a/community/resource_types/google.json b/community/resource_types/google.json new file mode 100644 index 0000000000..f65004d372 --- /dev/null +++ b/community/resource_types/google.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "google", + "schema": { + "type": "object", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "required": [ + "token" + ], + "properties": { + "token": { + "type": "string", + "description": "" + } + } + }, + "description": "Google OAuth login credentials used to retrieve email and user info" +} diff --git a/community/resource_types/gsheets.json b/community/resource_types/gsheets.json new file mode 100644 index 0000000000..e8bbf69651 --- /dev/null +++ b/community/resource_types/gsheets.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "gsheets", + "schema": { + "type": "object", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "required": [ + "token" + ], + "properties": { + "token": { + "type": "string", + "description": "The OAuth token, refreshed if necessary" + } + } + }, + "description": "GSheet OAuth credentials" +}