@stevenkellner/team-conduct-api 2.0.5 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -99,6 +99,12 @@ export class Firestore {
|
|
|
99
99
|
.document(id.guidString) as FirestoreDocument<Team>;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
+
public userAuthentication(id: string): FirestoreDocument<User.Id> {
|
|
103
|
+
return this.base
|
|
104
|
+
.collection('userAuthentications')
|
|
105
|
+
.document(id);
|
|
106
|
+
}
|
|
107
|
+
|
|
102
108
|
/**
|
|
103
109
|
* Gets a reference to a user document.
|
|
104
110
|
*
|