applesauce-actions 2.0.0 → 2.1.0

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.
@@ -13,7 +13,7 @@ export declare function BookmarkEvent(event: NostrEvent, identifier?: string, hi
13
13
  * @param identifier the "d" tag of the bookmark set
14
14
  * @param hidden set to true to remove from hidden bookmarks
15
15
  */
16
- export declare function UnbookmarkEvent(event: NostrEvent, identifier: string, hidden?: boolean): Action;
16
+ export declare function UnbookmarkEvent(event: NostrEvent, identifier?: string, hidden?: boolean): Action;
17
17
  /** An action that creates a new bookmark list for a user */
18
18
  export declare function CreateBookmarkList(bookmarks?: NostrEvent[]): Action;
19
19
  /** An action that creates a new bookmark set for a user */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "applesauce-actions",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "A package for performing common nostr actions",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -32,7 +32,7 @@
32
32
  }
33
33
  },
34
34
  "dependencies": {
35
- "applesauce-core": "^2.0.0",
35
+ "applesauce-core": "^2.1.0",
36
36
  "applesauce-factory": "^2.0.0",
37
37
  "nostr-tools": "^2.13",
38
38
  "rxjs": "^7.8.1"