tauri-plugin-nostrnative 0.1.4 → 0.1.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.
Files changed (49) hide show
  1. package/LICENSE +21 -674
  2. package/README.md +5 -0
  3. package/dist-js/index.cjs +331 -71
  4. package/dist-js/index.d.ts +185 -5
  5. package/dist-js/index.js +299 -72
  6. package/package.json +1 -1
  7. package/permissions/autogenerated/allow-blossom-delete.toml +4 -0
  8. package/permissions/autogenerated/allow-blossom-list.toml +4 -0
  9. package/permissions/autogenerated/allow-blossom-upload.toml +4 -0
  10. package/permissions/autogenerated/commands/add_note_to_notebook.toml +13 -0
  11. package/permissions/autogenerated/commands/blossom_delete.toml +13 -0
  12. package/permissions/autogenerated/commands/blossom_list.toml +13 -0
  13. package/permissions/autogenerated/commands/compare_routstr_prices.toml +8 -0
  14. package/permissions/autogenerated/commands/create_note.toml +13 -0
  15. package/permissions/autogenerated/commands/create_notebook.toml +13 -0
  16. package/permissions/autogenerated/commands/delete_nfp_data.toml +9 -0
  17. package/permissions/autogenerated/commands/delete_note.toml +13 -0
  18. package/permissions/autogenerated/commands/delete_notebook.toml +13 -0
  19. package/permissions/autogenerated/commands/delete_virtual_fs.toml +12 -0
  20. package/permissions/autogenerated/commands/discover_routstr_providers.toml +8 -0
  21. package/permissions/autogenerated/commands/fetch_calendar_contact_lists.toml +13 -0
  22. package/permissions/autogenerated/commands/fetch_nfp_cycles.toml +9 -0
  23. package/permissions/autogenerated/commands/fetch_nfp_observations.toml +13 -0
  24. package/permissions/autogenerated/commands/fetch_nfp_settings.toml +9 -0
  25. package/permissions/autogenerated/commands/fetch_notebooks.toml +13 -0
  26. package/permissions/autogenerated/commands/fetch_notes.toml +13 -0
  27. package/permissions/autogenerated/commands/fetch_routstr_models.toml +8 -0
  28. package/permissions/autogenerated/commands/fetch_virtual_fs.toml +13 -0
  29. package/permissions/autogenerated/commands/get_nostr_event_counts.toml +4 -0
  30. package/permissions/autogenerated/commands/get_nostr_relay_events.toml +4 -0
  31. package/permissions/autogenerated/commands/get_nostr_relay_status.toml +4 -0
  32. package/permissions/autogenerated/commands/hex_to_npub.toml +13 -0
  33. package/permissions/autogenerated/commands/npub_to_hex.toml +13 -0
  34. package/permissions/autogenerated/commands/publish_calendar_contact_list.toml +13 -0
  35. package/permissions/autogenerated/commands/publish_nfp_cycle.toml +9 -0
  36. package/permissions/autogenerated/commands/publish_nfp_observation.toml +9 -0
  37. package/permissions/autogenerated/commands/publish_nfp_settings.toml +9 -0
  38. package/permissions/autogenerated/commands/publish_virtual_fs.toml +13 -0
  39. package/permissions/autogenerated/commands/remove_note_from_notebook.toml +13 -0
  40. package/permissions/autogenerated/commands/start_nostr_relay.toml +4 -0
  41. package/permissions/autogenerated/commands/stop_nostr_relay.toml +4 -0
  42. package/permissions/autogenerated/commands/update_nfp_cycle.toml +13 -0
  43. package/permissions/autogenerated/commands/update_nfp_observation.toml +13 -0
  44. package/permissions/autogenerated/commands/update_nfp_settings.toml +13 -0
  45. package/permissions/autogenerated/commands/update_note.toml +13 -0
  46. package/permissions/autogenerated/reference.md +1034 -131
  47. package/permissions/default.json +18 -0
  48. package/permissions/default.toml +35 -1
  49. package/permissions/schemas/schema.json +404 -2
@@ -30,6 +30,8 @@ Default permissions for tauri-plugin-nostrnative plugin. Enables all commands by
30
30
  - `allow-blossom-upload`
31
31
  - `allow-blossom-upload-content`
32
32
  - `allow-blossom-get-blob`
33
+ - `allow-blossom-delete`
34
+ - `allow-blossom-list`
33
35
  - `allow-derive-pns-keys`
34
36
  - `allow-create-discovery-event`
35
37
  - `allow-decrypt-discovery-event`
@@ -38,6 +40,36 @@ Default permissions for tauri-plugin-nostrnative plugin. Enables all commands by
38
40
  - `allow-fetch-pns-events`
39
41
  - `allow-delete-chat-messages`
40
42
  - `allow-fetch-discovery-events`
43
+ - `allow-discover-routstr-providers`
44
+ - `allow-compare-routstr-prices`
45
+ - `allow-fetch-routstr-models`
46
+ - `allow-create-note`
47
+ - `allow-update-note`
48
+ - `allow-delete-note`
49
+ - `allow-fetch-notes`
50
+ - `allow-create-notebook`
51
+ - `allow-fetch-notebooks`
52
+ - `allow-add-note-to-notebook`
53
+ - `allow-remove-note-from-notebook`
54
+ - `allow-delete-notebook`
55
+ - `allow-fetch-nfp-observations`
56
+ - `allow-publish-nfp-observation`
57
+ - `allow-update-nfp-observation`
58
+ - `allow-fetch-nfp-cycles`
59
+ - `allow-publish-nfp-cycle`
60
+ - `allow-update-nfp-cycle`
61
+ - `allow-fetch-nfp-settings`
62
+ - `allow-publish-nfp-settings`
63
+ - `allow-update-nfp-settings`
64
+ - `allow-delete-nfp-data`
65
+ - `allow-publish-virtual-fs`
66
+ - `allow-fetch-virtual-fs`
67
+ - `allow-delete-virtual-fs`
68
+ - `allow-start-nostr-relay`
69
+ - `allow-stop-nostr-relay`
70
+ - `allow-get-nostr-relay-status`
71
+ - `allow-get-nostr-event-counts`
72
+ - `allow-get-nostr-relay-events`
41
73
 
42
74
  ## Permission Table
43
75
 
@@ -48,6 +80,97 @@ Default permissions for tauri-plugin-nostrnative plugin. Enables all commands by
48
80
  </tr>
49
81
 
50
82
 
83
+ <tr>
84
+ <td>
85
+
86
+ `nostrnative:allow-blossom-delete`
87
+
88
+ </td>
89
+ <td>
90
+
91
+ Allows deleting blobs
92
+
93
+ </td>
94
+ </tr>
95
+
96
+ <tr>
97
+ <td>
98
+
99
+ `nostrnative:allow-blossom-list`
100
+
101
+ </td>
102
+ <td>
103
+
104
+ Allows listing blobs
105
+
106
+ </td>
107
+ </tr>
108
+
109
+ <tr>
110
+ <td>
111
+
112
+ `nostrnative:allow-blossom-upload`
113
+
114
+ </td>
115
+ <td>
116
+
117
+ Allows uploading blobs
118
+
119
+ </td>
120
+ </tr>
121
+
122
+ <tr>
123
+ <td>
124
+
125
+ `nostrnative:allow-add-note-to-notebook`
126
+
127
+ </td>
128
+ <td>
129
+
130
+ Enables the add_note_to_notebook command without any pre-configured scope.
131
+
132
+ </td>
133
+ </tr>
134
+
135
+ <tr>
136
+ <td>
137
+
138
+ `nostrnative:deny-add-note-to-notebook`
139
+
140
+ </td>
141
+ <td>
142
+
143
+ Denies the add_note_to_notebook command without any pre-configured scope.
144
+
145
+ </td>
146
+ </tr>
147
+
148
+ <tr>
149
+ <td>
150
+
151
+ `nostrnative:allow-blossom-delete`
152
+
153
+ </td>
154
+ <td>
155
+
156
+ Enables the blossom_delete command without any pre-configured scope.
157
+
158
+ </td>
159
+ </tr>
160
+
161
+ <tr>
162
+ <td>
163
+
164
+ `nostrnative:deny-blossom-delete`
165
+
166
+ </td>
167
+ <td>
168
+
169
+ Denies the blossom_delete command without any pre-configured scope.
170
+
171
+ </td>
172
+ </tr>
173
+
51
174
  <tr>
52
175
  <td>
53
176
 
@@ -56,7 +179,722 @@ Default permissions for tauri-plugin-nostrnative plugin. Enables all commands by
56
179
  </td>
57
180
  <td>
58
181
 
59
- Enables the blossom_get_blob command without any pre-configured scope.
182
+ Enables the blossom_get_blob command without any pre-configured scope.
183
+
184
+ </td>
185
+ </tr>
186
+
187
+ <tr>
188
+ <td>
189
+
190
+ `nostrnative:deny-blossom-get-blob`
191
+
192
+ </td>
193
+ <td>
194
+
195
+ Denies the blossom_get_blob command without any pre-configured scope.
196
+
197
+ </td>
198
+ </tr>
199
+
200
+ <tr>
201
+ <td>
202
+
203
+ `nostrnative:allow-blossom-list`
204
+
205
+ </td>
206
+ <td>
207
+
208
+ Enables the blossom_list command without any pre-configured scope.
209
+
210
+ </td>
211
+ </tr>
212
+
213
+ <tr>
214
+ <td>
215
+
216
+ `nostrnative:deny-blossom-list`
217
+
218
+ </td>
219
+ <td>
220
+
221
+ Denies the blossom_list command without any pre-configured scope.
222
+
223
+ </td>
224
+ </tr>
225
+
226
+ <tr>
227
+ <td>
228
+
229
+ `nostrnative:allow-blossom-mirror`
230
+
231
+ </td>
232
+ <td>
233
+
234
+ Enables the blossom_mirror command without any pre-configured scope.
235
+
236
+ </td>
237
+ </tr>
238
+
239
+ <tr>
240
+ <td>
241
+
242
+ `nostrnative:deny-blossom-mirror`
243
+
244
+ </td>
245
+ <td>
246
+
247
+ Denies the blossom_mirror command without any pre-configured scope.
248
+
249
+ </td>
250
+ </tr>
251
+
252
+ <tr>
253
+ <td>
254
+
255
+ `nostrnative:allow-blossom-upload`
256
+
257
+ </td>
258
+ <td>
259
+
260
+ Enables the blossom_upload command without any pre-configured scope.
261
+
262
+ </td>
263
+ </tr>
264
+
265
+ <tr>
266
+ <td>
267
+
268
+ `nostrnative:deny-blossom-upload`
269
+
270
+ </td>
271
+ <td>
272
+
273
+ Denies the blossom_upload command without any pre-configured scope.
274
+
275
+ </td>
276
+ </tr>
277
+
278
+ <tr>
279
+ <td>
280
+
281
+ `nostrnative:allow-blossom-upload-content`
282
+
283
+ </td>
284
+ <td>
285
+
286
+ Enables the blossom_upload_content command without any pre-configured scope.
287
+
288
+ </td>
289
+ </tr>
290
+
291
+ <tr>
292
+ <td>
293
+
294
+ `nostrnative:deny-blossom-upload-content`
295
+
296
+ </td>
297
+ <td>
298
+
299
+ Denies the blossom_upload_content command without any pre-configured scope.
300
+
301
+ </td>
302
+ </tr>
303
+
304
+ <tr>
305
+ <td>
306
+
307
+ `nostrnative:allow-compare-routstr-prices`
308
+
309
+ </td>
310
+ <td>
311
+
312
+ Enables the compare_routstr_prices command.
313
+
314
+ </td>
315
+ </tr>
316
+
317
+ <tr>
318
+ <td>
319
+
320
+ `nostrnative:allow-create-discovery-event`
321
+
322
+ </td>
323
+ <td>
324
+
325
+ Enables the create_discovery_event command without any pre-configured scope.
326
+
327
+ </td>
328
+ </tr>
329
+
330
+ <tr>
331
+ <td>
332
+
333
+ `nostrnative:deny-create-discovery-event`
334
+
335
+ </td>
336
+ <td>
337
+
338
+ Denies the create_discovery_event command without any pre-configured scope.
339
+
340
+ </td>
341
+ </tr>
342
+
343
+ <tr>
344
+ <td>
345
+
346
+ `nostrnative:allow-create-note`
347
+
348
+ </td>
349
+ <td>
350
+
351
+ Enables the create_note command without any pre-configured scope.
352
+
353
+ </td>
354
+ </tr>
355
+
356
+ <tr>
357
+ <td>
358
+
359
+ `nostrnative:deny-create-note`
360
+
361
+ </td>
362
+ <td>
363
+
364
+ Denies the create_note command without any pre-configured scope.
365
+
366
+ </td>
367
+ </tr>
368
+
369
+ <tr>
370
+ <td>
371
+
372
+ `nostrnative:allow-create-notebook`
373
+
374
+ </td>
375
+ <td>
376
+
377
+ Enables the create_notebook command without any pre-configured scope.
378
+
379
+ </td>
380
+ </tr>
381
+
382
+ <tr>
383
+ <td>
384
+
385
+ `nostrnative:deny-create-notebook`
386
+
387
+ </td>
388
+ <td>
389
+
390
+ Denies the create_notebook command without any pre-configured scope.
391
+
392
+ </td>
393
+ </tr>
394
+
395
+ <tr>
396
+ <td>
397
+
398
+ `nostrnative:allow-decrypt-discovery-event`
399
+
400
+ </td>
401
+ <td>
402
+
403
+ Enables the decrypt_discovery_event command without any pre-configured scope.
404
+
405
+ </td>
406
+ </tr>
407
+
408
+ <tr>
409
+ <td>
410
+
411
+ `nostrnative:deny-decrypt-discovery-event`
412
+
413
+ </td>
414
+ <td>
415
+
416
+ Denies the decrypt_discovery_event command without any pre-configured scope.
417
+
418
+ </td>
419
+ </tr>
420
+
421
+ <tr>
422
+ <td>
423
+
424
+ `nostrnative:allow-decrypt-pns-event`
425
+
426
+ </td>
427
+ <td>
428
+
429
+ Enables the decrypt_pns_event command without any pre-configured scope.
430
+
431
+ </td>
432
+ </tr>
433
+
434
+ <tr>
435
+ <td>
436
+
437
+ `nostrnative:deny-decrypt-pns-event`
438
+
439
+ </td>
440
+ <td>
441
+
442
+ Denies the decrypt_pns_event command without any pre-configured scope.
443
+
444
+ </td>
445
+ </tr>
446
+
447
+ <tr>
448
+ <td>
449
+
450
+ `nostrnative:allow-delete-calendar`
451
+
452
+ </td>
453
+ <td>
454
+
455
+ Enables the delete_calendar command without any pre-configured scope.
456
+
457
+ </td>
458
+ </tr>
459
+
460
+ <tr>
461
+ <td>
462
+
463
+ `nostrnative:deny-delete-calendar`
464
+
465
+ </td>
466
+ <td>
467
+
468
+ Denies the delete_calendar command without any pre-configured scope.
469
+
470
+ </td>
471
+ </tr>
472
+
473
+ <tr>
474
+ <td>
475
+
476
+ `nostrnative:allow-delete-calendar-event`
477
+
478
+ </td>
479
+ <td>
480
+
481
+ Enables the delete_calendar_event command without any pre-configured scope.
482
+
483
+ </td>
484
+ </tr>
485
+
486
+ <tr>
487
+ <td>
488
+
489
+ `nostrnative:deny-delete-calendar-event`
490
+
491
+ </td>
492
+ <td>
493
+
494
+ Denies the delete_calendar_event command without any pre-configured scope.
495
+
496
+ </td>
497
+ </tr>
498
+
499
+ <tr>
500
+ <td>
501
+
502
+ `nostrnative:allow-delete-chat-messages`
503
+
504
+ </td>
505
+ <td>
506
+
507
+ Enables the delete_chat_messages command without any pre-configured scope.
508
+
509
+ </td>
510
+ </tr>
511
+
512
+ <tr>
513
+ <td>
514
+
515
+ `nostrnative:deny-delete-chat-messages`
516
+
517
+ </td>
518
+ <td>
519
+
520
+ Denies the delete_chat_messages command without any pre-configured scope.
521
+
522
+ </td>
523
+ </tr>
524
+
525
+ <tr>
526
+ <td>
527
+
528
+ `nostrnative:allow-delete-nfp-data`
529
+
530
+ </td>
531
+ <td>
532
+
533
+ Enables the delete_nfp_data command.
534
+
535
+ </td>
536
+ </tr>
537
+
538
+ <tr>
539
+ <td>
540
+
541
+ `nostrnative:deny-delete-nfp-data`
542
+
543
+ </td>
544
+ <td>
545
+
546
+ Denies the delete_nfp_data command.
547
+
548
+ </td>
549
+ </tr>
550
+
551
+ <tr>
552
+ <td>
553
+
554
+ `nostrnative:allow-delete-note`
555
+
556
+ </td>
557
+ <td>
558
+
559
+ Enables the delete_note command without any pre-configured scope.
560
+
561
+ </td>
562
+ </tr>
563
+
564
+ <tr>
565
+ <td>
566
+
567
+ `nostrnative:deny-delete-note`
568
+
569
+ </td>
570
+ <td>
571
+
572
+ Denies the delete_note command without any pre-configured scope.
573
+
574
+ </td>
575
+ </tr>
576
+
577
+ <tr>
578
+ <td>
579
+
580
+ `nostrnative:allow-delete-notebook`
581
+
582
+ </td>
583
+ <td>
584
+
585
+ Enables the delete_notebook command without any pre-configured scope.
586
+
587
+ </td>
588
+ </tr>
589
+
590
+ <tr>
591
+ <td>
592
+
593
+ `nostrnative:deny-delete-notebook`
594
+
595
+ </td>
596
+ <td>
597
+
598
+ Denies the delete_notebook command without any pre-configured scope.
599
+
600
+ </td>
601
+ </tr>
602
+
603
+ <tr>
604
+ <td>
605
+
606
+ `nostrnative:allow-delete-virtual-fs`
607
+
608
+ </td>
609
+ <td>
610
+
611
+ Enables the delete_virtual_fs command without any pre-configured scope.
612
+
613
+ </td>
614
+ </tr>
615
+
616
+ <tr>
617
+ <td>
618
+
619
+ `nostrnative:deny-delete-virtual-fs`
620
+
621
+ </td>
622
+ <td>
623
+
624
+ Denies the delete_virtual_fs command without any pre-configured scope.
625
+
626
+ </td>
627
+ </tr>
628
+
629
+ <tr>
630
+ <td>
631
+
632
+ `nostrnative:allow-derive-pns-keys`
633
+
634
+ </td>
635
+ <td>
636
+
637
+ Enables the derive_pns_keys command without any pre-configured scope.
638
+
639
+ </td>
640
+ </tr>
641
+
642
+ <tr>
643
+ <td>
644
+
645
+ `nostrnative:deny-derive-pns-keys`
646
+
647
+ </td>
648
+ <td>
649
+
650
+ Denies the derive_pns_keys command without any pre-configured scope.
651
+
652
+ </td>
653
+ </tr>
654
+
655
+ <tr>
656
+ <td>
657
+
658
+ `nostrnative:allow-discover-routstr-providers`
659
+
660
+ </td>
661
+ <td>
662
+
663
+ Enables the discover_routstr_providers command.
664
+
665
+ </td>
666
+ </tr>
667
+
668
+ <tr>
669
+ <td>
670
+
671
+ `nostrnative:allow-fetch-bookmarks`
672
+
673
+ </td>
674
+ <td>
675
+
676
+ Enables the fetch_bookmarks command without any pre-configured scope.
677
+
678
+ </td>
679
+ </tr>
680
+
681
+ <tr>
682
+ <td>
683
+
684
+ `nostrnative:deny-fetch-bookmarks`
685
+
686
+ </td>
687
+ <td>
688
+
689
+ Denies the fetch_bookmarks command without any pre-configured scope.
690
+
691
+ </td>
692
+ </tr>
693
+
694
+ <tr>
695
+ <td>
696
+
697
+ `nostrnative:allow-fetch-calendar-contact-lists`
698
+
699
+ </td>
700
+ <td>
701
+
702
+ Enables the fetch_calendar_contact_lists command without any pre-configured scope.
703
+
704
+ </td>
705
+ </tr>
706
+
707
+ <tr>
708
+ <td>
709
+
710
+ `nostrnative:deny-fetch-calendar-contact-lists`
711
+
712
+ </td>
713
+ <td>
714
+
715
+ Denies the fetch_calendar_contact_lists command without any pre-configured scope.
716
+
717
+ </td>
718
+ </tr>
719
+
720
+ <tr>
721
+ <td>
722
+
723
+ `nostrnative:allow-fetch-calendar-events`
724
+
725
+ </td>
726
+ <td>
727
+
728
+ Enables the fetch_calendar_events command without any pre-configured scope.
729
+
730
+ </td>
731
+ </tr>
732
+
733
+ <tr>
734
+ <td>
735
+
736
+ `nostrnative:deny-fetch-calendar-events`
737
+
738
+ </td>
739
+ <td>
740
+
741
+ Denies the fetch_calendar_events command without any pre-configured scope.
742
+
743
+ </td>
744
+ </tr>
745
+
746
+ <tr>
747
+ <td>
748
+
749
+ `nostrnative:allow-fetch-calendars`
750
+
751
+ </td>
752
+ <td>
753
+
754
+ Enables the fetch_calendars command without any pre-configured scope.
755
+
756
+ </td>
757
+ </tr>
758
+
759
+ <tr>
760
+ <td>
761
+
762
+ `nostrnative:deny-fetch-calendars`
763
+
764
+ </td>
765
+ <td>
766
+
767
+ Denies the fetch_calendars command without any pre-configured scope.
768
+
769
+ </td>
770
+ </tr>
771
+
772
+ <tr>
773
+ <td>
774
+
775
+ `nostrnative:allow-fetch-contact-list`
776
+
777
+ </td>
778
+ <td>
779
+
780
+ Enables the fetch_contact_list command without any pre-configured scope.
781
+
782
+ </td>
783
+ </tr>
784
+
785
+ <tr>
786
+ <td>
787
+
788
+ `nostrnative:deny-fetch-contact-list`
789
+
790
+ </td>
791
+ <td>
792
+
793
+ Denies the fetch_contact_list command without any pre-configured scope.
794
+
795
+ </td>
796
+ </tr>
797
+
798
+ <tr>
799
+ <td>
800
+
801
+ `nostrnative:allow-fetch-discovery-events`
802
+
803
+ </td>
804
+ <td>
805
+
806
+ Enables the fetch_discovery_events command without any pre-configured scope.
807
+
808
+ </td>
809
+ </tr>
810
+
811
+ <tr>
812
+ <td>
813
+
814
+ `nostrnative:deny-fetch-discovery-events`
815
+
816
+ </td>
817
+ <td>
818
+
819
+ Denies the fetch_discovery_events command without any pre-configured scope.
820
+
821
+ </td>
822
+ </tr>
823
+
824
+ <tr>
825
+ <td>
826
+
827
+ `nostrnative:allow-fetch-event-details`
828
+
829
+ </td>
830
+ <td>
831
+
832
+ Enables the fetch_event_details command without any pre-configured scope.
833
+
834
+ </td>
835
+ </tr>
836
+
837
+ <tr>
838
+ <td>
839
+
840
+ `nostrnative:deny-fetch-event-details`
841
+
842
+ </td>
843
+ <td>
844
+
845
+ Denies the fetch_event_details command without any pre-configured scope.
846
+
847
+ </td>
848
+ </tr>
849
+
850
+ <tr>
851
+ <td>
852
+
853
+ `nostrnative:allow-fetch-nfp-cycles`
854
+
855
+ </td>
856
+ <td>
857
+
858
+ Enables the fetch_nfp_cycles command.
859
+
860
+ </td>
861
+ </tr>
862
+
863
+ <tr>
864
+ <td>
865
+
866
+ `nostrnative:deny-fetch-nfp-cycles`
867
+
868
+ </td>
869
+ <td>
870
+
871
+ Denies the fetch_nfp_cycles command.
872
+
873
+ </td>
874
+ </tr>
875
+
876
+ <tr>
877
+ <td>
878
+
879
+ `nostrnative:allow-fetch-nfp-observations`
880
+
881
+ </td>
882
+ <td>
883
+
884
+ Enables the fetch_nfp_observations command.
885
+
886
+ </td>
887
+ </tr>
888
+
889
+ <tr>
890
+ <td>
891
+
892
+ `nostrnative:deny-fetch-nfp-observations`
893
+
894
+ </td>
895
+ <td>
896
+
897
+ Denies the fetch_nfp_observations command.
60
898
 
61
899
  </td>
62
900
  </tr>
@@ -64,12 +902,12 @@ Enables the blossom_get_blob command without any pre-configured scope.
64
902
  <tr>
65
903
  <td>
66
904
 
67
- `nostrnative:deny-blossom-get-blob`
905
+ `nostrnative:allow-fetch-nfp-settings`
68
906
 
69
907
  </td>
70
908
  <td>
71
909
 
72
- Denies the blossom_get_blob command without any pre-configured scope.
910
+ Enables the fetch_nfp_settings command.
73
911
 
74
912
  </td>
75
913
  </tr>
@@ -77,12 +915,12 @@ Denies the blossom_get_blob command without any pre-configured scope.
77
915
  <tr>
78
916
  <td>
79
917
 
80
- `nostrnative:allow-blossom-mirror`
918
+ `nostrnative:deny-fetch-nfp-settings`
81
919
 
82
920
  </td>
83
921
  <td>
84
922
 
85
- Enables the blossom_mirror command without any pre-configured scope.
923
+ Denies the fetch_nfp_settings command.
86
924
 
87
925
  </td>
88
926
  </tr>
@@ -90,12 +928,12 @@ Enables the blossom_mirror command without any pre-configured scope.
90
928
  <tr>
91
929
  <td>
92
930
 
93
- `nostrnative:deny-blossom-mirror`
931
+ `nostrnative:allow-fetch-notebooks`
94
932
 
95
933
  </td>
96
934
  <td>
97
935
 
98
- Denies the blossom_mirror command without any pre-configured scope.
936
+ Enables the fetch_notebooks command without any pre-configured scope.
99
937
 
100
938
  </td>
101
939
  </tr>
@@ -103,12 +941,12 @@ Denies the blossom_mirror command without any pre-configured scope.
103
941
  <tr>
104
942
  <td>
105
943
 
106
- `nostrnative:allow-blossom-upload`
944
+ `nostrnative:deny-fetch-notebooks`
107
945
 
108
946
  </td>
109
947
  <td>
110
948
 
111
- Enables the blossom_upload command without any pre-configured scope.
949
+ Denies the fetch_notebooks command without any pre-configured scope.
112
950
 
113
951
  </td>
114
952
  </tr>
@@ -116,12 +954,12 @@ Enables the blossom_upload command without any pre-configured scope.
116
954
  <tr>
117
955
  <td>
118
956
 
119
- `nostrnative:deny-blossom-upload`
957
+ `nostrnative:allow-fetch-notes`
120
958
 
121
959
  </td>
122
960
  <td>
123
961
 
124
- Denies the blossom_upload command without any pre-configured scope.
962
+ Enables the fetch_notes command without any pre-configured scope.
125
963
 
126
964
  </td>
127
965
  </tr>
@@ -129,12 +967,12 @@ Denies the blossom_upload command without any pre-configured scope.
129
967
  <tr>
130
968
  <td>
131
969
 
132
- `nostrnative:allow-blossom-upload-content`
970
+ `nostrnative:deny-fetch-notes`
133
971
 
134
972
  </td>
135
973
  <td>
136
974
 
137
- Enables the blossom_upload_content command without any pre-configured scope.
975
+ Denies the fetch_notes command without any pre-configured scope.
138
976
 
139
977
  </td>
140
978
  </tr>
@@ -142,12 +980,12 @@ Enables the blossom_upload_content command without any pre-configured scope.
142
980
  <tr>
143
981
  <td>
144
982
 
145
- `nostrnative:deny-blossom-upload-content`
983
+ `nostrnative:allow-fetch-pns-events`
146
984
 
147
985
  </td>
148
986
  <td>
149
987
 
150
- Denies the blossom_upload_content command without any pre-configured scope.
988
+ Enables the fetch_pns_events command without any pre-configured scope.
151
989
 
152
990
  </td>
153
991
  </tr>
@@ -155,12 +993,12 @@ Denies the blossom_upload_content command without any pre-configured scope.
155
993
  <tr>
156
994
  <td>
157
995
 
158
- `nostrnative:allow-create-discovery-event`
996
+ `nostrnative:deny-fetch-pns-events`
159
997
 
160
998
  </td>
161
999
  <td>
162
1000
 
163
- Enables the create_discovery_event command without any pre-configured scope.
1001
+ Denies the fetch_pns_events command without any pre-configured scope.
164
1002
 
165
1003
  </td>
166
1004
  </tr>
@@ -168,12 +1006,12 @@ Enables the create_discovery_event command without any pre-configured scope.
168
1006
  <tr>
169
1007
  <td>
170
1008
 
171
- `nostrnative:deny-create-discovery-event`
1009
+ `nostrnative:allow-fetch-profiles`
172
1010
 
173
1011
  </td>
174
1012
  <td>
175
1013
 
176
- Denies the create_discovery_event command without any pre-configured scope.
1014
+ Enables the fetch_profiles command without any pre-configured scope.
177
1015
 
178
1016
  </td>
179
1017
  </tr>
@@ -181,12 +1019,12 @@ Denies the create_discovery_event command without any pre-configured scope.
181
1019
  <tr>
182
1020
  <td>
183
1021
 
184
- `nostrnative:allow-decrypt-discovery-event`
1022
+ `nostrnative:deny-fetch-profiles`
185
1023
 
186
1024
  </td>
187
1025
  <td>
188
1026
 
189
- Enables the decrypt_discovery_event command without any pre-configured scope.
1027
+ Denies the fetch_profiles command without any pre-configured scope.
190
1028
 
191
1029
  </td>
192
1030
  </tr>
@@ -194,12 +1032,12 @@ Enables the decrypt_discovery_event command without any pre-configured scope.
194
1032
  <tr>
195
1033
  <td>
196
1034
 
197
- `nostrnative:deny-decrypt-discovery-event`
1035
+ `nostrnative:allow-fetch-received-rsvps`
198
1036
 
199
1037
  </td>
200
1038
  <td>
201
1039
 
202
- Denies the decrypt_discovery_event command without any pre-configured scope.
1040
+ Enables the fetch_received_rsvps command without any pre-configured scope.
203
1041
 
204
1042
  </td>
205
1043
  </tr>
@@ -207,12 +1045,12 @@ Denies the decrypt_discovery_event command without any pre-configured scope.
207
1045
  <tr>
208
1046
  <td>
209
1047
 
210
- `nostrnative:allow-decrypt-pns-event`
1048
+ `nostrnative:deny-fetch-received-rsvps`
211
1049
 
212
1050
  </td>
213
1051
  <td>
214
1052
 
215
- Enables the decrypt_pns_event command without any pre-configured scope.
1053
+ Denies the fetch_received_rsvps command without any pre-configured scope.
216
1054
 
217
1055
  </td>
218
1056
  </tr>
@@ -220,12 +1058,12 @@ Enables the decrypt_pns_event command without any pre-configured scope.
220
1058
  <tr>
221
1059
  <td>
222
1060
 
223
- `nostrnative:deny-decrypt-pns-event`
1061
+ `nostrnative:allow-fetch-routstr-models`
224
1062
 
225
1063
  </td>
226
1064
  <td>
227
1065
 
228
- Denies the decrypt_pns_event command without any pre-configured scope.
1066
+ Enables the fetch_routstr_models command.
229
1067
 
230
1068
  </td>
231
1069
  </tr>
@@ -233,12 +1071,12 @@ Denies the decrypt_pns_event command without any pre-configured scope.
233
1071
  <tr>
234
1072
  <td>
235
1073
 
236
- `nostrnative:allow-delete-calendar`
1074
+ `nostrnative:allow-fetch-rsvps`
237
1075
 
238
1076
  </td>
239
1077
  <td>
240
1078
 
241
- Enables the delete_calendar command without any pre-configured scope.
1079
+ Enables the fetch_rsvps command without any pre-configured scope.
242
1080
 
243
1081
  </td>
244
1082
  </tr>
@@ -246,12 +1084,12 @@ Enables the delete_calendar command without any pre-configured scope.
246
1084
  <tr>
247
1085
  <td>
248
1086
 
249
- `nostrnative:deny-delete-calendar`
1087
+ `nostrnative:deny-fetch-rsvps`
250
1088
 
251
1089
  </td>
252
1090
  <td>
253
1091
 
254
- Denies the delete_calendar command without any pre-configured scope.
1092
+ Denies the fetch_rsvps command without any pre-configured scope.
255
1093
 
256
1094
  </td>
257
1095
  </tr>
@@ -259,12 +1097,12 @@ Denies the delete_calendar command without any pre-configured scope.
259
1097
  <tr>
260
1098
  <td>
261
1099
 
262
- `nostrnative:allow-delete-calendar-event`
1100
+ `nostrnative:allow-fetch-user-rsvps`
263
1101
 
264
1102
  </td>
265
1103
  <td>
266
1104
 
267
- Enables the delete_calendar_event command without any pre-configured scope.
1105
+ Enables the fetch_user_rsvps command without any pre-configured scope.
268
1106
 
269
1107
  </td>
270
1108
  </tr>
@@ -272,12 +1110,12 @@ Enables the delete_calendar_event command without any pre-configured scope.
272
1110
  <tr>
273
1111
  <td>
274
1112
 
275
- `nostrnative:deny-delete-calendar-event`
1113
+ `nostrnative:deny-fetch-user-rsvps`
276
1114
 
277
1115
  </td>
278
1116
  <td>
279
1117
 
280
- Denies the delete_calendar_event command without any pre-configured scope.
1118
+ Denies the fetch_user_rsvps command without any pre-configured scope.
281
1119
 
282
1120
  </td>
283
1121
  </tr>
@@ -285,12 +1123,12 @@ Denies the delete_calendar_event command without any pre-configured scope.
285
1123
  <tr>
286
1124
  <td>
287
1125
 
288
- `nostrnative:allow-delete-chat-messages`
1126
+ `nostrnative:allow-fetch-virtual-fs`
289
1127
 
290
1128
  </td>
291
1129
  <td>
292
1130
 
293
- Enables the delete_chat_messages command without any pre-configured scope.
1131
+ Enables the fetch_virtual_fs command without any pre-configured scope.
294
1132
 
295
1133
  </td>
296
1134
  </tr>
@@ -298,12 +1136,12 @@ Enables the delete_chat_messages command without any pre-configured scope.
298
1136
  <tr>
299
1137
  <td>
300
1138
 
301
- `nostrnative:deny-delete-chat-messages`
1139
+ `nostrnative:deny-fetch-virtual-fs`
302
1140
 
303
1141
  </td>
304
1142
  <td>
305
1143
 
306
- Denies the delete_chat_messages command without any pre-configured scope.
1144
+ Denies the fetch_virtual_fs command without any pre-configured scope.
307
1145
 
308
1146
  </td>
309
1147
  </tr>
@@ -311,12 +1149,12 @@ Denies the delete_chat_messages command without any pre-configured scope.
311
1149
  <tr>
312
1150
  <td>
313
1151
 
314
- `nostrnative:allow-derive-pns-keys`
1152
+ `nostrnative:allow-generate-new-nsec`
315
1153
 
316
1154
  </td>
317
1155
  <td>
318
1156
 
319
- Enables the derive_pns_keys command without any pre-configured scope.
1157
+ Enables the generate_new_nsec command without any pre-configured scope.
320
1158
 
321
1159
  </td>
322
1160
  </tr>
@@ -324,12 +1162,12 @@ Enables the derive_pns_keys command without any pre-configured scope.
324
1162
  <tr>
325
1163
  <td>
326
1164
 
327
- `nostrnative:deny-derive-pns-keys`
1165
+ `nostrnative:deny-generate-new-nsec`
328
1166
 
329
1167
  </td>
330
1168
  <td>
331
1169
 
332
- Denies the derive_pns_keys command without any pre-configured scope.
1170
+ Denies the generate_new_nsec command without any pre-configured scope.
333
1171
 
334
1172
  </td>
335
1173
  </tr>
@@ -337,12 +1175,12 @@ Denies the derive_pns_keys command without any pre-configured scope.
337
1175
  <tr>
338
1176
  <td>
339
1177
 
340
- `nostrnative:allow-fetch-bookmarks`
1178
+ `nostrnative:allow-get-nostr-event-counts`
341
1179
 
342
1180
  </td>
343
1181
  <td>
344
1182
 
345
- Enables the fetch_bookmarks command without any pre-configured scope.
1183
+ Enables the get_nostr_event_counts command
346
1184
 
347
1185
  </td>
348
1186
  </tr>
@@ -350,12 +1188,12 @@ Enables the fetch_bookmarks command without any pre-configured scope.
350
1188
  <tr>
351
1189
  <td>
352
1190
 
353
- `nostrnative:deny-fetch-bookmarks`
1191
+ `nostrnative:allow-get-nostr-relay-events`
354
1192
 
355
1193
  </td>
356
1194
  <td>
357
1195
 
358
- Denies the fetch_bookmarks command without any pre-configured scope.
1196
+ Enables the get_nostr_relay_events command.
359
1197
 
360
1198
  </td>
361
1199
  </tr>
@@ -363,12 +1201,12 @@ Denies the fetch_bookmarks command without any pre-configured scope.
363
1201
  <tr>
364
1202
  <td>
365
1203
 
366
- `nostrnative:allow-fetch-calendar-events`
1204
+ `nostrnative:allow-get-nostr-relay-status`
367
1205
 
368
1206
  </td>
369
1207
  <td>
370
1208
 
371
- Enables the fetch_calendar_events command without any pre-configured scope.
1209
+ Enables the get_nostr_relay_status command
372
1210
 
373
1211
  </td>
374
1212
  </tr>
@@ -376,12 +1214,12 @@ Enables the fetch_calendar_events command without any pre-configured scope.
376
1214
  <tr>
377
1215
  <td>
378
1216
 
379
- `nostrnative:deny-fetch-calendar-events`
1217
+ `nostrnative:allow-hex-to-npub`
380
1218
 
381
1219
  </td>
382
1220
  <td>
383
1221
 
384
- Denies the fetch_calendar_events command without any pre-configured scope.
1222
+ Enables the hex_to_npub command without any pre-configured scope.
385
1223
 
386
1224
  </td>
387
1225
  </tr>
@@ -389,12 +1227,12 @@ Denies the fetch_calendar_events command without any pre-configured scope.
389
1227
  <tr>
390
1228
  <td>
391
1229
 
392
- `nostrnative:allow-fetch-calendars`
1230
+ `nostrnative:deny-hex-to-npub`
393
1231
 
394
1232
  </td>
395
1233
  <td>
396
1234
 
397
- Enables the fetch_calendars command without any pre-configured scope.
1235
+ Denies the hex_to_npub command without any pre-configured scope.
398
1236
 
399
1237
  </td>
400
1238
  </tr>
@@ -402,12 +1240,12 @@ Enables the fetch_calendars command without any pre-configured scope.
402
1240
  <tr>
403
1241
  <td>
404
1242
 
405
- `nostrnative:deny-fetch-calendars`
1243
+ `nostrnative:allow-npub-to-hex`
406
1244
 
407
1245
  </td>
408
1246
  <td>
409
1247
 
410
- Denies the fetch_calendars command without any pre-configured scope.
1248
+ Enables the npub_to_hex command without any pre-configured scope.
411
1249
 
412
1250
  </td>
413
1251
  </tr>
@@ -415,12 +1253,12 @@ Denies the fetch_calendars command without any pre-configured scope.
415
1253
  <tr>
416
1254
  <td>
417
1255
 
418
- `nostrnative:allow-fetch-contact-list`
1256
+ `nostrnative:deny-npub-to-hex`
419
1257
 
420
1258
  </td>
421
1259
  <td>
422
1260
 
423
- Enables the fetch_contact_list command without any pre-configured scope.
1261
+ Denies the npub_to_hex command without any pre-configured scope.
424
1262
 
425
1263
  </td>
426
1264
  </tr>
@@ -428,12 +1266,12 @@ Enables the fetch_contact_list command without any pre-configured scope.
428
1266
  <tr>
429
1267
  <td>
430
1268
 
431
- `nostrnative:deny-fetch-contact-list`
1269
+ `nostrnative:allow-parse-pubkey`
432
1270
 
433
1271
  </td>
434
1272
  <td>
435
1273
 
436
- Denies the fetch_contact_list command without any pre-configured scope.
1274
+ Enables the parse_pubkey command without any pre-configured scope.
437
1275
 
438
1276
  </td>
439
1277
  </tr>
@@ -441,12 +1279,12 @@ Denies the fetch_contact_list command without any pre-configured scope.
441
1279
  <tr>
442
1280
  <td>
443
1281
 
444
- `nostrnative:allow-fetch-discovery-events`
1282
+ `nostrnative:deny-parse-pubkey`
445
1283
 
446
1284
  </td>
447
1285
  <td>
448
1286
 
449
- Enables the fetch_discovery_events command without any pre-configured scope.
1287
+ Denies the parse_pubkey command without any pre-configured scope.
450
1288
 
451
1289
  </td>
452
1290
  </tr>
@@ -454,12 +1292,12 @@ Enables the fetch_discovery_events command without any pre-configured scope.
454
1292
  <tr>
455
1293
  <td>
456
1294
 
457
- `nostrnative:deny-fetch-discovery-events`
1295
+ `nostrnative:allow-publish-batch-calendar-events`
458
1296
 
459
1297
  </td>
460
1298
  <td>
461
1299
 
462
- Denies the fetch_discovery_events command without any pre-configured scope.
1300
+ Enables the publish_batch_calendar_events command without any pre-configured scope.
463
1301
 
464
1302
  </td>
465
1303
  </tr>
@@ -467,12 +1305,12 @@ Denies the fetch_discovery_events command without any pre-configured scope.
467
1305
  <tr>
468
1306
  <td>
469
1307
 
470
- `nostrnative:allow-fetch-event-details`
1308
+ `nostrnative:deny-publish-batch-calendar-events`
471
1309
 
472
1310
  </td>
473
1311
  <td>
474
1312
 
475
- Enables the fetch_event_details command without any pre-configured scope.
1313
+ Denies the publish_batch_calendar_events command without any pre-configured scope.
476
1314
 
477
1315
  </td>
478
1316
  </tr>
@@ -480,12 +1318,12 @@ Enables the fetch_event_details command without any pre-configured scope.
480
1318
  <tr>
481
1319
  <td>
482
1320
 
483
- `nostrnative:deny-fetch-event-details`
1321
+ `nostrnative:allow-publish-calendar`
484
1322
 
485
1323
  </td>
486
1324
  <td>
487
1325
 
488
- Denies the fetch_event_details command without any pre-configured scope.
1326
+ Enables the publish_calendar command without any pre-configured scope.
489
1327
 
490
1328
  </td>
491
1329
  </tr>
@@ -493,12 +1331,12 @@ Denies the fetch_event_details command without any pre-configured scope.
493
1331
  <tr>
494
1332
  <td>
495
1333
 
496
- `nostrnative:allow-fetch-pns-events`
1334
+ `nostrnative:deny-publish-calendar`
497
1335
 
498
1336
  </td>
499
1337
  <td>
500
1338
 
501
- Enables the fetch_pns_events command without any pre-configured scope.
1339
+ Denies the publish_calendar command without any pre-configured scope.
502
1340
 
503
1341
  </td>
504
1342
  </tr>
@@ -506,12 +1344,12 @@ Enables the fetch_pns_events command without any pre-configured scope.
506
1344
  <tr>
507
1345
  <td>
508
1346
 
509
- `nostrnative:deny-fetch-pns-events`
1347
+ `nostrnative:allow-publish-calendar-contact-list`
510
1348
 
511
1349
  </td>
512
1350
  <td>
513
1351
 
514
- Denies the fetch_pns_events command without any pre-configured scope.
1352
+ Enables the publish_calendar_contact_list command without any pre-configured scope.
515
1353
 
516
1354
  </td>
517
1355
  </tr>
@@ -519,12 +1357,12 @@ Denies the fetch_pns_events command without any pre-configured scope.
519
1357
  <tr>
520
1358
  <td>
521
1359
 
522
- `nostrnative:allow-fetch-profiles`
1360
+ `nostrnative:deny-publish-calendar-contact-list`
523
1361
 
524
1362
  </td>
525
1363
  <td>
526
1364
 
527
- Enables the fetch_profiles command without any pre-configured scope.
1365
+ Denies the publish_calendar_contact_list command without any pre-configured scope.
528
1366
 
529
1367
  </td>
530
1368
  </tr>
@@ -532,12 +1370,12 @@ Enables the fetch_profiles command without any pre-configured scope.
532
1370
  <tr>
533
1371
  <td>
534
1372
 
535
- `nostrnative:deny-fetch-profiles`
1373
+ `nostrnative:allow-publish-calendar-event`
536
1374
 
537
1375
  </td>
538
1376
  <td>
539
1377
 
540
- Denies the fetch_profiles command without any pre-configured scope.
1378
+ Enables the publish_calendar_event command without any pre-configured scope.
541
1379
 
542
1380
  </td>
543
1381
  </tr>
@@ -545,12 +1383,12 @@ Denies the fetch_profiles command without any pre-configured scope.
545
1383
  <tr>
546
1384
  <td>
547
1385
 
548
- `nostrnative:allow-fetch-received-rsvps`
1386
+ `nostrnative:deny-publish-calendar-event`
549
1387
 
550
1388
  </td>
551
1389
  <td>
552
1390
 
553
- Enables the fetch_received_rsvps command without any pre-configured scope.
1391
+ Denies the publish_calendar_event command without any pre-configured scope.
554
1392
 
555
1393
  </td>
556
1394
  </tr>
@@ -558,12 +1396,12 @@ Enables the fetch_received_rsvps command without any pre-configured scope.
558
1396
  <tr>
559
1397
  <td>
560
1398
 
561
- `nostrnative:deny-fetch-received-rsvps`
1399
+ `nostrnative:allow-publish-chat-message`
562
1400
 
563
1401
  </td>
564
1402
  <td>
565
1403
 
566
- Denies the fetch_received_rsvps command without any pre-configured scope.
1404
+ Enables the publish_chat_message command without any pre-configured scope.
567
1405
 
568
1406
  </td>
569
1407
  </tr>
@@ -571,12 +1409,12 @@ Denies the fetch_received_rsvps command without any pre-configured scope.
571
1409
  <tr>
572
1410
  <td>
573
1411
 
574
- `nostrnative:allow-fetch-rsvps`
1412
+ `nostrnative:deny-publish-chat-message`
575
1413
 
576
1414
  </td>
577
1415
  <td>
578
1416
 
579
- Enables the fetch_rsvps command without any pre-configured scope.
1417
+ Denies the publish_chat_message command without any pre-configured scope.
580
1418
 
581
1419
  </td>
582
1420
  </tr>
@@ -584,12 +1422,12 @@ Enables the fetch_rsvps command without any pre-configured scope.
584
1422
  <tr>
585
1423
  <td>
586
1424
 
587
- `nostrnative:deny-fetch-rsvps`
1425
+ `nostrnative:allow-publish-nfp-cycle`
588
1426
 
589
1427
  </td>
590
1428
  <td>
591
1429
 
592
- Denies the fetch_rsvps command without any pre-configured scope.
1430
+ Enables the publish_nfp_cycle command.
593
1431
 
594
1432
  </td>
595
1433
  </tr>
@@ -597,12 +1435,12 @@ Denies the fetch_rsvps command without any pre-configured scope.
597
1435
  <tr>
598
1436
  <td>
599
1437
 
600
- `nostrnative:allow-fetch-user-rsvps`
1438
+ `nostrnative:deny-publish-nfp-cycle`
601
1439
 
602
1440
  </td>
603
1441
  <td>
604
1442
 
605
- Enables the fetch_user_rsvps command without any pre-configured scope.
1443
+ Denies the publish_nfp_cycle command.
606
1444
 
607
1445
  </td>
608
1446
  </tr>
@@ -610,12 +1448,12 @@ Enables the fetch_user_rsvps command without any pre-configured scope.
610
1448
  <tr>
611
1449
  <td>
612
1450
 
613
- `nostrnative:deny-fetch-user-rsvps`
1451
+ `nostrnative:allow-publish-nfp-observation`
614
1452
 
615
1453
  </td>
616
1454
  <td>
617
1455
 
618
- Denies the fetch_user_rsvps command without any pre-configured scope.
1456
+ Enables the publish_nfp_observation command.
619
1457
 
620
1458
  </td>
621
1459
  </tr>
@@ -623,12 +1461,12 @@ Denies the fetch_user_rsvps command without any pre-configured scope.
623
1461
  <tr>
624
1462
  <td>
625
1463
 
626
- `nostrnative:allow-generate-new-nsec`
1464
+ `nostrnative:deny-publish-nfp-observation`
627
1465
 
628
1466
  </td>
629
1467
  <td>
630
1468
 
631
- Enables the generate_new_nsec command without any pre-configured scope.
1469
+ Denies the publish_nfp_observation command.
632
1470
 
633
1471
  </td>
634
1472
  </tr>
@@ -636,12 +1474,12 @@ Enables the generate_new_nsec command without any pre-configured scope.
636
1474
  <tr>
637
1475
  <td>
638
1476
 
639
- `nostrnative:deny-generate-new-nsec`
1477
+ `nostrnative:allow-publish-nfp-settings`
640
1478
 
641
1479
  </td>
642
1480
  <td>
643
1481
 
644
- Denies the generate_new_nsec command without any pre-configured scope.
1482
+ Enables the publish_nfp_settings command.
645
1483
 
646
1484
  </td>
647
1485
  </tr>
@@ -649,12 +1487,12 @@ Denies the generate_new_nsec command without any pre-configured scope.
649
1487
  <tr>
650
1488
  <td>
651
1489
 
652
- `nostrnative:allow-parse-pubkey`
1490
+ `nostrnative:deny-publish-nfp-settings`
653
1491
 
654
1492
  </td>
655
1493
  <td>
656
1494
 
657
- Enables the parse_pubkey command without any pre-configured scope.
1495
+ Denies the publish_nfp_settings command.
658
1496
 
659
1497
  </td>
660
1498
  </tr>
@@ -662,12 +1500,12 @@ Enables the parse_pubkey command without any pre-configured scope.
662
1500
  <tr>
663
1501
  <td>
664
1502
 
665
- `nostrnative:deny-parse-pubkey`
1503
+ `nostrnative:allow-publish-rsvp`
666
1504
 
667
1505
  </td>
668
1506
  <td>
669
1507
 
670
- Denies the parse_pubkey command without any pre-configured scope.
1508
+ Enables the publish_rsvp command without any pre-configured scope.
671
1509
 
672
1510
  </td>
673
1511
  </tr>
@@ -675,12 +1513,12 @@ Denies the parse_pubkey command without any pre-configured scope.
675
1513
  <tr>
676
1514
  <td>
677
1515
 
678
- `nostrnative:allow-publish-batch-calendar-events`
1516
+ `nostrnative:deny-publish-rsvp`
679
1517
 
680
1518
  </td>
681
1519
  <td>
682
1520
 
683
- Enables the publish_batch_calendar_events command without any pre-configured scope.
1521
+ Denies the publish_rsvp command without any pre-configured scope.
684
1522
 
685
1523
  </td>
686
1524
  </tr>
@@ -688,12 +1526,12 @@ Enables the publish_batch_calendar_events command without any pre-configured sco
688
1526
  <tr>
689
1527
  <td>
690
1528
 
691
- `nostrnative:deny-publish-batch-calendar-events`
1529
+ `nostrnative:allow-publish-virtual-fs`
692
1530
 
693
1531
  </td>
694
1532
  <td>
695
1533
 
696
- Denies the publish_batch_calendar_events command without any pre-configured scope.
1534
+ Enables the publish_virtual_fs command without any pre-configured scope.
697
1535
 
698
1536
  </td>
699
1537
  </tr>
@@ -701,12 +1539,12 @@ Denies the publish_batch_calendar_events command without any pre-configured scop
701
1539
  <tr>
702
1540
  <td>
703
1541
 
704
- `nostrnative:allow-publish-calendar`
1542
+ `nostrnative:deny-publish-virtual-fs`
705
1543
 
706
1544
  </td>
707
1545
  <td>
708
1546
 
709
- Enables the publish_calendar command without any pre-configured scope.
1547
+ Denies the publish_virtual_fs command without any pre-configured scope.
710
1548
 
711
1549
  </td>
712
1550
  </tr>
@@ -714,12 +1552,12 @@ Enables the publish_calendar command without any pre-configured scope.
714
1552
  <tr>
715
1553
  <td>
716
1554
 
717
- `nostrnative:deny-publish-calendar`
1555
+ `nostrnative:allow-remove-bookmark`
718
1556
 
719
1557
  </td>
720
1558
  <td>
721
1559
 
722
- Denies the publish_calendar command without any pre-configured scope.
1560
+ Enables the remove_bookmark command without any pre-configured scope.
723
1561
 
724
1562
  </td>
725
1563
  </tr>
@@ -727,12 +1565,12 @@ Denies the publish_calendar command without any pre-configured scope.
727
1565
  <tr>
728
1566
  <td>
729
1567
 
730
- `nostrnative:allow-publish-calendar-event`
1568
+ `nostrnative:deny-remove-bookmark`
731
1569
 
732
1570
  </td>
733
1571
  <td>
734
1572
 
735
- Enables the publish_calendar_event command without any pre-configured scope.
1573
+ Denies the remove_bookmark command without any pre-configured scope.
736
1574
 
737
1575
  </td>
738
1576
  </tr>
@@ -740,12 +1578,12 @@ Enables the publish_calendar_event command without any pre-configured scope.
740
1578
  <tr>
741
1579
  <td>
742
1580
 
743
- `nostrnative:deny-publish-calendar-event`
1581
+ `nostrnative:allow-remove-note-from-notebook`
744
1582
 
745
1583
  </td>
746
1584
  <td>
747
1585
 
748
- Denies the publish_calendar_event command without any pre-configured scope.
1586
+ Enables the remove_note_from_notebook command without any pre-configured scope.
749
1587
 
750
1588
  </td>
751
1589
  </tr>
@@ -753,12 +1591,12 @@ Denies the publish_calendar_event command without any pre-configured scope.
753
1591
  <tr>
754
1592
  <td>
755
1593
 
756
- `nostrnative:allow-publish-chat-message`
1594
+ `nostrnative:deny-remove-note-from-notebook`
757
1595
 
758
1596
  </td>
759
1597
  <td>
760
1598
 
761
- Enables the publish_chat_message command without any pre-configured scope.
1599
+ Denies the remove_note_from_notebook command without any pre-configured scope.
762
1600
 
763
1601
  </td>
764
1602
  </tr>
@@ -766,12 +1604,12 @@ Enables the publish_chat_message command without any pre-configured scope.
766
1604
  <tr>
767
1605
  <td>
768
1606
 
769
- `nostrnative:deny-publish-chat-message`
1607
+ `nostrnative:allow-save-bookmark`
770
1608
 
771
1609
  </td>
772
1610
  <td>
773
1611
 
774
- Denies the publish_chat_message command without any pre-configured scope.
1612
+ Enables the save_bookmark command without any pre-configured scope.
775
1613
 
776
1614
  </td>
777
1615
  </tr>
@@ -779,12 +1617,12 @@ Denies the publish_chat_message command without any pre-configured scope.
779
1617
  <tr>
780
1618
  <td>
781
1619
 
782
- `nostrnative:allow-publish-rsvp`
1620
+ `nostrnative:deny-save-bookmark`
783
1621
 
784
1622
  </td>
785
1623
  <td>
786
1624
 
787
- Enables the publish_rsvp command without any pre-configured scope.
1625
+ Denies the save_bookmark command without any pre-configured scope.
788
1626
 
789
1627
  </td>
790
1628
  </tr>
@@ -792,12 +1630,12 @@ Enables the publish_rsvp command without any pre-configured scope.
792
1630
  <tr>
793
1631
  <td>
794
1632
 
795
- `nostrnative:deny-publish-rsvp`
1633
+ `nostrnative:allow-send-direct-message`
796
1634
 
797
1635
  </td>
798
1636
  <td>
799
1637
 
800
- Denies the publish_rsvp command without any pre-configured scope.
1638
+ Enables the send_direct_message command without any pre-configured scope.
801
1639
 
802
1640
  </td>
803
1641
  </tr>
@@ -805,12 +1643,12 @@ Denies the publish_rsvp command without any pre-configured scope.
805
1643
  <tr>
806
1644
  <td>
807
1645
 
808
- `nostrnative:allow-remove-bookmark`
1646
+ `nostrnative:deny-send-direct-message`
809
1647
 
810
1648
  </td>
811
1649
  <td>
812
1650
 
813
- Enables the remove_bookmark command without any pre-configured scope.
1651
+ Denies the send_direct_message command without any pre-configured scope.
814
1652
 
815
1653
  </td>
816
1654
  </tr>
@@ -818,12 +1656,12 @@ Enables the remove_bookmark command without any pre-configured scope.
818
1656
  <tr>
819
1657
  <td>
820
1658
 
821
- `nostrnative:deny-remove-bookmark`
1659
+ `nostrnative:allow-start-nostr-relay`
822
1660
 
823
1661
  </td>
824
1662
  <td>
825
1663
 
826
- Denies the remove_bookmark command without any pre-configured scope.
1664
+ Enables the start_nostr_relay command
827
1665
 
828
1666
  </td>
829
1667
  </tr>
@@ -831,12 +1669,12 @@ Denies the remove_bookmark command without any pre-configured scope.
831
1669
  <tr>
832
1670
  <td>
833
1671
 
834
- `nostrnative:allow-save-bookmark`
1672
+ `nostrnative:allow-stop-nostr-relay`
835
1673
 
836
1674
  </td>
837
1675
  <td>
838
1676
 
839
- Enables the save_bookmark command without any pre-configured scope.
1677
+ Enables the stop_nostr_relay command
840
1678
 
841
1679
  </td>
842
1680
  </tr>
@@ -844,12 +1682,12 @@ Enables the save_bookmark command without any pre-configured scope.
844
1682
  <tr>
845
1683
  <td>
846
1684
 
847
- `nostrnative:deny-save-bookmark`
1685
+ `nostrnative:allow-update-contact-list`
848
1686
 
849
1687
  </td>
850
1688
  <td>
851
1689
 
852
- Denies the save_bookmark command without any pre-configured scope.
1690
+ Enables the update_contact_list command without any pre-configured scope.
853
1691
 
854
1692
  </td>
855
1693
  </tr>
@@ -857,12 +1695,12 @@ Denies the save_bookmark command without any pre-configured scope.
857
1695
  <tr>
858
1696
  <td>
859
1697
 
860
- `nostrnative:allow-send-direct-message`
1698
+ `nostrnative:deny-update-contact-list`
861
1699
 
862
1700
  </td>
863
1701
  <td>
864
1702
 
865
- Enables the send_direct_message command without any pre-configured scope.
1703
+ Denies the update_contact_list command without any pre-configured scope.
866
1704
 
867
1705
  </td>
868
1706
  </tr>
@@ -870,12 +1708,12 @@ Enables the send_direct_message command without any pre-configured scope.
870
1708
  <tr>
871
1709
  <td>
872
1710
 
873
- `nostrnative:deny-send-direct-message`
1711
+ `nostrnative:allow-update-nfp-cycle`
874
1712
 
875
1713
  </td>
876
1714
  <td>
877
1715
 
878
- Denies the send_direct_message command without any pre-configured scope.
1716
+ Enables the update_nfp_cycle command.
879
1717
 
880
1718
  </td>
881
1719
  </tr>
@@ -883,12 +1721,12 @@ Denies the send_direct_message command without any pre-configured scope.
883
1721
  <tr>
884
1722
  <td>
885
1723
 
886
- `nostrnative:allow-update-contact-list`
1724
+ `nostrnative:deny-update-nfp-cycle`
887
1725
 
888
1726
  </td>
889
1727
  <td>
890
1728
 
891
- Enables the update_contact_list command without any pre-configured scope.
1729
+ Denies the update_nfp_cycle command.
892
1730
 
893
1731
  </td>
894
1732
  </tr>
@@ -896,12 +1734,77 @@ Enables the update_contact_list command without any pre-configured scope.
896
1734
  <tr>
897
1735
  <td>
898
1736
 
899
- `nostrnative:deny-update-contact-list`
1737
+ `nostrnative:allow-update-nfp-observation`
900
1738
 
901
1739
  </td>
902
1740
  <td>
903
1741
 
904
- Denies the update_contact_list command without any pre-configured scope.
1742
+ Enables the update_nfp_observation command.
1743
+
1744
+ </td>
1745
+ </tr>
1746
+
1747
+ <tr>
1748
+ <td>
1749
+
1750
+ `nostrnative:deny-update-nfp-observation`
1751
+
1752
+ </td>
1753
+ <td>
1754
+
1755
+ Denies the update_nfp_observation command.
1756
+
1757
+ </td>
1758
+ </tr>
1759
+
1760
+ <tr>
1761
+ <td>
1762
+
1763
+ `nostrnative:allow-update-nfp-settings`
1764
+
1765
+ </td>
1766
+ <td>
1767
+
1768
+ Enables the update_nfp_settings command.
1769
+
1770
+ </td>
1771
+ </tr>
1772
+
1773
+ <tr>
1774
+ <td>
1775
+
1776
+ `nostrnative:deny-update-nfp-settings`
1777
+
1778
+ </td>
1779
+ <td>
1780
+
1781
+ Denies the update_nfp_settings command.
1782
+
1783
+ </td>
1784
+ </tr>
1785
+
1786
+ <tr>
1787
+ <td>
1788
+
1789
+ `nostrnative:allow-update-note`
1790
+
1791
+ </td>
1792
+ <td>
1793
+
1794
+ Enables the update_note command without any pre-configured scope.
1795
+
1796
+ </td>
1797
+ </tr>
1798
+
1799
+ <tr>
1800
+ <td>
1801
+
1802
+ `nostrnative:deny-update-note`
1803
+
1804
+ </td>
1805
+ <td>
1806
+
1807
+ Denies the update_note command without any pre-configured scope.
905
1808
 
906
1809
  </td>
907
1810
  </tr>