diff --git a/CHANGELOG.md b/CHANGELOG.md index 12a6bd7..99b14f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## Version 1.1.0 + + +### Features + +* sync ChatKitty application with Firebase project ([2d58a33](https://github.com/ChatKitty/chatkitty-firebase-extension/commit/2d58a339357c60e068af1a3c1f8d18a23324e7aa)) + ## Version 1.0.1 diff --git a/README.md b/README.md index 16e9945..b93354a 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,24 @@ ChatKitty requires Firebase Authentication for user management. Make sure Fireba **Cloud Functions:** +* **syncApplication:** Syncs your ChatKitty application with your Firebase project. + * **handleCreateUser:** Listens for user accounts to be created in your Firebase project and creates a ChatKitty user for each new user. * **handleDeleteUser:** Listens for user accounts to be deleted in your Firebase project and deletes the corresponding ChatKitty user. + + + +**APIs Used**: + +* iam.googleapis.com (Reason: Required to sync ChatKitty users with Firebase users.) + + + +**Access Required**: + + + +This extension will operate with the following project IAM roles: + +* firebaseauth.viewer (Reason: Required to list Firebase users to sync with ChatKitty users.) diff --git a/extension.yaml b/extension.yaml index 12c8dfa..706d22d 100644 --- a/extension.yaml +++ b/extension.yaml @@ -1,5 +1,5 @@ name: chatkitty -version: 1.0.1 +version: 1.1.0 specVersion: v1beta license: Apache-2.0