Skip to content

Commit a0daf56

Browse files
authored
Fix v0.5.0 Bugs (#703)
1 parent e74bc23 commit a0daf56

File tree

28 files changed

+755
-337
lines changed

28 files changed

+755
-337
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export interface Books {
1+
export interface BooksStatistics {
22
/**
33
* The current count of books in the library.
44
*/
@@ -8,3 +8,5 @@ export interface Books {
88
*/
99
historicalCount: number;
1010
}
11+
12+
export default BooksStatistics;
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export interface Checkouts {
1+
export interface CheckoutsStatistics {
22
/**
33
* The current count of active checkouts in the library.
44
*/
@@ -8,3 +8,5 @@ export interface Checkouts {
88
*/
99
historicalCount: number;
1010
}
11+
12+
export default CheckoutsStatistics;
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export interface Copies {
1+
export interface CopiesStatistics {
22
/**
33
* The current count of copies in the library.
44
*/
@@ -28,3 +28,5 @@ export interface Copies {
2828
4: number;
2929
};
3030
}
31+
32+
export default CopiesStatistics;
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export interface Users {
1+
export interface UsersStatistics {
22
/**
33
* The current count of users in the library.
44
*/
@@ -8,3 +8,5 @@ export interface Users {
88
*/
99
historicalCount: number;
1010
}
11+
12+
export default UsersStatistics;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"kind":"identitytoolkit#DownloadAccountResponse","users":[{"localId":"yEjjsFDWcKIxWgXSWfb71XlGpYdN","createdAt":"1621181611766","lastLoginAt":"1658120019099","displayName":"","photoUrl":"","passwordHash":"fakeHash:salt=fakeSaltxvao7ytdqlFxfsVlG7UB:password=bsclibrary","salt":"fakeSaltxvao7ytdqlFxfsVlG7UB","passwordUpdatedAt":1658119873666,"customAttributes":"{\"permissions\": {\"CHECK_IN\": [], \"CHECK_OUT\": [], \"MANAGE_CHECKOUTS\": [], \"MANAGE_LIBRARY\": [], \"MANAGE_PAGES\": [], \"MANAGE_USERS\": [], \"MANAGE_BOOKS\": []}, \"librariesOwned\": [\"bsclibrary\"]}","providerUserInfo":[{"providerId":"password","email":"admin@bsclibrary.net","federatedId":"admin@bsclibrary.net","rawId":"admin@bsclibrary.net","displayName":"","photoUrl":""}],"validSince":"1658119873","email":"admin@bsclibrary.net","emailVerified":true,"disabled":false,"lastRefreshAt":"2022-07-18T04:53:39.099Z"}]}
1+
{"kind":"identitytoolkit#DownloadAccountResponse","users":[{"localId":"yEjjsFDWcKIxWgXSWfb71XlGpYdN","createdAt":"1621181611766","lastLoginAt":"1658417099640","displayName":"","photoUrl":"","passwordHash":"fakeHash:salt=fakeSalt6NbINcPas54AqYv2TJN6:password=bsclibrary","salt":"fakeSalt6NbINcPas54AqYv2TJN6","passwordUpdatedAt":1658415375632,"customAttributes":"{\"permissions\": {\"CHECK_IN\": [\"bsclibrary\"], \"CHECK_OUT\": [\"bsclibrary\"], \"MANAGE_CHECKOUTS\": [\"bsclibrary\"], \"MANAGE_LIBRARY\": [\"bsclibrary\"], \"MANAGE_PAGES\": [\"bsclibrary\"], \"MANAGE_USERS\": [\"bsclibrary\"], \"MANAGE_BOOKS\": [\"bsclibrary\"]}, \"librariesJoined\": [\"bsclibrary\"], \"librariesOwned\": [\"bsclibrary\"]}","providerUserInfo":[{"providerId":"password","email":"admin@bsclibrary.net","federatedId":"admin@bsclibrary.net","rawId":"admin@bsclibrary.net","displayName":"","photoUrl":""}],"validSince":"1658415375","email":"admin@bsclibrary.net","emailVerified":true,"disabled":false,"lastRefreshAt":"2022-07-21T15:24:59.640Z"}]}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"version": "11.2.2",
2+
"version": "11.3.0",
33
"firestore": {
44
"version": "1.14.4",
55
"path": "firestore_export",
66
"metadata_file": "firestore_export/firestore_export.overall_export_metadata"
77
},
88
"auth": {
9-
"version": "11.2.2",
9+
"version": "11.3.0",
1010
"path": "auth_export"
1111
}
1212
}
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)