Skip to content

Commit 8686954

Browse files
committed
1.4.3
- fixed typos in types
1 parent d7dec68 commit 8686954

File tree

5 files changed

+135
-403
lines changed

5 files changed

+135
-403
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ More important methods are `getItems(listUUID)`, `getItemsDetails(listUUID)`, `s
4646
`moveToRecentList(listUuid, itemName)` and `getAllUsersFromList(listUuid)`.
4747

4848
## Changelog
49+
### 1.4.3 (2022-05-01)
50+
* (foxriver76) fixed typos in types (thanks to @Squawnchy)
51+
4952
### 1.4.2 (2021-08-12)
5053
* (foxriver76) restructure to typescript
5154

build/bring.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ interface GetItemsResponse {
1212
uuid: string;
1313
status: string;
1414
purchase: GetItemsResponseEntry[];
15-
rececently: GetItemsResponseEntry[];
15+
recently: GetItemsResponseEntry[];
1616
}
1717
interface GetAllUsersFromListEntry {
1818
publicUuid: string;
@@ -32,7 +32,7 @@ interface LoadListsEntry {
3232
name: string;
3333
theme: string;
3434
}
35-
interface LoadListsFresponse {
35+
interface LoadListsResponse {
3636
lists: LoadListsEntry[];
3737
}
3838
interface GetItemsDetailsEntry {
@@ -92,7 +92,7 @@ declare class Bring {
9292
/**
9393
* Loads all shopping lists
9494
*/
95-
loadLists(): Promise<LoadListsFresponse>;
95+
loadLists(): Promise<LoadListsResponse>;
9696
/**
9797
* Get all items from the current selected shopping list
9898
*/

0 commit comments

Comments
 (0)