From 5b70bad6b99fa6685cd48037e4e7b714cae8ca4c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 2 Jul 2022 19:22:35 +0200 Subject: [PATCH] sync hub items with community #148 Co-authored-by: rubenfiszel --- community/resource_types/airtable.json | 18 ++++++++++++++++++ community/resource_types/github.json | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 community/resource_types/airtable.json create mode 100644 community/resource_types/github.json diff --git a/community/resource_types/airtable.json b/community/resource_types/airtable.json new file mode 100644 index 0000000000..42d054b36c --- /dev/null +++ b/community/resource_types/airtable.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "airtable", + "schema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "token": { + "type": "string", + "description": "" + } + }, + "required": [ + "token" + ], + "type": "object" + }, + "description": "The airtable OAuth token" +} diff --git a/community/resource_types/github.json b/community/resource_types/github.json new file mode 100644 index 0000000000..69c37e9290 --- /dev/null +++ b/community/resource_types/github.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "github", + "schema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "token": { + "type": "string", + "description": "" + } + }, + "required": [ + "token" + ], + "type": "object" + }, + "description": "The github OAuth credentials" +}