* Adding the skeleton for Firestore integration * Adding the datasource & query editor forms Also adding the database changelog for the firestore plugin Commenting out the firestore.close() connection because that causes issues with multiple Firestore tenants running in the same JVM. * Adding the code for fetching the structure of collections from Firestore * Use single document path field for Firestore * Fix potential NPE when datasource destroy timeouts * Work in progress on collection level ops for Firestore * Get documents in a collection now works * Add collection level querying support * Mild refactoring * Fix NPE when some fields are missing * Hide clientJSON as a password field for Firestore * Make collection level querying reactive * Make reactive * Validate before connecting * Add tests for all supported methods in Firestore * Fix forms for Firestore with hidden fields * Hide limit and order by fields when not needed * Restore log entry deleted by mistake * Use S3 URL for Firestore/Firebase logo * Add comments detailing why some code is commented * Make parsing JSON reactive and fix subscribe calls * Fix reactive scheduler Co-authored-by: Arpit Mohan <arpit@appsmith.com>
28 lines
997 B
XML
28 lines
997 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<groupId>com.appsmith</groupId>
|
|
<artifactId>integrated</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>appsmith-plugins</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>postgresPlugin</module>
|
|
<module>restApiPlugin</module>
|
|
<module>mongoPlugin</module>
|
|
<module>rapidApiPlugin</module>
|
|
<module>mysqlPlugin</module>
|
|
<module>elasticSearchPlugin</module>
|
|
<module>dynamoPlugin</module>
|
|
<module>redisPlugin</module>
|
|
<module>mssqlPlugin</module>
|
|
<module>firestorePlugin</module>
|
|
</modules>
|
|
</project> |