mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-29 09:27:32 +00:00
* add ability to list buckets/objects and create signed url fot GET and PUT * ask to specify region when adding s3 buckets * add ability to read file contents from s3 * add ability to upload to s3 bucket * rename s3 dropdown options * add abilty to read, write, list and generate signed url for gcs * fix gcs query service * remove paginated response * make gcs private key as textarea * revise gcs upload response
35 lines
800 B
JavaScript
35 lines
800 B
JavaScript
import { Restapi } from './Restapi';
|
|
import { Mysql } from './Mysql';
|
|
import { Postgresql } from './Postgresql';
|
|
import { Stripe } from './Stripe';
|
|
import { Firestore } from './Firestore';
|
|
import { Redis } from './Redis';
|
|
import { Googlesheets } from './Googlesheets';
|
|
import { Elasticsearch } from './Elasticsearch';
|
|
import { Slack } from './Slack';
|
|
import { Mongodb } from './Mongodb';
|
|
import { Dynamodb } from './Dynamodb';
|
|
import { Airtable } from './Airtable';
|
|
import { Graphql } from './Graphql';
|
|
import { Mssql } from './Mssql';
|
|
import { S3 } from './S3';
|
|
import { Gcs } from './Gcs';
|
|
|
|
export const allSources = {
|
|
Restapi,
|
|
Mysql,
|
|
Postgresql,
|
|
Stripe,
|
|
Firestore,
|
|
Redis,
|
|
Googlesheets,
|
|
Elasticsearch,
|
|
Slack,
|
|
Mongodb,
|
|
Dynamodb,
|
|
Airtable,
|
|
Graphql,
|
|
Mssql,
|
|
S3,
|
|
Gcs,
|
|
};
|