Skip to content

Commit

Permalink
chore(*): release-2023-October-06
Browse files Browse the repository at this point in the history
  • Loading branch information
dackers86 authored Oct 9, 2023
2 parents d2b5a12 + 0e94a46 commit c61630b
Show file tree
Hide file tree
Showing 57 changed files with 7,256 additions and 3,132 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ coverage
yarn.lock
_emulator/pubsub-debug.log
firestore-debug.log
pubsub-debug.log
pubsub-debug.log
tmp/
fixtures/
2 changes: 1 addition & 1 deletion _emulator/extensions/delete-user-data.env.local
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ LOCATION=europe-west2
FIRESTORE_QUERY_COLLECTION=queries
ENABLE_AUTO_DISCOVERY=true
AUTO_DISCOVERY_SEARCH_FIELDS=field1,field2
SEARCH_FUNCTION=http://localhost:5001/demo-test/us-central1/findDocumentReferences
SEARCH_FUNCTION=http://127.0.0.1:5001/demo-test/us-central1/findDocumentReferences
AUTO_DISCOVERY_TOPIC=discovery
AUTO_DISCOVERY_SEARCH_DEPTH=4
DELETION_TOPIC=deletions
Expand Down
3,006 changes: 2,908 additions & 98 deletions _emulator/functions/package-lock.json

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions auth-mailchimp-sync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,13 @@ Usage of this extension also requires you to have a Mailchimp account. You are r
* **removeUserFromList:** Listens for existing user accounts to be deleted (as managed by Firebase Authentication), then automatically removes them from your specified Mailchimp audience.

* **addExistingUsersToList:** Adds existing users into the specified Mailchimp audience.



**Access Required**:



This extension will operate with the following project IAM roles:

* firebaseauth.viewer (Reason: Allows the extension to read existing users while handling lifecycle events.)
12 changes: 6 additions & 6 deletions auth-mailchimp-sync/functions/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions delete-user-data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ To install an extension, your project must be on the [Blaze (pay as you go) plan

**Configuration Parameters:**

* Cloud Functions location: Where do you want to deploy the functions created for this extension? You usually want a location close to your database or Storage bucket. For help selecting a location, refer to the [location selection guide](https://firebase.google.com/docs/functions/locations).

* Cloud Firestore paths: Which paths in your Cloud Firestore instance contain data keyed on a user ID? Leave empty if you don't use Cloud Firestore.
Enter the full paths, separated by commas. Use `{UID}` as a placeholder for the user's UID.
For example, if you have the collections `users` and `admins`, and each collection has documents with User ID as document IDs, then enter `users/{UID},admins/{UID}`.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default () => {
process.env.FIRESTORE_EMULATOR_HOST = "localhost:8080";
process.env.FIREBASE_FIRESTORE_EMULATOR_ADDRESS = "localhost:8080";
process.env.FIREBASE_AUTH_EMULATOR_HOST = "localhost:9099";
process.env.PUBSUB_EMULATOR_HOST = "localhost:8085";
process.env.FIRESTORE_EMULATOR_HOST = "127.0.0.1:8080";
process.env.FIREBASE_FIRESTORE_EMULATOR_ADDRESS = "127.0.0.1:8080";
process.env.FIREBASE_AUTH_EMULATOR_HOST = "127.0.0.1:9099";
process.env.PUBSUB_EMULATOR_HOST = "127.0.0.1:8085";
process.env.GOOGLE_CLOUD_PROJECT = "demo-test";
};
124 changes: 62 additions & 62 deletions delete-user-data/functions/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c61630b

Please sign in to comment.