FirestoreGoogleAppsScript icon indicating copy to clipboard operation
FirestoreGoogleAppsScript copied to clipboard

A Google Apps Script library for accessing Google Cloud Firestore.

Results 40 FirestoreGoogleAppsScript issues
Sort by recently updated
recently updated
newest added

Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 4.1.0 to 4.1.1. Commits 64735d2 v4.1.1 75a657d Fix potential ReDoS (#37) See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ansi-regex&package-manager=npm_and_yarn&previous-version=4.1.0&new-version=4.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this...

dependencies

Bumps [minimatch](https://github.com/isaacs/minimatch) from 3.0.4 to 3.1.2. Commits 699c459 3.1.2 2f2b5ff fix: trim pattern 25d7c0d 3.1.1 55dda29 fix: treat nocase:true as always having magic 5e1fb8d 3.1.0 f8145c5 Add 'allowWindowsEscape' option 570e8b1...

dependencies

Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...

dependencies

When I do an Update on my Document, it inserts some weird values.... `function compareDB() { const firestore = getFireStore() const prodDB = firestore.query("ProTips").OrderBy("id").Execute() const stagingDB = firestore.query("ProTipsStaging").OrderBy("id").Execute() for (var...

Since Version 7.21.0 - September Firestore added not-in and != query operators for use with .where(). * not-in finds documents where a specified field’s value is not in a specified...

enhancement

Hello : Google add the count() aggregation query to count, please add this aggregation. For example, count() operations that match between 0 and 1000 index entries are billed for one...

enhancement

## Minimal code to reproduce the problem ```javascript var firestore = FirestoreApp.getFirestore(dateArray.client_email, dateArray.private_key, dateArray.project_id); const documents = firestore.getDocuments("collection_name"); ``` ## Expected Behavior when i run this a month ago, this...

bug

The custom mask is interpreted as a whole field name instead of the nested field name. Therefore there is no way to update a nested field with it. ## Minimal...

bug

## Is your feature request related to a problem? I followed the Readme for getting some user data like this: ``` const firestore = FirestoreApp.getFirestore(email, key, projectId); const userSnap =...

enhancement

(Kinda) Fixes https://github.com/grahamearley/FirestoreGoogleAppsScript/issues/131. **Recap**: the issue at stake is that right now, it’s impossible to grab the library’s types to please TypeScript’s type checker, for the repository is merely a...